diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-13 22:25:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-13 22:25:15 +0000 |
commit | fa126ab626d25a8ef53593eb7fa5648934c3a6c8 (patch) | |
tree | 1a9e49905de5ec4ce3aa5ed265eee585ce280b42 /app-arch/par2cmdline/par2cmdline-0.4-r1.ebuild | |
parent | punt flat profiles, use the obsolete tree to upgrade (diff) | |
download | gentoo-2-fa126ab626d25a8ef53593eb7fa5648934c3a6c8.tar.gz gentoo-2-fa126ab626d25a8ef53593eb7fa5648934c3a6c8.tar.bz2 gentoo-2-fa126ab626d25a8ef53593eb7fa5648934c3a6c8.zip |
Fix wildcard expansion of non-regular files by Bardur Arantsson #51817. Also fix building with gcc4 by Dirk-Jan Heijs #102391.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-arch/par2cmdline/par2cmdline-0.4-r1.ebuild')
-rw-r--r-- | app-arch/par2cmdline/par2cmdline-0.4-r1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-arch/par2cmdline/par2cmdline-0.4-r1.ebuild b/app-arch/par2cmdline/par2cmdline-0.4-r1.ebuild new file mode 100644 index 000000000000..e3472e7eb0a2 --- /dev/null +++ b/app-arch/par2cmdline/par2cmdline-0.4-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/par2cmdline/par2cmdline-0.4-r1.ebuild,v 1.1 2005/08/13 22:25:15 vapier Exp $ + +inherit eutils + +DESCRIPTION="A PAR-2.0 file verification and repair tool" +HOMEPAGE="http://parchive.sourceforge.net/" +SRC_URI="mirror://sourceforge/parchive/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc-macos ~x86" +IUSE="" + +DEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-wildcard-fix.patch + epatch "${FILESDIR}"/${P}-gcc4.patch +} + +src_install() { + make install DESTDIR="${D}" || die + local DOCLIST="AUTHORS INSTALL ChangeLog NEWS PORTING README ROADMAP" + chmod -x ${DOCLIST} + dodoc ${DOCLIST} +} |