diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-06-11 20:58:54 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-06-11 20:58:54 +0000 |
commit | 12309c70511c747bd44e335b1e4211d0d2996db5 (patch) | |
tree | b0024c243abe3c3f73ac8d1e751a7f010124724f /dev-util | |
parent | rm old (diff) | |
download | gentoo-2-12309c70511c747bd44e335b1e4211d0d2996db5.tar.gz gentoo-2-12309c70511c747bd44e335b1e4211d0d2996db5.tar.bz2 gentoo-2-12309c70511c747bd44e335b1e4211d0d2996db5.zip |
Version bump
(Portage version: 2.1.2.9)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/omake/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/omake/files/digest-omake-0.9.8.4 | 3 | ||||
-rw-r--r-- | dev-util/omake/omake-0.9.8.4.ebuild | 62 |
3 files changed, 71 insertions, 1 deletions
diff --git a/dev-util/omake/ChangeLog b/dev-util/omake/ChangeLog index 6845bef59ed7..dd510c890409 100644 --- a/dev-util/omake/ChangeLog +++ b/dev-util/omake/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/omake # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/omake/ChangeLog,v 1.12 2007/05/11 21:13:54 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/omake/ChangeLog,v 1.13 2007/06/11 20:58:54 aballier Exp $ + +*omake-0.9.8.4 (11 Jun 2007) + + 11 Jun 2007; Alexis Ballier <aballier@gentoo.org> +omake-0.9.8.4.ebuild: + Version bump *omake-0.9.8.1 (11 May 2007) diff --git a/dev-util/omake/files/digest-omake-0.9.8.4 b/dev-util/omake/files/digest-omake-0.9.8.4 new file mode 100644 index 000000000000..49df3a41f54e --- /dev/null +++ b/dev-util/omake/files/digest-omake-0.9.8.4 @@ -0,0 +1,3 @@ +MD5 9cc70d1389ae4dd4e9de8aa6aee9882e omake-0.9.8.4-2.tar.gz 2899821 +RMD160 cfa165893a6ff28095546cefc1378745f2641669 omake-0.9.8.4-2.tar.gz 2899821 +SHA256 e6f3c4fd2cde1332d96f586d9c469e74c050ba6622bbe4b4f557a039aad4e296 omake-0.9.8.4-2.tar.gz 2899821 diff --git a/dev-util/omake/omake-0.9.8.4.ebuild b/dev-util/omake/omake-0.9.8.4.ebuild new file mode 100644 index 000000000000..e08121bfb184 --- /dev/null +++ b/dev-util/omake/omake-0.9.8.4.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/omake/omake-0.9.8.4.ebuild,v 1.1 2007/06/11 20:58:54 aballier Exp $ + +inherit eutils toolchain-funcs multilib + +EXTRAPV="-2" +DESCRIPTION="Make replacement" +HOMEPAGE="http://omake.metaprl.org/" +SRC_URI="http://omake.metaprl.org/downloads/${P}${EXTRAPV}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc fam ncurses readline" +DEPEND=">=dev-lang/ocaml-3.0.8 + ncurses? ( >=sys-libs/ncurses-5.3 ) + fam? ( virtual/fam ) + readline? ( >=sys-libs/readline-4.3 )" + +use_boolean() { + if use $1; then + echo "true" + else + echo "false" + fi +} + +src_compile() { + # Configuration steps... + echo "PREFIX = \$(dir \$\"/usr\")" > .config + echo "BINDIR = \$(dir \$\"\$(PREFIX)/bin\")" >> .config + echo "LIBDIR = \$(dir \$\"\$(PREFIX)/$(get_libdir)\")" >> .config + echo "MANDIR = \$(dir \$\"\$(PREFIX)/man\")" >> .config + + echo "CC = $(tc-getCC)" >> .config + echo "CFLAGS = ${CFLAGS}" >> .config + + echo "NATIVE_ENABLED = true" >> .config + echo "BYTE_ENABLED = false" >> .config + + echo "NATIVE_PROFILE = false" >> .config + + echo "READLINE_ENABLED = $(use_boolean readline)" >> .config + echo "FAM_ENABLED = $(use_boolean fam)" >> .config + echo "NCURSES_ENABLED = $(use_boolean ncurses)" >> .config + + echo "DEFAULT_SAVE_INTERVAL = 60" >> .config + + echo "OCAMLDEP_MODULES_ENABLED = false" >> .config + + emake all || die "compilation failed" +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die "emake install failed" + dodoc CHANGELOG.txt + if use doc; then + dodoc doc/ps/omake-doc.{pdf,ps} doc/txt/omake-doc.txt + dohtml -r doc/html/* + fi +} |