diff options
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/gmt/files/digest-gmt-3.4.2 | 8 | ||||
-rw-r--r-- | app-sci/gmt/gmt-3.4.2.ebuild | 78 |
2 files changed, 0 insertions, 86 deletions
diff --git a/app-sci/gmt/files/digest-gmt-3.4.2 b/app-sci/gmt/files/digest-gmt-3.4.2 deleted file mode 100644 index 0d9ea916de60..000000000000 --- a/app-sci/gmt/files/digest-gmt-3.4.2 +++ /dev/null @@ -1,8 +0,0 @@ -MD5 d9e030f2026e2250ffe7d492532a0534 GMT3.4.2_progs.tar.bz2 558445 -MD5 7375498ea9894255e753bd377ef6eafb GMT_share.tar.bz2 3662062 -MD5 8c655de00e7623d15ddf56a01f5ed57a GMT3.4.2_man.tar.bz2 86208 -MD5 98d883031fdbac8fdb21a3e4a7c826ad GMT3.4.2_tut.tar.bz2 986409 -MD5 1a682cc0e292091471704a34ae4e466d GMT3.4.2_scripts.tar.bz2 3051543 -MD5 37c248ae684894ed52f56c6c6b0754bd GMT3.4.2_pdf.tar.bz2 6870851 -MD5 6f7d5721167e037b03c2bed9f4bb8725 GMT_full.tar.bz2 28789894 -MD5 63217a3ca2ebcf3b918f085651a91e12 GMT_high.tar.bz2 8641460 diff --git a/app-sci/gmt/gmt-3.4.2.ebuild b/app-sci/gmt/gmt-3.4.2.ebuild deleted file mode 100644 index 87df496c9dc5..000000000000 --- a/app-sci/gmt/gmt-3.4.2.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/gmt/gmt-3.4.2.ebuild,v 1.2 2003/02/13 09:21:50 vapier Exp $ - -#NOTE: To build a light GMT you could compile without some resources like: HIGH and FULL data base resolution and PDF documentation. For so, use something like export NO_FULL="YES"; export NO_HIGH="YES"; export NO_PDF="YES"; ... - -DESCRIPTION="Powerfull map generator" - -HOMEPAGE="http://gmt.soest.hawaii.edu/" - -SRC_URI="ftp://gmt.soest.hawaii.edu/pub/gmt/GMT${PV}_progs.tar.bz2 - ftp://gmt.soest.hawaii.edu/pub/gmt/GMT_share.tar.bz2 - ftp://gmt.soest.hawaii.edu/pub/gmt/GMT${PV}_man.tar.bz2 - ftp://gmt.soest.hawaii.edu/pub/gmt/GMT${PV}_tut.tar.bz2 - ftp://gmt.soest.hawaii.edu/pub/gmt/GMT${PV}_scripts.tar.bz2" - -#Without PDF documentation -if [ "${NO_PDF}" != "YES" ] | [ "${NO_PDF}" != "yes" ] - then - SRC_URI="${SRC_URI} ftp://gmt.soest.hawaii.edu/pub/gmt/GMT${PV}_pdf.tar.bz2" -fi -#Without FULL data base resolution -if [ "${NO_FULL}" != "YES" ] | [ "${NO_FULL}" != "yes" ] - then - SRC_URI="${SRC_URI} ftp://gmt.soest.hawaii.edu/pub/gmt/GMT_full.tar.bz2" -fi -#Without HIGH data base resolution -if [ "${NO_HIGH}" != "YES" ] | [ "${NO_HIGH}" != "yes" ] - then - SRC_URI="${SRC_URI} ftp://gmt.soest.hawaii.edu/pub/gmt/GMT_high.tar.bz2" -fi - - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" - -IUSE="" - -#Need to include gcc and bzip?? -DEPEND=">=app-sci/netcdf-3.5.0" - -#RDEPEND="" - -S="${WORKDIR}/GMT${PV}" - -src_unpack() { - unpack ${A} || die - mv ${WORKDIR}/share/* ${S}/share/ || die -} - -src_compile() { - export NETCDFHOME="/usr/lib" - ./configure \ - --prefix=/usr \ - --bindir=/usr/bin \ - --libdir=/usr/lib/gmt-${PV} \ - --includedir=/usr/include/gmt-${PV} \ - --mandir=/usr/man \ - --datadir=/usr/share/gmt-${PV} \ - || die "configure failed" - - make all || die -} - -src_install() { - - make \ - prefix=${D}/usr \ - bindir=${D}/usr/bin \ - libdir=${D}/usr/lib/gmt-${PV} \ - includedir=${D}/usr/include/gmt-${PV} \ - mandir=${D}/usr/man \ - datadir=${D}/usr/share/gmt-${PV} \ - install install-data install-man \ - || die "install failed" - -} |