mgorny 14/11/22 21:45:14 Modified: ChangeLog Added: libgusb-0.1.6-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.42 dev-libs/libgusb/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/ChangeLog?rev=1.42&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/ChangeLog?rev=1.42&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/ChangeLog?r1=1.41&r2=1.42 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libgusb/ChangeLog,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- ChangeLog 24 Jul 2014 17:36:06 -0000 1.41 +++ ChangeLog 22 Nov 2014 21:45:14 -0000 1.42 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libgusb # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgusb/ChangeLog,v 1.41 2014/07/24 17:36:06 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgusb/ChangeLog,v 1.42 2014/11/22 21:45:14 mgorny Exp $ + +*libgusb-0.1.6-r1 (22 Nov 2014) + + 22 Nov 2014; Michał Górny <[email protected]> +libgusb-0.1.6-r1.ebuild: + Introduce multilib support as needed for x11-libs/gtk+:3. 24 Jul 2014; Samuli Suominen <[email protected]> libgusb-0.1.6.ebuild: Use virtual/libgudev with := for automatic rebuild instead of virtual/udev. 1.1 dev-libs/libgusb/libgusb-0.1.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/libgusb-0.1.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/libgusb-0.1.6-r1.ebuild?rev=1.1&content-type=text/plain Index: libgusb-0.1.6-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libgusb/libgusb-0.1.6-r1.ebuild,v 1.1 2014/11/22 21:45:14 mgorny Exp $ EAPI=5 VALA_MIN_API_VERSION="0.16" VALA_USE_DEPEND="vapigen" inherit eutils multilib-minimal vala DESCRIPTION="GObject wrapper for libusb" HOMEPAGE="https://gitorious.org/gusb/" SRC_URI="http://people.freedesktop.org/~hughsient/releases/${P}.tar.xz" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="+introspection static-libs vala" REQUIRED_USE="vala? ( introspection )" # udev is effectively a required dependency: configuring with --disable-gudev # causes build failures RDEPEND=">=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}] virtual/libusb:1[${MULTILIB_USEDEP}] virtual/libgudev:=[${MULTILIB_USEDEP}] introspection? ( >=dev-libs/gobject-introspection-1.29 )" DEPEND="${RDEPEND} app-arch/xz-utils dev-libs/libxslt dev-util/gtk-doc-am virtual/pkgconfig[${MULTILIB_USEDEP}] vala? ( $(vala_depend) )" # gtk-doc-am needed for proper api docs installation # Tests try to access usb devices in /dev RESTRICT="test" multilib_src_configure() { ECONF_SOURCE=${S} \ econf \ $(multilib_native_use_enable introspection) \ $(use_enable static-libs static) \ $(multilib_native_use_enable vala) if multilib_is_native_abi; then ln -s "${S}"/docs/api/html docs/api/html || die fi } multilib_src_install_all() { einstalldocs prune_libtool_files }
