diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-04 23:43:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-04 23:43:45 +0000 |
commit | 3161023689965cf391a99e4b53549300c5f98720 (patch) | |
tree | 7819289d28f6d16da3e0c38424ddced87f122d81 /sys-apps | |
parent | Version bump (diff) | |
download | gentoo-2-3161023689965cf391a99e4b53549300c5f98720.tar.gz gentoo-2-3161023689965cf391a99e4b53549300c5f98720.tar.bz2 gentoo-2-3161023689965cf391a99e4b53549300c5f98720.zip |
drop DESTDIR hack and use DIST_ROOT and make sure all docs are compressed
(Portage version: 2.0.51.21)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/attr/attr-2.4.19.ebuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys-apps/attr/attr-2.4.19.ebuild b/sys-apps/attr/attr-2.4.19.ebuild index ee4713e8605b..850b2d4c6d91 100644 --- a/sys-apps/attr/attr-2.4.19.ebuild +++ b/sys-apps/attr/attr-2.4.19.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.19.ebuild,v 1.13 2005/02/07 04:02:10 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.19.ebuild,v 1.14 2005/05/04 23:43:45 vapier Exp $ inherit eutils @@ -15,11 +15,9 @@ KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86" IUSE="nls debug" DEPEND=">=sys-apps/portage-2.0.47-r10 - >=sys-apps/sed-4.0.5 - virtual/libc nls? ( sys-devel/gettext ) sys-devel/libtool" -RDEPEND="virtual/libc" +RDEPEND="" src_unpack() { unpack ${A} @@ -27,7 +25,6 @@ src_unpack() { sed -i \ -e "/^PKG_DOC_DIR/s:=.*:= /usr/share/doc/${PF}:" \ - -e '/^PKG_[[:upper:]]*_DIR/s:= := $(DESTDIR):' \ include/builddefs.in \ || die "failed to update builddefs" @@ -59,5 +56,6 @@ src_compile() { } src_install() { - make DESTDIR=${D} install install-lib install-dev || die + make DIST_ROOT="${D}" install install-lib install-dev || die + prepalldocs } |