diff options
author | Jeroen Roovers <jer@gentoo.org> | 2011-12-22 14:35:56 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2011-12-22 14:35:56 +0000 |
commit | 4ba3ebaea6148ba2f9fb0ecf57b81ab7380f8c30 (patch) | |
tree | 8e9f1f6725b56a902fde5ce45ef9dccb95664856 /sys-apps/pv | |
parent | Stable for AMD64, wrt bug #395657 (diff) | |
download | gentoo-2-4ba3ebaea6148ba2f9fb0ecf57b81ab7380f8c30.tar.gz gentoo-2-4ba3ebaea6148ba2f9fb0ecf57b81ab7380f8c30.tar.bz2 gentoo-2-4ba3ebaea6148ba2f9fb0ecf57b81ab7380f8c30.zip |
Simpler and shorter by Mike Frysinger.
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/pv')
-rw-r--r-- | sys-apps/pv/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/pv/pv-1.2.0.ebuild | 17 |
2 files changed, 9 insertions, 13 deletions
diff --git a/sys-apps/pv/ChangeLog b/sys-apps/pv/ChangeLog index 193664cfc120..f1120cbe2b2a 100644 --- a/sys-apps/pv/ChangeLog +++ b/sys-apps/pv/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/pv # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.25 2011/04/02 06:42:59 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.26 2011/12/22 14:35:56 jer Exp $ + + 22 Dec 2011; Jeroen Roovers <jer@gentoo.org> pv-1.2.0.ebuild: + Simpler and shorter by Mike Frysinger. 02 Apr 2011; Christoph Mende <angelos@gentoo.org> -pv-1.1.4.ebuild, -pv-1.1.4-r1.ebuild: diff --git a/sys-apps/pv/pv-1.2.0.ebuild b/sys-apps/pv/pv-1.2.0.ebuild index 932c48aa6289..9b815fa6002f 100644 --- a/sys-apps/pv/pv-1.2.0.ebuild +++ b/sys-apps/pv/pv-1.2.0.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-apps/pv/pv-1.2.0.ebuild,v 1.10 2011/03/24 17:53:04 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/pv-1.2.0.ebuild,v 1.11 2011/12/22 14:35:56 jer Exp $ -EAPI="2" +EAPI="4" inherit toolchain-funcs @@ -15,19 +15,12 @@ SLOT="0" KEYWORDS="alpha amd64 arm hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x86-solaris" IUSE="nls" +DOCS=( README doc/NEWS doc/TODO ) + src_configure() { econf $(use_enable nls) } src_compile() { - emake \ - CC="$(tc-getCC)" \ - LD="$(tc-getLD)" \ - || die -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc README doc/NEWS doc/TODO || die + emake LD="$(tc-getLD)" } |