From c6fec9e6842bfd3a96e0f0358e4f0ecd345a3dfc Mon Sep 17 00:00:00 2001 From: cryos Date: Fri, 14 Apr 2006 19:58:45 +0000 Subject: Moved to the main portage tree. git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@166 32389bae-6d03-0410-99cf-db05cde120eb --- sci-libs/geos/ChangeLog | 54 --------------------------- sci-libs/geos/Manifest | 4 -- sci-libs/geos/files/digest-geos-2.2.1 | 1 - sci-libs/geos/geos-2.2.1.ebuild | 69 ----------------------------------- sci-libs/geos/metadata.xml | 16 -------- 5 files changed, 144 deletions(-) delete mode 100644 sci-libs/geos/ChangeLog delete mode 100644 sci-libs/geos/Manifest delete mode 100644 sci-libs/geos/files/digest-geos-2.2.1 delete mode 100644 sci-libs/geos/geos-2.2.1.ebuild delete mode 100644 sci-libs/geos/metadata.xml 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 geos-2.2.1.ebuild: - Version bump. Thanks to Etienne Dube - for his work. - - 21 Nov 2005; Simon Stelling geos-2.1.2.ebuild: - stable on amd64 - - 17 Sep 2005; Michael Hanselmann geos-2.1.2.ebuild: - Stable on ppc. - - 11 Sep 2005; Steve Arnold 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 +geos-2.1.4.ebuild: - Version bump. - - 23 Jul 2005; Steve Arnold 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 +geos-2.1.2.ebuild: - Version bump. - - 17 May 2005; Chris White geos-2.1.1.ebuild: - Marked ppc unstable. - - 14 May 2005; MATSUU Takuto - +files/geos-2.1.1-multilib.patch, geos-2.1.1.ebuild: - clean up ebuild. Fixed multilib problem. - - 14 May 2005; MATSUU Takuto geos-2.1.1.ebuild: - mark ~amd64 - -*geos-2.1.1 (11 May 2005) - - 11 May 2005; Masatomo Nakano +metadata.xml, - +geos-2.1.1.ebuild: - Initial import. Ebuild submitted by - Nathaniel C. Domingo , - Paul Sumner , - Jeff Kowalczyk , - MZM , - 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 @@ - - - - sci - - lucas.chiesa@gmail.com - Lucas Chiesa - - - 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(). - - -- cgit v1.2.3-18-g5258