diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-11-01 06:25:17 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-11-01 06:25:17 +0000 |
commit | 663ef9607862ab3bd80e3a9719faf449d145b867 (patch) | |
tree | d60d5e201dadf0be5772a0f564c6d3792dc372f4 /app-arch/cksfv/cksfv-1.3.13.ebuild | |
parent | Version bump. (diff) | |
download | historical-663ef9607862ab3bd80e3a9719faf449d145b867.tar.gz historical-663ef9607862ab3bd80e3a9719faf449d145b867.tar.bz2 historical-663ef9607862ab3bd80e3a9719faf449d145b867.zip |
Version bump #244935 by Alexandru Toma.
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.26.2 x86_64
Diffstat (limited to 'app-arch/cksfv/cksfv-1.3.13.ebuild')
-rw-r--r-- | app-arch/cksfv/cksfv-1.3.13.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-arch/cksfv/cksfv-1.3.13.ebuild b/app-arch/cksfv/cksfv-1.3.13.ebuild new file mode 100644 index 000000000000..7b3c12e66227 --- /dev/null +++ b/app-arch/cksfv/cksfv-1.3.13.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/cksfv/cksfv-1.3.13.ebuild,v 1.1 2008/11/01 06:25:17 vapier Exp $ + +inherit toolchain-funcs + +DESCRIPTION="SFV checksum utility (simple file verification)" +HOMEPAGE="http://zakalwe.fi/~shd/foss/cksfv/" +SRC_URI="http://zakalwe.fi/~shd/foss/cksfv/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="" + +src_compile() { + # note: not an autoconf configure script + ./configure \ + --compiler=$(tc-getCC) \ + --prefix=/usr \ + --package-prefix="${D}" \ + --bindir=/usr/bin \ + --mandir=/usr/share/man || die + emake || die +} + +src_install() { + emake install || die + dodoc ChangeLog README TODO +} |