diff options
author | 2006-10-13 03:51:28 +0000 | |
---|---|---|
committer | 2006-10-13 03:51:28 +0000 | |
commit | ddc0604e38f1ce39c24c3dd6918b185148a646f8 (patch) | |
tree | 994aafec7503b96bac10bf563d7d76062209e996 | |
parent | fix dep typo (diff) | |
download | gentoo-2-ddc0604e38f1ce39c24c3dd6918b185148a646f8.tar.gz gentoo-2-ddc0604e38f1ce39c24c3dd6918b185148a646f8.tar.bz2 gentoo-2-ddc0604e38f1ce39c24c3dd6918b185148a646f8.zip |
Cleanup autotools #151000.
(Portage version: 2.1.2_pre2-r5)
-rw-r--r-- | sys-process/time/ChangeLog | 8 | ||||
-rw-r--r-- | sys-process/time/files/digest-time-1.7-r1 | 2 | ||||
-rw-r--r-- | sys-process/time/files/time-1.7-build.patch | 16 | ||||
-rw-r--r-- | sys-process/time/time-1.7-r1.ebuild | 24 |
4 files changed, 37 insertions, 13 deletions
diff --git a/sys-process/time/ChangeLog b/sys-process/time/ChangeLog index ae58fd683613..253d4c8127b7 100644 --- a/sys-process/time/ChangeLog +++ b/sys-process/time/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-process/time -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/time/ChangeLog,v 1.2 2005/03/03 19:49:34 swegener Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/time/ChangeLog,v 1.3 2006/10/13 03:51:28 vapier Exp $ + + 13 Oct 2006; Mike Frysinger <vapier@gentoo.org> + +files/time-1.7-build.patch, time-1.7-r1.ebuild: + Cleanup autotools #151000. *time-1.7-r1 (03 Mar 2005) diff --git a/sys-process/time/files/digest-time-1.7-r1 b/sys-process/time/files/digest-time-1.7-r1 index 62b151f40451..8674f8b30313 100644 --- a/sys-process/time/files/digest-time-1.7-r1 +++ b/sys-process/time/files/digest-time-1.7-r1 @@ -1 +1,3 @@ MD5 e38d2b8b34b1ca259cf7b053caac32b3 time-1.7.tar.gz 103066 +RMD160 547a9bb4bc0b3a34046be8381e9c142977ffd402 time-1.7.tar.gz 103066 +SHA256 e37ea79a253bf85a85ada2f7c632c14e481a5fd262a362f6f4fd58e68601496d time-1.7.tar.gz 103066 diff --git a/sys-process/time/files/time-1.7-build.patch b/sys-process/time/files/time-1.7-build.patch new file mode 100644 index 000000000000..82d6ae1c7584 --- /dev/null +++ b/sys-process/time/files/time-1.7-build.patch @@ -0,0 +1,16 @@ +--- configure.in ++++ configure.in +@@ -1,11 +1,6 @@ + dnl Process this file with autoconf to produce a configure script. +-AC_INIT(time.c) +-VERSION=1.7 +-AC_SUBST(VERSION) +-PACKAGE=time +-AC_SUBST(PACKAGE) +- +-AC_ARG_PROGRAM ++AC_INIT(time, 1.7) ++AM_INIT_AUTOMAKE + + dnl Checks for programs. + AC_PROG_CC diff --git a/sys-process/time/time-1.7-r1.ebuild b/sys-process/time/time-1.7-r1.ebuild index e03e7327425c..4795756ba652 100644 --- a/sys-process/time/time-1.7-r1.ebuild +++ b/sys-process/time/time-1.7-r1.ebuild @@ -1,29 +1,31 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 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.2 2005/12/16 03:31:08 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/time/time-1.7-r1.ebuild,v 1.3 2006/10/13 03:51:28 vapier Exp $ -inherit eutils +WANT_AUTOMAKE="latest" +WANT_AUTOCONF="latest" +inherit eutils autotools DESCRIPTION="displays info about resources used by a program" HOMEPAGE="http://www.gnu.org/directory/time.html" -SRC_URI="ftp://ftp.gnu.org/pub/gnu/time/${P}.tar.gz" +SRC_URI="mirror//gnu/time/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86" +KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" IUSE="" -RDEPEND="virtual/libc" +RDEPEND="" src_unpack() { unpack ${A} - cd ${S} - WANT_AUTOMAKE=1.4 automake -a || die "automake" - autoconf || die "autoconf" - epatch ${FILESDIR}/${PV}-info-dir-entry.patch + cd "${S}" + epatch "${FILESDIR}"/${P}-build.patch + epatch "${FILESDIR}"/${PV}-info-dir-entry.patch + eautoreconf } src_install() { - make install DESTDIR=${D} || die + emake install DESTDIR="${D}" || die dodoc ChangeLog README AUTHORS NEWS } |