diff options
author | Jonathan Callen <abcd@gentoo.org> | 2011-04-10 22:49:46 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2011-04-10 22:49:46 +0000 |
commit | bf900fd9901038fd3906c603751b0bbf53284288 (patch) | |
tree | 973376d8b8676616698e5c9b974420fcd082ccb6 /app-arch/cksfv | |
parent | Fix install in parallel and install of ldap-related files, thanks to Chris Co... (diff) | |
download | gentoo-2-bf900fd9901038fd3906c603751b0bbf53284288.tar.gz gentoo-2-bf900fd9901038fd3906c603751b0bbf53284288.tar.bz2 gentoo-2-bf900fd9901038fd3906c603751b0bbf53284288.zip |
Add prefix support, bump EAPI to 3, add prefix keywords
(Portage version: 2.2.0_alpha29_p11/cvs/Linux i686)
Diffstat (limited to 'app-arch/cksfv')
-rw-r--r-- | app-arch/cksfv/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/cksfv/cksfv-1.3.14.ebuild | 16 |
2 files changed, 13 insertions, 10 deletions
diff --git a/app-arch/cksfv/ChangeLog b/app-arch/cksfv/ChangeLog index fea31bc898bf..5d58758de55d 100644 --- a/app-arch/cksfv/ChangeLog +++ b/app-arch/cksfv/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-arch/cksfv -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/cksfv/ChangeLog,v 1.42 2009/09/05 17:34:49 patrick Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/cksfv/ChangeLog,v 1.43 2011/04/10 22:49:46 abcd Exp $ + + 10 Apr 2011; Jonathan Callen <abcd@gentoo.org> cksfv-1.3.14.ebuild: + Add prefix support, bump EAPI to 3, add prefix keywords *cksfv-1.3.14 (05 Sep 2009) diff --git a/app-arch/cksfv/cksfv-1.3.14.ebuild b/app-arch/cksfv/cksfv-1.3.14.ebuild index 527a287129bb..cd35353fd06c 100644 --- a/app-arch/cksfv/cksfv-1.3.14.ebuild +++ b/app-arch/cksfv/cksfv-1.3.14.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/cksfv/cksfv-1.3.14.ebuild,v 1.1 2009/09/05 17:34:49 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/cksfv/cksfv-1.3.14.ebuild,v 1.2 2011/04/10 22:49:46 abcd Exp $ +EAPI=3 inherit toolchain-funcs DESCRIPTION="SFV checksum utility (simple file verification)" @@ -10,20 +11,19 @@ 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" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" IUSE="" DEPEND="" -src_compile() { +src_configure() { # note: not an autoconf configure script ./configure \ --compiler=$(tc-getCC) \ - --prefix=/usr \ + --prefix="${EPREFIX}"/usr \ --package-prefix="${D}" \ - --bindir=/usr/bin \ - --mandir=/usr/share/man || die - emake || die + --bindir="${EPREFIX}"/usr/bin \ + --mandir="${EPREFIX}"/usr/share/man || die } src_install() { |