diff options
author | Matt Turner <mattst88@gentoo.org> | 2011-08-16 02:51:38 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2011-08-16 02:51:38 +0000 |
commit | 45d73726f2ebc41879a01bd126ce58099d94c5bf (patch) | |
tree | 149984270b87b422e5af0f126d9d7dac9f6da980 /sys-power/cpufrequtils/cpufrequtils-008-r1.ebuild | |
parent | Correct metadata.xml about which USE flags are related to Gallium3D. (diff) | |
download | gentoo-2-45d73726f2ebc41879a01bd126ce58099d94c5bf.tar.gz gentoo-2-45d73726f2ebc41879a01bd126ce58099d94c5bf.tar.bz2 gentoo-2-45d73726f2ebc41879a01bd126ce58099d94c5bf.zip |
Add dependency on libintl, bug 379313. Bump to EAPI=4.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'sys-power/cpufrequtils/cpufrequtils-008-r1.ebuild')
-rw-r--r-- | sys-power/cpufrequtils/cpufrequtils-008-r1.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sys-power/cpufrequtils/cpufrequtils-008-r1.ebuild b/sys-power/cpufrequtils/cpufrequtils-008-r1.ebuild index 0f1399e86565..258b6fc643a6 100644 --- a/sys-power/cpufrequtils/cpufrequtils-008-r1.ebuild +++ b/sys-power/cpufrequtils/cpufrequtils-008-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufrequtils/cpufrequtils-008-r1.ebuild,v 1.9 2011/08/07 17:52:56 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufrequtils/cpufrequtils-008-r1.ebuild,v 1.10 2011/08/16 02:51:38 mattst88 Exp $ -EAPI="3" +EAPI=4 inherit eutils toolchain-funcs multilib @@ -15,7 +15,7 @@ SLOT="0" KEYWORDS="amd64 arm ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" IUSE="debug nls" -DEPEND="" +DEPEND="nls? ( virtual/libintl )" RDEPEND="" ft() { use $1 && echo true || echo false ; } @@ -46,16 +46,15 @@ src_compile() { STRIP=: \ RANLIB="$(tc-getRANLIB)" \ LIBTOOL="${EPREFIX}"/usr/bin/libtool \ - INSTALL="${EPREFIX}"/usr/bin/install \ - || die + INSTALL="${EPREFIX}"/usr/bin/install } src_install() { # There's no configure script, so in this case we have to use emake # DESTDIR="${ED}" instead of the usual econf --prefix="${EPREFIX}". - emake DESTDIR="${ED}" install || die + emake DESTDIR="${ED}" install dodoc AUTHORS README - newinitd "${FILESDIR}"/${PN}-init.d-006 ${PN} || die + newinitd "${FILESDIR}"/${PN}-init.d-006 ${PN} newconfd "${FILESDIR}"/${PN}-conf.d-006 ${PN} } |