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 | aef9d37169c4c1fb3447a27d892e0de868b9219e (patch) | |
tree | 6b166372c8e6d68ce930cbc329bf7e64724dfaad /app-arch/cksfv | |
parent | Version bump. (diff) | |
download | gentoo-2-aef9d37169c4c1fb3447a27d892e0de868b9219e.tar.gz gentoo-2-aef9d37169c4c1fb3447a27d892e0de868b9219e.tar.bz2 gentoo-2-aef9d37169c4c1fb3447a27d892e0de868b9219e.zip |
Version bump #244935 by Alexandru Toma.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'app-arch/cksfv')
-rw-r--r-- | app-arch/cksfv/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/cksfv/cksfv-1.3.13.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/app-arch/cksfv/ChangeLog b/app-arch/cksfv/ChangeLog index 3d4721afde41..dbeafe549049 100644 --- a/app-arch/cksfv/ChangeLog +++ b/app-arch/cksfv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/cksfv # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/cksfv/ChangeLog,v 1.35 2008/03/01 14:13:15 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/cksfv/ChangeLog,v 1.36 2008/11/01 06:25:17 vapier Exp $ + +*cksfv-1.3.13 (01 Nov 2008) + + 01 Nov 2008; Mike Frysinger <vapier@gentoo.org> +cksfv-1.3.13.ebuild: + Version bump #244935 by Alexandru Toma. 01 Mar 2008; Christoph Mende <angelos@gentoo.org> cksfv-1.3.12.ebuild: Stable on amd64, bug #210986 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 +} |