mgorny 15/05/07 19:31:07 Modified: ChangeLog Added: libappindicator-12.10.0-r2.ebuild Log: Add multilib support. Disable Python checks completely, avoiding implicit build-time dep. Restore proper gtk-doc install location. Based on patch by Karol Herbst. Part of https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/65. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.15 dev-libs/libappindicator/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libappindicator/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 5 Apr 2015 16:09:44 -0000 1.14 +++ ChangeLog 7 May 2015 19:31:07 -0000 1.15 @@ -1,6 +1,16 @@ # ChangeLog for dev-libs/libappindicator # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libappindicator/ChangeLog,v 1.14 2015/04/05 16:09:44 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libappindicator/ChangeLog,v 1.15 2015/05/07 19:31:07 mgorny Exp $ + +*libappindicator-12.10.0-r2 (07 May 2015) + + 07 May 2015; Michał Górny <[email protected]> + +files/libappindicator-12.10.0-disable-python.patch, + +libappindicator-12.10.0-r2.ebuild: + Add multilib support. Disable Python checks completely, avoiding implicit + build-time dep. Restore proper gtk-doc install location. Based on patch by + Karol Herbst. Part of https://github.com/gentoo/gentoo-portage-rsync- + mirror/pull/65. *libappindicator-12.10.0-r1 (05 Apr 2015) 1.1 dev-libs/libappindicator/libappindicator-12.10.0-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r2.ebuild?rev=1.1&content-type=text/plain Index: libappindicator-12.10.0-r2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0-r2.ebuild,v 1.1 2015/05/07 19:31:07 mgorny Exp $ EAPI=5 VALA_MIN_API_VERSION="0.16" VALA_USE_DEPEND="vapigen" inherit autotools eutils multilib-minimal vala DESCRIPTION="A library to allow applications to export a menu into the Unity Menu bar" HOMEPAGE="http://launchpad.net/libappindicator" SRC_URI="http://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz" LICENSE="LGPL-2.1 LGPL-3" SLOT="3" KEYWORDS="~amd64 ~x86" IUSE="+introspection" RDEPEND=" >=dev-libs/dbus-glib-0.98[${MULTILIB_USEDEP}] >=dev-libs/glib-2.26:2[${MULTILIB_USEDEP}] >=dev-libs/libdbusmenu-0.6.2[gtk3,${MULTILIB_USEDEP}] >=dev-libs/libindicator-12.10.0:3[${MULTILIB_USEDEP}] >=x11-libs/gtk+-3.2:3[${MULTILIB_USEDEP}] introspection? ( >=dev-libs/gobject-introspection-1 ) " DEPEND="${RDEPEND} virtual/pkgconfig[${MULTILIB_USEDEP}] introspection? ( $(vala_depend) ) " src_prepare() { # Don't use -Werror sed -i -e 's/ -Werror//' {src,tests}/Makefile.{am,in} || die epatch "${FILESDIR}"/${P}-disable-python.patch eautoreconf # Disable MONO for now because of http://bugs.gentoo.org/382491 sed -i -e '/^MONO_REQUIRED_VERSION/s:=.*:=9999:' configure || die } multilib_src_configure() { if multilib_is_native_abi; then local -x VALAC VAPIGEN_VAPIDIR PKG_CONFIG_PATH use introspection && vala_src_prepare fi ECONF_SOURCE=${S} \ econf \ --disable-silent-rules \ --disable-static \ --with-gtk=3 } multilib_src_install() { emake -j1 DESTDIR="${D}" install } multilib_src_install_all() { dodoc AUTHORS ChangeLog prune_libtool_files }
