diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-06-07 21:30:47 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-06-07 21:30:47 +0000 |
commit | a3164e7c6e0cc2a2128fa9544fcd0e5684926001 (patch) | |
tree | 4da1c123736a61fc215f273b6d566bfb488833ad /dev-ml/ulex | |
parent | Stable for HPPA (bug #221063). (diff) | |
download | gentoo-2-a3164e7c6e0cc2a2128fa9544fcd0e5684926001.tar.gz gentoo-2-a3164e7c6e0cc2a2128fa9544fcd0e5684926001.tar.bz2 gentoo-2-a3164e7c6e0cc2a2128fa9544fcd0e5684926001.zip |
remove old
(Portage version: 2.1.5.4)
Diffstat (limited to 'dev-ml/ulex')
-rw-r--r-- | dev-ml/ulex/ChangeLog | 6 | ||||
-rw-r--r-- | dev-ml/ulex/ulex-0.8.ebuild | 26 | ||||
-rw-r--r-- | dev-ml/ulex/ulex-1.0.ebuild | 39 |
3 files changed, 5 insertions, 66 deletions
diff --git a/dev-ml/ulex/ChangeLog b/dev-ml/ulex/ChangeLog index fe305922c9e0..481b93fc31b5 100644 --- a/dev-ml/ulex/ChangeLog +++ b/dev-ml/ulex/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ml/ulex # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ulex/ChangeLog,v 1.17 2008/06/07 16:10:10 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ulex/ChangeLog,v 1.18 2008/06/07 21:30:47 aballier Exp $ + + 07 Jun 2008; Alexis Ballier <aballier@gentoo.org> -ulex-0.8.ebuild, + -ulex-1.0.ebuild: + remove old 07 Jun 2008; nixnut <nixnut@gentoo.org> ulex-1.1.ebuild: Stable on ppc wrt bug 224893 diff --git a/dev-ml/ulex/ulex-0.8.ebuild b/dev-ml/ulex/ulex-0.8.ebuild deleted file mode 100644 index fa03055db58e..000000000000 --- a/dev-ml/ulex/ulex-0.8.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ulex/ulex-0.8.ebuild,v 1.1 2005/11/10 22:32:00 mattam Exp $ - -inherit eutils findlib - -DESCRIPTION="A lexer generator for unicode" -HOMEPAGE="http://www.cduce.org" -SRC_URI="http://www.cduce.org/download/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="x86 ppc" -IUSE="" - -DEPEND=">=dev-lang/ocaml-3.08" - -src_compile() { - make all || die - make all.opt || die -} - -src_install() { - findlib_src_install - dodoc README CHANGES -} diff --git a/dev-ml/ulex/ulex-1.0.ebuild b/dev-ml/ulex/ulex-1.0.ebuild deleted file mode 100644 index 44f0d44070ce..000000000000 --- a/dev-ml/ulex/ulex-1.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ulex/ulex-1.0.ebuild,v 1.2 2008/01/03 18:38:24 aballier Exp $ - -inherit eutils findlib - -EAPI="1" - -DESCRIPTION="A lexer generator for unicode" -HOMEPAGE="http://www.cduce.org" -SRC_URI="http://www.cduce.org/download/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="+ocamlopt" - -DEPEND=">=dev-lang/ocaml-3.10.0" - -pkg_setup() { - if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then - eerror "In order to build ${PN} with native code support from ocaml" - eerror "You first need to have a native code ocaml compiler." - eerror "You need to install dev-lang/ocaml with ocamlopt useflag on." - die "Please install ocaml with ocamlopt useflag" - fi -} - -src_compile() { - emake all || die "failed to build bytecode" - if use ocamlopt; then - emake all.opt || die "failed to build native code" - fi -} - -src_install() { - findlib_src_install - dodoc README CHANGES -} |