diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2012-08-20 03:12:20 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2012-08-20 03:12:20 +0000 |
commit | 641d59db43cc32a13aa8b94e1355aac6c203d4fa (patch) | |
tree | ab4b0d2b6749add72f2d47d9f93668eff4e87d8e /dev-libs | |
parent | added prefix keywords (diff) | |
download | gentoo-2-641d59db43cc32a13aa8b94e1355aac6c203d4fa.tar.gz gentoo-2-641d59db43cc32a13aa8b94e1355aac6c203d4fa.tar.bz2 gentoo-2-641d59db43cc32a13aa8b94e1355aac6c203d4fa.zip |
added prefix keywords
(Portage version: 2.2.0_alpha121/cvs/Linux i686)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/check/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/check/check-0.9.8-r1.ebuild | 10 |
2 files changed, 9 insertions, 8 deletions
diff --git a/dev-libs/check/ChangeLog b/dev-libs/check/ChangeLog index aee2e8c679be..f56986279290 100644 --- a/dev-libs/check/ChangeLog +++ b/dev-libs/check/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/check # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.79 2012/06/10 03:26:38 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.80 2012/08/20 03:12:20 ottxor Exp $ + + 20 Aug 2012; Christoph Junghans <ottxor@gentoo.org> check-0.9.8-r1.ebuild: + added prefix keywords 10 Jun 2012; Nathan Phillip Brink <binki@gentoo.org> check-0.9.8-r1.ebuild: Fix compilation with automake-1.12 broken by automake's -Werror switch (bug @@ -262,5 +265,3 @@ 27 Nov 2002; Zach Welch <zwelch@gentoo.org> : User submitted ebuild in bug 11108 by faune@broadpark.no - - diff --git a/dev-libs/check/check-0.9.8-r1.ebuild b/dev-libs/check/check-0.9.8-r1.ebuild index 078f3ea0e46d..3f528a21ff28 100644 --- a/dev-libs/check/check-0.9.8-r1.ebuild +++ b/dev-libs/check/check-0.9.8-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.8-r1.ebuild,v 1.11 2012/06/10 03:26:38 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.8-r1.ebuild,v 1.12 2012/08/20 03:12:20 ottxor Exp $ EAPI=4 inherit autotools autotools-utils eutils @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="static-libs subunit" DEPEND="subunit? ( dev-python/subunit )" @@ -38,7 +38,7 @@ src_configure() { local myeconfargs=( --disable-dependency-tracking $(use_enable subunit) - --docdir=/usr/share/doc/${PF} + --docdir="${EPREFIX}"/usr/share/doc/${PF} ) autotools-utils_src_configure } @@ -47,6 +47,6 @@ src_install() { autotools-utils_src_install dodoc AUTHORS *ChangeLog* NEWS README THANKS TODO - rm -f "${D}"/usr/share/doc/${PF}/COPYING* || die - find "${D}" -name '*.la' -exec rm -f {} + || die + rm -f "${ED}"/usr/share/doc/${PF}/COPYING* || die + find "${ED}" -name '*.la' -exec rm -f {} + || die } |