diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-08-19 13:27:14 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-08-19 13:27:14 +0000 |
commit | 086d33ad7a1adb56721c6cbe62811db7ccaacbbc (patch) | |
tree | d9a9dc545b6fc74a51933cb03d207dc135e25ec3 /dev-ml/fort | |
parent | eapi5, define subslot for ocaml rev deps, add := dep on ocaml (diff) | |
download | gentoo-2-086d33ad7a1adb56721c6cbe62811db7ccaacbbc.tar.gz gentoo-2-086d33ad7a1adb56721c6cbe62811db7ccaacbbc.tar.bz2 gentoo-2-086d33ad7a1adb56721c6cbe62811db7ccaacbbc.zip |
eapi5, define subslot and add := dep on ocaml
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml/fort')
-rw-r--r-- | dev-ml/fort/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/fort/fort-0.4.2.ebuild | 16 |
2 files changed, 11 insertions, 12 deletions
diff --git a/dev-ml/fort/ChangeLog b/dev-ml/fort/ChangeLog index 07d89d790d81..36cd27cfc422 100644 --- a/dev-ml/fort/ChangeLog +++ b/dev-ml/fort/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/fort -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/fort/ChangeLog,v 1.5 2012/10/10 12:16:04 aballier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/fort/ChangeLog,v 1.6 2013/08/19 13:27:13 aballier Exp $ + + 19 Aug 2013; Alexis Ballier <aballier@gentoo.org> fort-0.4.2.ebuild: + eapi5, define subslot and add := dep on ocaml 10 Oct 2012; Alexis Ballier <aballier@gentoo.org> fort-0.4.2.ebuild, +files/fort-0.4.2-ocaml4.patch: diff --git a/dev-ml/fort/fort-0.4.2.ebuild b/dev-ml/fort/fort-0.4.2.ebuild index 220575f441b1..f041b654ba6c 100644 --- a/dev-ml/fort/fort-0.4.2.ebuild +++ b/dev-ml/fort/fort-0.4.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/fort/fort-0.4.2.ebuild,v 1.5 2012/10/10 12:16:04 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/fort/fort-0.4.2.ebuild,v 1.6 2013/08/19 13:27:14 aballier Exp $ -EAPI=2 +EAPI=5 inherit multilib eutils @@ -11,12 +11,13 @@ HOMEPAGE="http://fort.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz" LICENSE="ZLIB" -SLOT="0" +SLOT="0/${PV}" KEYWORDS="amd64 ~ppc x86" IUSE="" -DEPEND="dev-lang/ocaml" +DEPEND="dev-lang/ocaml:=" RDEPEND="${DEPEND}" +DOCS=( README ) src_prepare() { has_version '>=dev-lang/ocaml-4' && epatch "${FILESDIR}/${P}-ocaml4.patch" @@ -27,8 +28,3 @@ src_prepare() { src_configure() { ./configure --bindir /usr/bin --libdir /usr/$(get_libdir)/ocaml || die } - -src_install() { - emake DESTDIR="${D}" install || die - dodoc README || die -} |