diff options
author | Sébastien Fabbro <bicatali@gentoo.org> | 2012-11-29 20:51:08 -0800 |
---|---|---|
committer | Sébastien Fabbro <bicatali@gentoo.org> | 2012-11-29 20:51:08 -0800 |
commit | d1eab7926aafc61b736f2ecd58c8b4760eedd27a (patch) | |
tree | 7db7cc37ec47b8bc1b621fbc1160398ccd63e5ff /dev-java/hdf-java/hdf-java-2.7.ebuild | |
parent | Merge branch 'master' of git+ssh://git.overlays.gentoo.org/proj/sci (diff) | |
download | sci-d1eab7926aafc61b736f2ecd58c8b4760eedd27a.tar.gz sci-d1eab7926aafc61b736f2ecd58c8b4760eedd27a.tar.bz2 sci-d1eab7926aafc61b736f2ecd58c8b4760eedd27a.zip |
dev-java/hdf-java: cleaned for old version, buggy
Package-Manager: portage-2.2.01.21313-prefix
RepoMan-Options: --force
Diffstat (limited to 'dev-java/hdf-java/hdf-java-2.7.ebuild')
-rw-r--r-- | dev-java/hdf-java/hdf-java-2.7.ebuild | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/dev-java/hdf-java/hdf-java-2.7.ebuild b/dev-java/hdf-java/hdf-java-2.7.ebuild deleted file mode 100644 index 7f31dd793..000000000 --- a/dev-java/hdf-java/hdf-java-2.7.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=2 -JAVA_PKG_IUSE="doc examples" -inherit eutils java-pkg-2 autotools - -DESCRIPTION="Java interface to the HDF5 library" -HOMEPAGE="http://www.hdfgroup.org/hdf-java-html/index.html" -SRC_URI="http://www.hdfgroup.org/ftp/HDF5/releases/HDF-JAVA/HDF-JAVA-${PV}/src/${P}-src.tar" - -LICENSE="NCSA-HDF" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="hdf szip zlib test" - -CDEPEND=">=sci-libs/hdf5-1.8[szip=,zlib=] - hdf? ( - sci-libs/hdf - virtual/jpeg - )" - -RDEPEND="${CDEPEND} - >=virtual/jre-1.5" - -DEPEND=">=virtual/jdk-1.5 - ${CDEPEND}" - -S=${WORKDIR}/${PN} - -src_prepare() { - epatch "${FILESDIR}"/${P}-shared.patch - eautoreconf - rm lib/*.jar -} - -src_configure() { - local stdpath="/usr/include,/usr/$(get_libdir)" - local myconf="--with-hdf4=no --with-libjpeg=no" - use hdf && \ - myconf="--with-libjpeg=${stdpath} --with-hdf4=${stdpath}" - use zlib && myconf="${myconf} --with-libz=${stdpath}" - use szip && myconf="${myconf} --with-libsz=${stdpath}" - - econf \ - ${myconf} \ - --with-hdf5="${stdpath}" \ - --with-jdk="$(java-config -o)/include,$(java-config -o)/jre/lib" -} - -src_compile() { - # parallel needs work. anyone? - emake -j1 just-hdf5 || die - - if use hdf; then - sed -i "s/MAX_VAR_DIMS/H4_MAX_VAR_DIMS/" \ - native/hdflib/hdfstructsutil.c || die - sed -i "s/MAX_NC_NAME/H4_MAX_NC_NAME/" \ - native/hdflib/hdfvdataImp.c || die - sed -i "s/MAX_NC_NAME/H4_MAX_NC_NAME/" \ - native/hdflib/hdfsdsImp.c || die - emake -j1 just-hdf4|| die - fi - - if use examples; then - emake -j1 do-examples || die - fi - - if use doc; then - emake -j1 javadocs || die - fi -} - -src_install() { - java-pkg_dojar "lib/jhdf5.jar" - java-pkg_doso "lib/linux/libjhdf5.so" - - if use hdf; then - java-pkg_dojar "lib/jhdf.jar" - java-pkg_doso "lib/linux/libjhdf.so" - fi - use doc && java-pkg_dojavadoc "docs/javadocs" - use examples && java-pkg_doexamples "examples" -} |