diff options
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/camomile/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ml/camomile/camomile-0.5.3.ebuild | 14 |
2 files changed, 7 insertions, 12 deletions
diff --git a/dev-ml/camomile/ChangeLog b/dev-ml/camomile/ChangeLog index 6d8bb3923db0..66d43b386853 100644 --- a/dev-ml/camomile/ChangeLog +++ b/dev-ml/camomile/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/ulex # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.2 2004/08/09 18:48:39 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.3 2004/08/21 21:59:45 mattam Exp $ + + 22 Aug 2004; Matthieu Sozeau <mattam@gentoo.org> camomile-0.5.3.ebuild: + Adapt to findlib eclass, move to stable. 09 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> camomile-0.5.3.ebuild: header fix; tidy diff --git a/dev-ml/camomile/camomile-0.5.3.ebuild b/dev-ml/camomile/camomile-0.5.3.ebuild index 268ba6a234a6..f07656cf50cf 100644 --- a/dev-ml/camomile/camomile-0.5.3.ebuild +++ b/dev-ml/camomile/camomile-0.5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/camomile-0.5.3.ebuild,v 1.3 2004/08/09 18:48:39 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/camomile-0.5.3.ebuild,v 1.4 2004/08/21 21:59:45 mattam Exp $ DESCRIPTION="Camomile is a comprehensive Unicode library for ocaml." HOMEPAGE="http://camomile.sourceforge.net/" @@ -8,7 +8,7 @@ SRC_URI="http://heanet.dl.sourceforge.net/sourceforge/camomile/${P}.tar.bz2" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~x86 ~ppc" +KEYWORDS="x86 ppc" IUSE="" DEPEND=">=dev-lang/ocaml-3.07" @@ -20,13 +20,5 @@ src_compile() { } src_install() { - local destdir="$(ocamlfind printconf destdir)" - - export OCAMLFIND_DESTDIR="${D}${destdir}" - - # stublibs style - dodir "${destdir}/stublibs" - - make DESTDIR="${D}" DATADIR="${D}/usr/share" install \ - || die "make install failed" + findlib_src_install DATADIR="${D}/usr/share" } |