diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2008-06-22 18:24:42 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2008-06-22 18:24:42 +0000 |
commit | 98e8b9a8914b46707ff3b16e964636cae2cf1eb8 (patch) | |
tree | b0a9ba767e073e3ff446124e218ce4b4f226284a /app-arch/tardy/tardy-1.16.ebuild | |
parent | Removing mask on kde-base/ksync since it got removed. (diff) | |
download | historical-98e8b9a8914b46707ff3b16e964636cae2cf1eb8.tar.gz historical-98e8b9a8914b46707ff3b16e964636cae2cf1eb8.tar.bz2 historical-98e8b9a8914b46707ff3b16e964636cae2cf1eb8.zip |
Add gcc-4.3 patch for bug 226861. Thanks to Evil Compile Person <bugs at dev.gentooexperimental.org> and Jeremy Olexa <darkside at
gentoo dot org>. 1.16 version bump. Adding myself as a maintainer in metadata.
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'app-arch/tardy/tardy-1.16.ebuild')
-rw-r--r-- | app-arch/tardy/tardy-1.16.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-arch/tardy/tardy-1.16.ebuild b/app-arch/tardy/tardy-1.16.ebuild new file mode 100644 index 000000000000..8d6a3de61ae4 --- /dev/null +++ b/app-arch/tardy/tardy-1.16.ebuild @@ -0,0 +1,30 @@ +# 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.16.ebuild,v 1.1 2008/06/22 18:24:41 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 + epatch "${FILESDIR}"/${PN}-1.16-gcc43.patch +} + +src_test() { + make sure || die "test failed" +} + +src_install() { + make RPM_BUILD_ROOT="${D}" install || die "make install failed" + dodoc README +} |