diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-08-21 02:04:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-08-21 02:04:32 +0000 |
commit | 5efc6163860e0b10c2b541bf37b1bc5b962625a3 (patch) | |
tree | e6e55118008bcc2ed1777c393451bd2fe4216430 /sys-apps/file | |
parent | cut pointless use of USE=build/bootstrap (diff) | |
download | historical-5efc6163860e0b10c2b541bf37b1bc5b962625a3.tar.gz historical-5efc6163860e0b10c2b541bf37b1bc5b962625a3.tar.bz2 historical-5efc6163860e0b10c2b541bf37b1bc5b962625a3.zip |
cut USE=build
Package-Manager: portage-2.1.1_pre5-r2
Diffstat (limited to 'sys-apps/file')
-rw-r--r-- | sys-apps/file/file-4.17-r1.ebuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sys-apps/file/file-4.17-r1.ebuild b/sys-apps/file/file-4.17-r1.ebuild index 2e5c98bd5404..dd7e9d3e38a9 100644 --- a/sys-apps/file/file-4.17-r1.ebuild +++ b/sys-apps/file/file-4.17-r1.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/sys-apps/file/file-4.17-r1.ebuild,v 1.14 2006/07/30 23:23:57 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-4.17-r1.ebuild,v 1.15 2006/08/21 02:04:32 vapier Exp $ inherit eutils distutils libtool @@ -12,7 +12,7 @@ SRC_URI="ftp://ftp.gw.com/mirrors/pub/unix/file/${P}.tar.gz LICENSE="as-is" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="python build" +IUSE="python" DEPEND="" @@ -40,17 +40,14 @@ src_compile() { econf --datadir=/usr/share/misc || die emake || die "emake failed" - use build && return 0 use python && cd python && distutils_src_compile } src_install() { make DESTDIR="${D}" install || die "make install failed" + dodoc ChangeLog MAINT README - if ! use build ; then - dodoc ChangeLog MAINT README - use python && cd python && distutils_src_install - fi + use python && cd python && distutils_src_install } pkg_postinst() { |