diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2012-08-20 03:25:24 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2012-08-20 03:25:24 +0000 |
commit | 4ef4c39888eddcfa9fee587cac4eced109e2d496 (patch) | |
tree | 9fae99b215f03bc9f48bfb165e826f30bf43a671 /dev-libs/dietlibc | |
parent | Respect user cflags (bug #432016); install in the same locations as other plu... (diff) | |
download | gentoo-2-4ef4c39888eddcfa9fee587cac4eced109e2d496.tar.gz gentoo-2-4ef4c39888eddcfa9fee587cac4eced109e2d496.tar.bz2 gentoo-2-4ef4c39888eddcfa9fee587cac4eced109e2d496.zip |
added prefix keywords
(Portage version: 2.2.0_alpha121/cvs/Linux i686)
Diffstat (limited to 'dev-libs/dietlibc')
-rw-r--r-- | dev-libs/dietlibc/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild | 18 |
2 files changed, 14 insertions, 10 deletions
diff --git a/dev-libs/dietlibc/ChangeLog b/dev-libs/dietlibc/ChangeLog index 0e9b9fb6f5a6..e3e2fbf34c5f 100644 --- a/dev-libs/dietlibc/ChangeLog +++ b/dev-libs/dietlibc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/dietlibc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/ChangeLog,v 1.89 2012/01/29 13:00:13 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/ChangeLog,v 1.90 2012/08/20 03:25:24 ottxor Exp $ + + 20 Aug 2012; Christoph Junghans <ottxor@gentoo.org> + dietlibc-0.33_pre20110403.ebuild: + added prefix keywords 29 Jan 2012; Benedikt Böhm <hollow@gentoo.org> -files/0.24-dirent-prototype.patch, -files/dietlibc-0.26-ssp.patch, diff --git a/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild b/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild index a33b13e8fb0b..4c85e15bb83b 100644 --- a/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild +++ b/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild,v 1.5 2011/11/20 09:20:49 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild,v 1.6 2012/08/20 03:25:24 ottxor Exp $ EAPI="3" @@ -16,7 +16,7 @@ SRC_URI="http://nodeload.github.com/${GITHUB_AUTHOR}/${GITHUB_PROJECT}/tarball/v LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm -hppa ~mips ~sparc x86" +KEYWORDS="~alpha amd64 ~arm -hppa ~mips ~sparc x86 ~amd64-linux ~x86-linux" IUSE="debug" DEPEND="" @@ -46,7 +46,7 @@ pkg_setup() { } src_compile() { - emake prefix=${DIETHOME} \ + emake prefix="${EPREFIX}"${DIETHOME} \ CC="$(tc-getCC)" \ CFLAGS="${CFLAGS}" \ STRIP=":" \ @@ -54,15 +54,15 @@ src_compile() { } src_install() { - emake prefix=${DIETHOME} \ - DESTDIR="${D}" \ + emake prefix="${EPREFIX}"${DIETHOME} \ + DESTDIR="${ED}" \ install-bin \ install-headers \ || die "make install failed" - dobin "${D}"${DIETHOME}/bin/* || die "dobin failed" - doman "${D}"${DIETHOME}/man/*/* || die "doman failed" - rm -r "${D}"${DIETHOME}/{man,bin} + dobin "${ED}"${DIETHOME}/bin/* || die "dobin failed" + doman "${ED}"${DIETHOME}/man/*/* || die "doman failed" + rm -r "${ED}"${DIETHOME}/{man,bin} dodoc AUTHOR BUGS CAVEAT CHANGES README THANKS TODO PORTING } |