diff options
author | 2011-12-25 22:14:11 +0000 | |
---|---|---|
committer | 2011-12-25 22:14:11 +0000 | |
commit | b1aaf1a833d9b2513b9dab24b0365d0705c1aeaf (patch) | |
tree | 2296f3dda733aad3cb9e5185cbf46a4d4ab6dd50 /dev-java/sat4j-core | |
parent | Initial commit (diff) | |
download | gentoo-2-b1aaf1a833d9b2513b9dab24b0365d0705c1aeaf.tar.gz gentoo-2-b1aaf1a833d9b2513b9dab24b0365d0705c1aeaf.tar.bz2 gentoo-2-b1aaf1a833d9b2513b9dab24b0365d0705c1aeaf.zip |
dev-java/sat4j-core: version bump
(Portage version: 2.1.10.43/cvs/Linux x86_64)
Diffstat (limited to 'dev-java/sat4j-core')
-rw-r--r-- | dev-java/sat4j-core/ChangeLog | 9 | ||||
-rw-r--r-- | dev-java/sat4j-core/sat4j-core-2.3.1.ebuild | 59 |
2 files changed, 66 insertions, 2 deletions
diff --git a/dev-java/sat4j-core/ChangeLog b/dev-java/sat4j-core/ChangeLog index 02a277c354a6..2bc946866a27 100644 --- a/dev-java/sat4j-core/ChangeLog +++ b/dev-java/sat4j-core/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-java/sat4j-core -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/sat4j-core/ChangeLog,v 1.10 2010/10/17 12:33:27 caster Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/sat4j-core/ChangeLog,v 1.11 2011/12/25 22:14:11 fordfrog Exp $ + +*sat4j-core-2.3.1 (25 Dec 2011) + + 25 Dec 2011; Miroslav Šulc <fordfrog@gentoo.org> +sat4j-core-2.3.1.ebuild: + Version bump 17 Oct 2010; Vlastimil Babka <caster@gentoo.org> -sat4j-core-2.1.ebuild, -sat4j-core-2.1.1.ebuild: diff --git a/dev-java/sat4j-core/sat4j-core-2.3.1.ebuild b/dev-java/sat4j-core/sat4j-core-2.3.1.ebuild new file mode 100644 index 000000000000..2324234cc4a5 --- /dev/null +++ b/dev-java/sat4j-core/sat4j-core-2.3.1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/sat4j-core/sat4j-core-2.3.1.ebuild,v 1.1 2011/12/25 22:14:11 fordfrog Exp $ + +EAPI="2" + +MY_PN="org.${PN//-/.}" +MY_PV="20111030" +BUILD_PV="2.4" +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Lightweight constraint programming with a SAT solver" +HOMEPAGE="http://www.sat4j.org/" +SRC_URI="http://download.forge.objectweb.org/sat4j/${PN}-v${MY_PV}.zip + http://download.forge.objectweb.org/sat4j/build-${BUILD_PV}.xml -> ${P}-build.xml" +LICENSE="LGPL-2.1" +SLOT="2" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=virtual/jre-1.5" +DEPEND=">=virtual/jdk-1.5" + +S="${WORKDIR}" + +src_unpack() { + unpack ${PN}-v${MY_PV}.zip +} + +java_prepare() { + mkdir -p core/{lib,src} || die + + # Don't complain about missing javadoc stylesheet. + touch core/lib/stylesheet.css + + # Grab build.xml. Don't fetch from CVS. Version file is gone. + sed -e 's/depends="prepare,getsource"/depends="prepare"/g' \ + -e '/<replace/d' \ + "${DISTDIR}/${P}-build.xml" > build.xml || die + + # Unpack manifest. + cd core || die + jar xf "${WORKDIR}/${MY_PN}.jar" META-INF || die + + # Unpack sources. + cd src || die + jar xf "${WORKDIR}/${MY_PN}-src.jar" || die +} + +EANT_BUILD_TARGET="core" +EANT_DOC_TARGET="javadoc -Dmodule=core -Dlib=core/lib" + +src_install() { + java-pkg_dojar dist/CUSTOM/${MY_PN}.jar + use doc && java-pkg_dojavadoc api/core + use source && java-pkg_dosrc core/src/org +} |