diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-09-23 14:43:12 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-09-23 14:43:12 +0000 |
commit | 7f137ed0e0061a105d266ccc181980ef477618d9 (patch) | |
tree | 098c23eeee9cc675994d3dde3a1e9cccd1f480ca /dev-libs | |
parent | Stable on ppc64 (diff) | |
download | gentoo-2-7f137ed0e0061a105d266ccc181980ef477618d9.tar.gz gentoo-2-7f137ed0e0061a105d266ccc181980ef477618d9.tar.bz2 gentoo-2-7f137ed0e0061a105d266ccc181980ef477618d9.zip |
am/s390/sh stable
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libusb/libusb-0.1.12.ebuild | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/dev-libs/libusb/libusb-0.1.12.ebuild b/dev-libs/libusb/libusb-0.1.12.ebuild index 7c956ac82fc4..e1609187688e 100644 --- a/dev-libs/libusb/libusb-0.1.12.ebuild +++ b/dev-libs/libusb/libusb-0.1.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-0.1.12.ebuild,v 1.2 2006/09/02 11:08:30 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-0.1.12.ebuild,v 1.3 2006/09/23 14:43:12 vapier Exp $ inherit eutils libtool autotools @@ -10,11 +10,11 @@ SRC_URI="mirror://sourceforge/libusb/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 m68k ~mips ~ppc ~ppc-macos ~ppc64 s390 sh ~sparc ~x86 ~x86-fbsd" IUSE="debug doc" +RESTRICT="test" RDEPEND="" - DEPEND="doc? ( app-text/openjade app-text/docbook-dsssl-stylesheets app-text/docbook-sgml-utils @@ -22,13 +22,12 @@ DEPEND="doc? ( app-text/openjade src_unpack() { unpack ${A} - cd ${S} + cd "${S}" sed -i -e 's:-Werror::' Makefile.am - - epatch "${FILESDIR}/${PV}-fbsd.patch" - + epatch "${FILESDIR}"/${PV}-fbsd.patch + WANT_AUTOMAKE="1.9" \ + WANT_AUTOCONF="2.5" \ eautoreconf - elibtoolize } @@ -41,13 +40,9 @@ src_compile() { } src_install() { - make DESTDIR=${D} install || die "make install failed" + emake DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS NEWS README || die "dodoc failed" - if use doc; then + if use doc ; then dohtml doc/html/*.html || die "dohtml failed" fi } - -src_test() { - return -} |