diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-06-19 19:03:42 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-06-19 19:03:42 +0000 |
commit | 89b1c29434a564838fff7b5e5e5312b85d5eb1f1 (patch) | |
tree | fc22dc1f537b981a570cd53f5f17d88edbc6291c /dev-libs/shapelib | |
parent | new ebuilds (diff) | |
download | gentoo-2-89b1c29434a564838fff7b5e5e5312b85d5eb1f1.tar.gz gentoo-2-89b1c29434a564838fff7b5e5e5312b85d5eb1f1.tar.bz2 gentoo-2-89b1c29434a564838fff7b5e5e5312b85d5eb1f1.zip |
new ebuilds
Diffstat (limited to 'dev-libs/shapelib')
-rw-r--r-- | dev-libs/shapelib/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/shapelib/Manifest | 2 | ||||
-rw-r--r-- | dev-libs/shapelib/files/digest-shapelib-1.2.10 | 1 | ||||
-rw-r--r-- | dev-libs/shapelib/shapelib-1.2.10.ebuild | 36 |
4 files changed, 48 insertions, 0 deletions
diff --git a/dev-libs/shapelib/ChangeLog b/dev-libs/shapelib/ChangeLog new file mode 100644 index 000000000000..2f93dc621aec --- /dev/null +++ b/dev-libs/shapelib/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-libs/shapelib +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/shapelib/ChangeLog,v 1.1 2003/06/19 19:00:09 rphillips Exp $ + +*shapelib-1.2.10 (19 Jun 2003) + + 19 Jun 2003; Ryan Phillips <rphillips@gentoo.org> : + + Created by Paul Kronenwetter. Fixes Bug #12232 diff --git a/dev-libs/shapelib/Manifest b/dev-libs/shapelib/Manifest new file mode 100644 index 000000000000..64405fcea101 --- /dev/null +++ b/dev-libs/shapelib/Manifest @@ -0,0 +1,2 @@ +MD5 f158ef877f5402a8e4005ef9061ba631 shapelib-1.2.10.ebuild 785 +MD5 8e119a24844842e421d7b400ff138974 files/digest-shapelib-1.2.10 67 diff --git a/dev-libs/shapelib/files/digest-shapelib-1.2.10 b/dev-libs/shapelib/files/digest-shapelib-1.2.10 new file mode 100644 index 000000000000..e5b5a1c93a16 --- /dev/null +++ b/dev-libs/shapelib/files/digest-shapelib-1.2.10 @@ -0,0 +1 @@ +MD5 4d96bd926167193d27bf14d56e2d484e shapelib-1.2.10.tar.gz 167219 diff --git a/dev-libs/shapelib/shapelib-1.2.10.ebuild b/dev-libs/shapelib/shapelib-1.2.10.ebuild new file mode 100644 index 000000000000..d5f9a99d4232 --- /dev/null +++ b/dev-libs/shapelib/shapelib-1.2.10.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/shapelib/shapelib-1.2.10.ebuild,v 1.1 2003/06/19 19:00:09 rphillips Exp $ + +inherit base eutils + +DESCRIPTION="ShapeLib" +HOMEPAGE="http://gdal.velocet.ca/projects/shapelib/" +SRC_URI="ftp://gdal.velocet.ca/pub/outgoing//${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/glibc" + +src_compile() { + pmake || die + make lib || die +} + +src_install() { + into /usr + exeinto /usr/bin + doexe shpcreate + doexe shpdump + doexe shptest + doexe shpadd + doexe dbfcreate + doexe dbfdump + doexe dbfadd + dolib.so .libs/libshp.so.1.0.1 + dosym libshp.so.1.0.1 usr/lib/libshp.so + insinto /usr/include/libshp + doins shapefil.h +} |