diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-11-16 07:06:29 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-11-16 07:06:29 +0000 |
commit | 5b0a71f27e78521a75909166fd6d958cbb58d050 (patch) | |
tree | 1b7bbcaa7a17ac8a6490ab41be07b19cc395c32c /app-arch/pure-sfv/pure-sfv-0.3.ebuild | |
parent | removed elf until -r17 of portage comes out (diff) | |
download | historical-5b0a71f27e78521a75909166fd6d958cbb58d050.tar.gz historical-5b0a71f27e78521a75909166fd6d958cbb58d050.tar.bz2 historical-5b0a71f27e78521a75909166fd6d958cbb58d050.zip |
initial ebuild #33462
Diffstat (limited to 'app-arch/pure-sfv/pure-sfv-0.3.ebuild')
-rw-r--r-- | app-arch/pure-sfv/pure-sfv-0.3.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-arch/pure-sfv/pure-sfv-0.3.ebuild b/app-arch/pure-sfv/pure-sfv-0.3.ebuild new file mode 100644 index 000000000000..57360aecbffa --- /dev/null +++ b/app-arch/pure-sfv/pure-sfv-0.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/pure-sfv/pure-sfv-0.3.ebuild,v 1.1 2003/11/16 07:06:29 vapier Exp $ + +DESCRIPTION="utility to test and create .sfv files and create .par files" +HOMEPAGE="http://pure-sfv.sourceforge.net/" +SRC_URI="mirror://sourceforge/pure-sfv/${PN}_${PV}_src.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="virtual/glibc" + +S=${WORKDIR} + +src_unpack() { + unpack ${A} + sed -i 's:-O2 -g::' ${S}/Makefile +} + +src_compile() { + emake || die +} + +src_install() { + dobin pure-sfv + dodoc ReadMe.txt +} |