diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2008-06-28 18:00:50 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2008-06-28 18:00:50 +0000 |
commit | ea787180c6b0b2ae6168e712ccb6f66635a47af6 (patch) | |
tree | 55341b5b28a7f001e719520600669b7ac0eda729 /app-arch/tardy | |
parent | Force newer glibc #229357. (diff) | |
download | gentoo-2-ea787180c6b0b2ae6168e712ccb6f66635a47af6.tar.gz gentoo-2-ea787180c6b0b2ae6168e712ccb6f66635a47af6.tar.bz2 gentoo-2-ea787180c6b0b2ae6168e712ccb6f66635a47af6.zip |
1.17 version bump.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-arch/tardy')
-rw-r--r-- | app-arch/tardy/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/tardy/tardy-1.17.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/app-arch/tardy/ChangeLog b/app-arch/tardy/ChangeLog index 0e66e0137646..4f9643b959f6 100644 --- a/app-arch/tardy/ChangeLog +++ b/app-arch/tardy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/tardy # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/ChangeLog,v 1.8 2008/06/22 18:24:41 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/ChangeLog,v 1.9 2008/06/28 18:00:50 vanquirius Exp $ + +*tardy-1.17 (28 Jun 2008) + + 28 Jun 2008; Marcelo Goes <vanquirius@gentoo.org> +tardy-1.17.ebuild: + 1.17 version bump. *tardy-1.16 (22 Jun 2008) diff --git a/app-arch/tardy/tardy-1.17.ebuild b/app-arch/tardy/tardy-1.17.ebuild new file mode 100644 index 000000000000..c88bc53e466e --- /dev/null +++ b/app-arch/tardy/tardy-1.17.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/tardy-1.17.ebuild,v 1.1 2008/06/28 18:00:50 vanquirius Exp $ + +inherit eutils + +DESCRIPTION="A tar post-processor" +HOMEPAGE="http://tardy.sourceforge.net/" +SRC_URI="mirror://sourceforge/tardy/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i '/^CFLAGS/d' Makefile.in +} + +src_test() { + make sure || die "test failed" +} + +src_install() { + make RPM_BUILD_ROOT="${D}" install || die "make install failed" + dodoc README +} |