diff options
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/geos/ChangeLog | 54 | ||||
-rw-r--r-- | sci-libs/geos/Manifest | 4 | ||||
-rw-r--r-- | sci-libs/geos/files/digest-geos-2.2.1 | 1 | ||||
-rw-r--r-- | sci-libs/geos/geos-2.2.1.ebuild | 69 | ||||
-rw-r--r-- | sci-libs/geos/metadata.xml | 16 |
5 files changed, 0 insertions, 144 deletions
diff --git a/sci-libs/geos/ChangeLog b/sci-libs/geos/ChangeLog deleted file mode 100644 index 3a5a835df..000000000 --- a/sci-libs/geos/ChangeLog +++ /dev/null @@ -1,54 +0,0 @@ -# ChangeLog for sci-libs/geos -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.10 2005/11/21 19:36:08 blubb Exp $ - -*geos-2.2.1 (27 Jan 2005) - - 27 Jan 2006; Lucas Chiesa <lucas.chiesa@gmail.com> geos-2.2.1.ebuild: - Version bump. Thanks to Etienne Dube <etdube@globetrotter.net> - for his work. - - 21 Nov 2005; Simon Stelling <blubb@gentoo.org> geos-2.1.2.ebuild: - stable on amd64 - - 17 Sep 2005; Michael Hanselmann <hansmi@gentoo.org> geos-2.1.2.ebuild: - Stable on ppc. - - 11 Sep 2005; Steve Arnold <nerdboy@gentoo.org> geos-2.1.1.ebuild, - geos-2.1.2.ebuild: - stable bump for sparc - -*geos-2.1.4 (27 Aug 2005) - - 27 Aug 2005; Masatomo Nakano <nakano@gentoo.org> +geos-2.1.4.ebuild: - Version bump. - - 23 Jul 2005; Steve Arnold <nerdboy@gentoo.org> geos-2.1.1.ebuild, - geos-2.1.2.ebuild: - stable bump for x86 and keyworded for ~sparc - -*geos-2.1.2 (03 Jul 2005) - - 03 Jul 2005; Masatomo Nakano <nakano@gentoo.org> +geos-2.1.2.ebuild: - Version bump. - - 17 May 2005; Chris White <chriswhite@gentoo.org> geos-2.1.1.ebuild: - Marked ppc unstable. - - 14 May 2005; MATSUU Takuto <matsuu@gentoo.org> - +files/geos-2.1.1-multilib.patch, geos-2.1.1.ebuild: - clean up ebuild. Fixed multilib problem. - - 14 May 2005; MATSUU Takuto <matsuu@gentoo.org> geos-2.1.1.ebuild: - mark ~amd64 - -*geos-2.1.1 (11 May 2005) - - 11 May 2005; Masatomo Nakano <nakano@gentoo.org> +metadata.xml, - +geos-2.1.1.ebuild: - Initial import. Ebuild submitted by - Nathaniel C. Domingo <nathaniel.domingo@up.edu.ph>, - Paul Sumner <paul@zanfx.com>, - Jeff Kowalczyk <jtk@yahoo.com>, - MZM <marazm@navigator.lv>, - FENOY Gérald djayweb@djayux.net>. diff --git a/sci-libs/geos/Manifest b/sci-libs/geos/Manifest deleted file mode 100644 index df21ab024..000000000 --- a/sci-libs/geos/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -MD5 f125da484ff2e55a16bedfe50e1f2ecc ChangeLog 1716 -MD5 fc16ca8f011b62c9e2f8ab9c996c6244 files/digest-geos-2.2.1 63 -MD5 ecbcc17aa44e973788e3a48e31f248a7 geos-2.2.1.ebuild 1489 -MD5 20dfd201f157cca4d63a38430179c775 metadata.xml 655 diff --git a/sci-libs/geos/files/digest-geos-2.2.1 b/sci-libs/geos/files/digest-geos-2.2.1 deleted file mode 100644 index 034aac54d..000000000 --- a/sci-libs/geos/files/digest-geos-2.2.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 272132bfb64422915d0f748f5e26932b geos-2.2.1.tar.bz2 533286 diff --git a/sci-libs/geos/geos-2.2.1.ebuild b/sci-libs/geos/geos-2.2.1.ebuild deleted file mode 100644 index c265a2b00..000000000 --- a/sci-libs/geos/geos-2.2.1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit eutils - -DESCRIPTION="Geometry Engine - Open Source" -HOMEPAGE="http://geos.refractions.net" -SRC_URI="http://geos.refractions.net/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~ppc ~sparc" -IUSE="static doc python" - -RDEPEND="virtual/libc" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )\ - python? ( dev-lang/python dev-lang/swig )" - -src_compile(){ - cd ${S} - libtoolize --force - - local myconf - myconf="" - use static && myconf="$(use_enable static)" - - econf ${myconf} || die "Error: econf failed" - - emake || die "Error: emake failed" - if use python; then - einfo "Compilling PyGEOS" - cd ${S}/swig/python - swig -c++ -python -modern -o geos_wrap.cxx ../geos.i - python setup.py build - fi -} - -src_test() { - cd ${S} - make check || die "Tring make check without success." -# I think this test must be made after the PyGEOS installation -# if use python; then -# cd ${S}/swig/python -# python tests/runtests.py -v -# fi -} - -src_install(){ - into /usr - einstall - dodoc AUTHORS COPYING INSTALL NEWS README TODO - if use doc; then - cd ${S}/doc - make doxygen-html - dohtml -r doxygen_docs/html/* - fi - if use python; then - einfo "Intalling PyGEOS" - cd ${S}/swig/python - python setup.py install --prefix="${D}/usr/" - insinto /usr/share/doc/${PF}/python - doins README.txt tests/*.py - insinto /usr/share/doc/${PF}/python/cases - doins tests/cases/* - fi -} - diff --git a/sci-libs/geos/metadata.xml b/sci-libs/geos/metadata.xml deleted file mode 100644 index e440ee8fa..000000000 --- a/sci-libs/geos/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>sci</herd> - <maintainer> - <email>lucas.chiesa@gmail.com</email> - <name>Lucas Chiesa</name> - </maintainer> - <longdescription lang="en"> - GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology - Suite (JTS). As such, it aims to contain the complete functionality of - JTS in C++. This includes all the OpenGIS "Simple Features for SQL" - spatial predicate functions and spatial operators, as well as specific - JTS topology functions such as IsValid(). - </longdescription> -</pkgmetadata> |