From 87c2cd4d5dadbf8d0bab0ef0bb87032a938714c5 Mon Sep 17 00:00:00 2001 From: Chris Reffett Date: Sat, 19 Jan 2013 22:02:16 +0000 Subject: Revision bump. Remove bundled quaqua library, needed only for OS X and makes JAVA_PKG_STRICT complain, bug 451786. Fix user manual not being installed. (Portage version: 2.2.0_alpha154/cvs/Linux x86_64, signed Manifest commit with key 42618354) --- sci-misc/netlogo-bin/ChangeLog | 9 +++- sci-misc/netlogo-bin/netlogo-bin-5.0.3-r1.ebuild | 61 ++++++++++++++++++++++++ sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild | 59 ----------------------- 3 files changed, 69 insertions(+), 60 deletions(-) create mode 100644 sci-misc/netlogo-bin/netlogo-bin-5.0.3-r1.ebuild delete mode 100644 sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild (limited to 'sci-misc') diff --git a/sci-misc/netlogo-bin/ChangeLog b/sci-misc/netlogo-bin/ChangeLog index a194aa579d17..07dd4576f41f 100644 --- a/sci-misc/netlogo-bin/ChangeLog +++ b/sci-misc/netlogo-bin/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-misc/netlogo-bin # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/netlogo-bin/ChangeLog,v 1.17 2013/01/07 01:08:51 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/netlogo-bin/ChangeLog,v 1.18 2013/01/19 22:02:16 creffett Exp $ + +*netlogo-bin-5.0.3-r1 (19 Jan 2013) + + 19 Jan 2013; Chris Reffett +netlogo-bin-5.0.3-r1.ebuild, + -netlogo-bin-5.0.3.ebuild: + Revision bump. Remove bundled quaqua library, needed only for OS X and makes + JAVA_PKG_STRICT complain, bug 451786. Fix user manual not being installed. *netlogo-bin-5.0.3 (07 Jan 2013) diff --git a/sci-misc/netlogo-bin/netlogo-bin-5.0.3-r1.ebuild b/sci-misc/netlogo-bin/netlogo-bin-5.0.3-r1.ebuild new file mode 100644 index 000000000000..2765ed334d53 --- /dev/null +++ b/sci-misc/netlogo-bin/netlogo-bin-5.0.3-r1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/netlogo-bin/netlogo-bin-5.0.3-r1.ebuild,v 1.1 2013/01/19 22:02:16 creffett Exp $ + +EAPI=5 + +inherit eutils java-pkg-2 + +MY_PN="netlogo" +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Cross-platform multi-agent programmable modeling environment" +HOMEPAGE="http://ccl.northwestern.edu/netlogo/" +SRC_URI=" + http://dev.gentoo.org/~jlec/distfiles/${PN/-bin}.gif.tar + http://ccl.northwestern.edu/netlogo/${PV}/${MY_P}.tar.gz" +LICENSE="netlogo GPL-2 LGPL-2.1 LGPL-3 BSD Apache-2.0" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=virtual/jre-1.5" + +S="${WORKDIR}"/${MY_P} + +QA_PREBUILT="/usr/share/"${PN}"/lib/Linux-*/*.so" + +src_install() { + insinto /usr/share/"${PN}"/ + doins *.jar + rm lib/quaqua-7.3.4.jar + java-pkg_dojar extensions/sound/*.jar + java-pkg_dojar extensions/profiler/*.jar + java-pkg_dojar extensions/array/*.jar + java-pkg_dojar extensions/gogo/*.jar + java-pkg_dojar extensions/bitmap/*.jar + java-pkg_dojar extensions/table/*.jar + java-pkg_dojar extensions/gis/*.jar + java-pkg_dojar lib/*.jar + + dohtml -r docs/* + dodoc "docs/NetLogo User Manual.pdf" docs/shapes.nlogo + insinto /usr/share/"${PN}"/models + doins -r models/* + + insinto /usr/share/pixmaps + newins "${S}"/icon.ico netlogo.ico + + exeinto /opt/bin + newexe "${FILESDIR}"/netlogo-5.0.3.sh netlogo + newexe "${FILESDIR}"/netlogo-3d.sh netlogo-3d + newexe "${FILESDIR}"/hubnet.sh hubnet + make_desktop_entry netlogo "NetLogo" /usr/share/pixmaps/netlogo.ico + make_desktop_entry netlogo-3d "NetLogo 2D" /usr/share/pixmaps/netlogo.ico + make_desktop_entry hubnet "NetLogo Hubnet" /usr/share/pixmaps/netlogo.ico + + #3D Libs right now only for x86 + insinto /usr/share/"${PN}"/lib + doins -r lib/Linux-* +} diff --git a/sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild b/sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild deleted file mode 100644 index 6f9d6543cc1e..000000000000 --- a/sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/netlogo-bin/netlogo-bin-5.0.3.ebuild,v 1.1 2013/01/07 01:08:51 creffett Exp $ - -EAPI=5 - -inherit eutils java-pkg-2 - -MY_PN="netlogo" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Cross-platform multi-agent programmable modeling environment" -HOMEPAGE="http://ccl.northwestern.edu/netlogo/" -SRC_URI=" - http://dev.gentoo.org/~jlec/distfiles/${PN/-bin}.gif.tar - http://ccl.northwestern.edu/netlogo/${PV}/${MY_P}.tar.gz" -LICENSE="netlogo GPL-2 LGPL-2.1 LGPL-3 BSD Apache-2.0" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND=">=virtual/jre-1.5" - -S="${WORKDIR}"/${MY_P} - -QA_PREBUILT="/usr/share/"${PN}"/lib/Linux-*/*.so" - -src_install() { - insinto /usr/share/"${PN}"/ - doins *.jar - java-pkg_dojar extensions/sound/*.jar - java-pkg_dojar extensions/profiler/*.jar - java-pkg_dojar extensions/array/*.jar - java-pkg_dojar extensions/gogo/*.jar - java-pkg_dojar extensions/bitmap/*.jar - java-pkg_dojar extensions/table/*.jar - java-pkg_dojar extensions/gis/*.jar - java-pkg_dojar lib/*.jar - - dohtml -r docs/* - insinto /usr/share/"${PN}"/models - doins -r models/* - - insinto /usr/share/pixmaps - newins "${S}"/icon.ico netlogo.ico - - exeinto /opt/bin - newexe "${FILESDIR}"/netlogo-5.0.3.sh netlogo - newexe "${FILESDIR}"/netlogo-3d.sh netlogo-3d - newexe "${FILESDIR}"/hubnet.sh hubnet - make_desktop_entry netlogo "NetLogo" /usr/share/pixmaps/netlogo.ico - make_desktop_entry netlogo-3d "NetLogo 2D" /usr/share/pixmaps/netlogo.ico - make_desktop_entry hubnet "NetLogo Hubnet" /usr/share/pixmaps/netlogo.ico - - #3D Libs right now only for x86 - insinto /usr/share/"${PN}"/lib - doins -r lib/Linux-* -} -- cgit v1.2.3-65-gdbad