mgorny 14/11/22 20:46:13 Modified: ChangeLog Added: rest-0.7.92-r1.ebuild Log: Introduce multilib support as needed for x11-libs/gtk+:3. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.28 net-libs/rest/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rest/ChangeLog?rev=1.28&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rest/ChangeLog?rev=1.28&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rest/ChangeLog?r1=1.27&r2=1.28 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-libs/rest/ChangeLog,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- ChangeLog 4 Sep 2014 15:21:14 -0000 1.27 +++ ChangeLog 22 Nov 2014 20:46:13 -0000 1.28 @@ -1,6 +1,11 @@ # ChangeLog for net-libs/rest # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rest/ChangeLog,v 1.27 2014/09/04 15:21:14 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/rest/ChangeLog,v 1.28 2014/11/22 20:46:13 mgorny Exp $ + +*rest-0.7.92-r1 (22 Nov 2014) + + 22 Nov 2014; Michał Górny <[email protected]> +rest-0.7.92-r1.ebuild: + Introduce multilib support as needed for x11-libs/gtk+:3. *rest-0.7.92 (04 Sep 2014) 1.1 net-libs/rest/rest-0.7.92-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rest/rest-0.7.92-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rest/rest-0.7.92-r1.ebuild?rev=1.1&content-type=text/plain Index: rest-0.7.92-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-libs/rest/rest-0.7.92-r1.ebuild,v 1.1 2014/11/22 20:46:13 mgorny Exp $ EAPI="5" GCONF_DEBUG="no" GNOME2_LA_PUNT="yes" inherit gnome2 multilib-minimal virtualx DESCRIPTION="Helper library for RESTful services" HOMEPAGE="https://wiki.gnome.org/Projects/Librest" LICENSE="LGPL-2.1" SLOT="0.7" IUSE="+gnome +introspection test" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" # Coverage testing should not be enabled RDEPEND=" app-misc/ca-certificates >=dev-libs/glib-2.24:2[${MULTILIB_USEDEP}] dev-libs/libxml2:2[${MULTILIB_USEDEP}] net-libs/libsoup:2.4[${MULTILIB_USEDEP}] gnome? ( >=net-libs/libsoup-gnome-2.25.1:2.4[${MULTILIB_USEDEP}] ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) " DEPEND="${RDEPEND} >=dev-util/gtk-doc-am-1.13 >=dev-util/intltool-0.40 virtual/pkgconfig[${MULTILIB_USEDEP}] test? ( sys-apps/dbus[${MULTILIB_USEDEP}] ) " multilib_src_configure() { ECONF_SOURCE=${S} \ gnome2_src_configure \ --disable-static \ --disable-gcov \ --with-ca-certificates="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt \ $(use_with gnome) \ $(multilib_native_use_enable introspection) if multilib_is_native_abi; then ln -s "${S}"/docs/reference/rest/html docs/reference/rest/html || die fi } multilib_src_test() { # Tests need dbus Xemake check } multilib_src_compile() { gnome2_src_compile; } multilib_src_install() { gnome2_src_install; }
