diff options
-rw-r--r-- | sys-process/time/ChangeLog | 7 | ||||
-rw-r--r-- | sys-process/time/time-1.7-r1.ebuild | 19 |
2 files changed, 10 insertions, 16 deletions
diff --git a/sys-process/time/ChangeLog b/sys-process/time/ChangeLog index c10c7feb8a57..b5711d5dadfd 100644 --- a/sys-process/time/ChangeLog +++ b/sys-process/time/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-process/time -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/time/ChangeLog,v 1.6 2010/10/17 03:53:01 leio Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/time/ChangeLog,v 1.7 2012/06/03 23:28:04 vapier Exp $ + + 03 Jun 2012; Mike Frysinger <vapier@gentoo.org> time-1.7-r1.ebuild: + Update to EAPI=4. 17 Oct 2010; Mart Raudsepp <leio@gentoo.org> time-1.7-r1.ebuild: Drop to ~mips diff --git a/sys-process/time/time-1.7-r1.ebuild b/sys-process/time/time-1.7-r1.ebuild index d63ab20adb47..b0bfb1a1cc4d 100644 --- a/sys-process/time/time-1.7-r1.ebuild +++ b/sys-process/time/time-1.7-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/time/time-1.7-r1.ebuild,v 1.6 2010/10/17 03:53:01 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/time/time-1.7-r1.ebuild,v 1.7 2012/06/03 23:28:04 vapier Exp $ + +EAPI="4" -WANT_AUTOMAKE="latest" -WANT_AUTOCONF="latest" inherit eutils autotools DESCRIPTION="displays info about resources used by a program" @@ -15,17 +15,8 @@ SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~ia64-linux ~x86-linux" IUSE="" -RDEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { epatch "${FILESDIR}"/${P}-build.patch epatch "${FILESDIR}"/${PV}-info-dir-entry.patch eautoreconf } - -src_install() { - emake install DESTDIR="${D}" || die - dodoc ChangeLog README AUTHORS NEWS -} |