diff options
author | 2010-04-26 02:25:17 +0000 | |
---|---|---|
committer | 2010-04-26 02:25:17 +0000 | |
commit | 1ae1f42dd9530723ff0a7dbe3a6c7ef880779497 (patch) | |
tree | cb9a4b9853f01a10dcfa79578015d63a147d95be /app-admin/chrpath | |
parent | Version bump. (diff) | |
download | gentoo-2-1ae1f42dd9530723ff0a7dbe3a6c7ef880779497.tar.gz gentoo-2-1ae1f42dd9530723ff0a7dbe3a6c7ef880779497.tar.bz2 gentoo-2-1ae1f42dd9530723ff0a7dbe3a6c7ef880779497.zip |
Clean up installed paths.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/chrpath')
-rw-r--r-- | app-admin/chrpath/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/chrpath/chrpath-0.13-r1.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/app-admin/chrpath/ChangeLog b/app-admin/chrpath/ChangeLog index eac844f4745b..7d696d38ed99 100644 --- a/app-admin/chrpath/ChangeLog +++ b/app-admin/chrpath/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/chrpath # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.13 2010/04/15 17:08:25 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.14 2010/04/26 02:25:17 vapier Exp $ + + 26 Apr 2010; Mike Frysinger <vapier@gentoo.org> chrpath-0.13-r1.ebuild: + Clean up installed paths. 15 Apr 2010; Markos Chandras <hwoarang@gentoo.org> chrpath-0.13-r1.ebuild, +files/chrpath-0.13-testsuite-1.patch: diff --git a/app-admin/chrpath/chrpath-0.13-r1.ebuild b/app-admin/chrpath/chrpath-0.13-r1.ebuild index c3898ca100c6..8d46b061a860 100644 --- a/app-admin/chrpath/chrpath-0.13-r1.ebuild +++ b/app-admin/chrpath/chrpath-0.13-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r1.ebuild,v 1.2 2010/04/15 17:08:25 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r1.ebuild,v 1.3 2010/04/26 02:25:17 vapier Exp $ EAPI="2" @@ -13,18 +13,18 @@ SRC_URI="http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux -~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" src_prepare() { epatch "${FILESDIR}"/${PN}-multilib.patch epatch "${FILESDIR}"/${PN}-keepgoing.patch epatch "${FILESDIR}"/${P}-testsuite-1.patch + sed -i -e '/^docdir/d' Makefile.am # use standard docdir eautoreconf } src_install() { - einstall - dodoc ChangeLog AUTHORS NEWS README || die "dodoc failed" + emake install DESTDIR="${D}" || die + dodoc ChangeLog AUTHORS NEWS README } |