summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/hdf/hdf-4.2.0-r1.ebuild')
-rw-r--r--dev-libs/hdf/hdf-4.2.0-r1.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-libs/hdf/hdf-4.2.0-r1.ebuild b/dev-libs/hdf/hdf-4.2.0-r1.ebuild
deleted file mode 100644
index 5ba54abc1a0f..000000000000
--- a/dev-libs/hdf/hdf-4.2.0-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/hdf/hdf-4.2.0-r1.ebuild,v 1.1 2004/02/11 11:06:16 phosphan Exp $
-
-# substitute second dot by "r"
-MY_PV=${PV/./X}
-TMP_PV=${MY_PV/./r}
-MY_PV=${TMP_PV/X/.}
-
-S="${WORKDIR}/${PN}${MY_PV}"
-
-DESCRIPTION="HDF4 is a general purpose library and file format for storing scientific data."
-SRC_URI="ftp://ftp.ncsa.uiuc.edu/HDF/pub/outgoing/hdf4/hdf${MY_PV}/hdf${MY_PV}.tar.gz"
-HOMEPAGE="http://hdf.ncsa.uiuc.edu/hdf4.html"
-
-LICENSE="NCSA-HDF"
-KEYWORDS="~x86 ~amd64"
-SLOT="0"
-IUSE=""
-
-DEPEND="sys-libs/zlib
- media-libs/jpeg
- dev-libs/szip
- app-sci/netcdf
- >=sys-apps/sed-4"
-
-src_compile() {
- local myconf="--enable-production --with-szlib=/usr"
- econf ${myconf} || die "configure failed"
- make || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodoc README release_notes/*.txt
- cd ${D}
- if has_version app-sci/netcdf; then
- einfo app-sci/netcdf is already installed - not installing netcdf related files
- rm -v usr/bin/nc*
- rm -v usr/share/man/man1/nc*
- rm -v usr/include/netcdf.inc
- rm -v usr/include/netcdf.h
- fi
-}