summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-03-22 10:20:43 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-03-22 10:20:43 +0000
commitad09022d071f1df30de819fe44642b67e3b91b01 (patch)
tree384702cbb3b767e328b7883bc24ca1ffc5cb93fd /sci-libs/geos
parentDelete older ebuild. (diff)
downloadgentoo-2-ad09022d071f1df30de819fe44642b67e3b91b01.tar.gz
gentoo-2-ad09022d071f1df30de819fe44642b67e3b91b01.tar.bz2
gentoo-2-ad09022d071f1df30de819fe44642b67e3b91b01.zip
Delete older ebuilds.
(Portage version: 2.2.0_alpha28_p4/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/geos')
-rw-r--r--sci-libs/geos/ChangeLog7
-rw-r--r--sci-libs/geos/files/geos-3.1.1-missing-includes.patch20
-rw-r--r--sci-libs/geos/geos-3.1.1.ebuild48
-rw-r--r--sci-libs/geos/geos-3.2.0-r1.ebuild86
-rw-r--r--sci-libs/geos/geos-3.2.0.ebuild51
5 files changed, 6 insertions, 206 deletions
diff --git a/sci-libs/geos/ChangeLog b/sci-libs/geos/ChangeLog
index 9cfc652d5c9c..7fdc164e6ace 100644
--- a/sci-libs/geos/ChangeLog
+++ b/sci-libs/geos/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-libs/geos
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.55 2011/03/12 13:49:00 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.56 2011/03/22 10:20:42 arfrever Exp $
+
+ 22 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -geos-3.1.1.ebuild, -files/geos-3.1.1-missing-includes.patch,
+ -geos-3.2.0.ebuild, -geos-3.2.0-r1.ebuild:
+ Delete.
12 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> geos-3.2.2.ebuild:
ppc64 stable wrt 354389
diff --git a/sci-libs/geos/files/geos-3.1.1-missing-includes.patch b/sci-libs/geos/files/geos-3.1.1-missing-includes.patch
deleted file mode 100644
index 2eaa625fee5d..000000000000
--- a/sci-libs/geos/files/geos-3.1.1-missing-includes.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- geos-3.1.1.orig/source/geomgraph/index/SegmentIntersector.cpp 2009-04-08 18:00:16.000000000 +0200
-+++ geos-3.1.1/source/geomgraph/index/SegmentIntersector.cpp 2009-09-29 15:46:49.012412357 +0200
-@@ -16,6 +16,7 @@
-
-
- #include <vector>
-+#include <stdlib.h>
-
- #include <geos/geomgraph/index/SegmentIntersector.h>
- #include <geos/geomgraph/Edge.h>
---- geos-3.1.1.orig/tests/xmltester/XMLTester.cpp 2009-04-08 18:00:36.000000000 +0200
-+++ geos-3.1.1/tests/xmltester/XMLTester.cpp 2009-09-29 15:46:23.718105044 +0200
-@@ -57,6 +57,7 @@
- #include <functional>
- #include <stdexcept>
- #include <cmath>
-+#include <algorithm>
-
- #ifdef _MSC_VER
- #include <windows.h>
diff --git a/sci-libs/geos/geos-3.1.1.ebuild b/sci-libs/geos/geos-3.1.1.ebuild
deleted file mode 100644
index 77fc04a3377c..000000000000
--- a/sci-libs/geos/geos-3.1.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.1.1.ebuild,v 1.11 2011/02/26 15:06:57 armin76 Exp $
-
-EAPI=2
-inherit eutils
-
-DESCRIPTION="Geometry engine library for Geographic Information Systems"
-HOMEPAGE="http://trac.osgeo.org/geos/"
-SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
-IUSE="doc python ruby"
-
-RDEPEND="ruby? ( =dev-lang/ruby-1.8* )
- python? ( virtual/python )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- ruby? ( dev-lang/swig )
- python? ( dev-lang/swig )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-missing-includes.patch
-}
-
-src_configure() {
- econf $(use_enable python) $(use_enable ruby)
-}
-
-src_compile() {
- emake || die "emake failed"
- if use doc; then
- cd "${S}/doc"
- emake doxygen-html || die "doc generation failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- rm -f "${D}"usr/lib*/python*/site-packages/geos/_geos.*a || die
- dodoc AUTHORS NEWS README TODO
- if use doc; then
- cd "${S}/doc"
- dohtml -r doxygen_docs/html/* || die
- fi
-}
diff --git a/sci-libs/geos/geos-3.2.0-r1.ebuild b/sci-libs/geos/geos-3.2.0-r1.ebuild
deleted file mode 100644
index ccc1e701e0a8..000000000000
--- a/sci-libs/geos/geos-3.2.0-r1.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.0-r1.ebuild,v 1.7 2011/02/26 15:06:57 armin76 Exp $
-
-EAPI=3
-
-PYTHON_DEPEND="python? 2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit autotools eutils python
-
-DESCRIPTION="Geometry engine library for Geographic Information Systems"
-HOMEPAGE="http://trac.osgeo.org/geos/"
-SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
-IUSE="doc python ruby"
-
-RDEPEND="ruby? ( =dev-lang/ruby-1.8* )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- ruby? ( dev-lang/swig )
- python? ( dev-lang/swig )"
-
-pkg_setup() {
- if use python; then
- python_pkg_setup
- fi
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${PV}-multipy.patch \
- "${FILESDIR}"/${PV}-swig2.0.patch \
- "${FILESDIR}"/${PV}-python.patch \
- "${FILESDIR}"/${PV}-darwin.patch
- eautoreconf
- echo "#!${EPREFIX}/bin/bash" > py-compile
-}
-
-src_configure() {
- econf $(use_enable python) $(use_enable ruby)
-}
-
-src_compile() {
- emake || die "emake failed"
- if use python; then
- python_copy_sources swig/python
- building() {
- emake \
- PYTHON_CPPFLAGS="-I${EPREFIX}$(python_get_includedir)" \
- PYTHON_LDFLAGS="$(python_get_library -l)" \
- SWIG_PYTHON_CPPFLAGS="-I${EPREFIX}$(python_get_includedir)" \
- pyexecdir="${EPREFIX}$(python_get_sitedir)" \
- pythondir="${EPREFIX}$(python_get_sitedir)"
- }
- python_execute_function -s --source-dir swig/python building
- fi
- if use doc; then
- cd "${S}/doc"
- emake doxygen-html || die "doc generation failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- if use python; then
- python_copy_sources swig/python
- installation() {
- emake \
- DESTDIR="${D}" \
- pythondir="${EPREFIX}$(python_get_sitedir)" \
- pyexecdir="${EPREFIX}$(python_get_sitedir)" \
- install
- }
- python_execute_function -s --source-dir swig/python installation
- python_clean_installation_image
- fi
- dodoc AUTHORS NEWS README TODO || die
- if use doc; then
- cd "${S}/doc"
- dohtml -r doxygen_docs/html/* || die
- fi
-}
diff --git a/sci-libs/geos/geos-3.2.0.ebuild b/sci-libs/geos/geos-3.2.0.ebuild
deleted file mode 100644
index 00be2fcd8d67..000000000000
--- a/sci-libs/geos/geos-3.2.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.0.ebuild,v 1.5 2011/02/26 15:06:57 armin76 Exp $
-
-EAPI=2
-
-DESCRIPTION="Geometry engine library for Geographic Information Systems"
-HOMEPAGE="http://trac.osgeo.org/geos/"
-SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
-IUSE="doc python ruby"
-
-RDEPEND="ruby? ( =dev-lang/ruby-1.8* )
- python? ( virtual/python )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- ruby? ( dev-lang/swig )
- python? ( dev-lang/swig )"
-
-src_prepare() {
- # quick fix not worth for eautoreconf
- sed -i \
- -e 's|\/lib\/python|$libdir\/python|g' \
- -e 's|.get_python_lib(0|.get_python_lib(1|g' \
- configure || die
-}
-
-src_configure() {
- econf $(use_enable python) $(use_enable ruby)
-}
-
-src_compile() {
- emake || die "emake failed"
- if use doc; then
- cd "${S}/doc"
- emake doxygen-html || die "doc generation failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- rm -f "${D}"usr/lib*/python*/site-packages/geos/_geos.*a || die
- dodoc AUTHORS NEWS README TODO
- if use doc; then
- cd "${S}/doc"
- dohtml -r doxygen_docs/html/* || die
- fi
-}