summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Arnold <nerdboy@gentoo.org>2006-05-25 19:18:55 +0000
committerSteve Arnold <nerdboy@gentoo.org>2006-05-25 19:18:55 +0000
commitcdaee42aebdc172af592e6bba399c271b1b52957 (patch)
treefcc9c4c5bd38d88dd53f2ca702fba90f877e7355 /sci-libs/geos/geos-2.1.1.ebuild
parentoverdue stable bumps, added newest version, removed oldest (diff)
downloadhistorical-cdaee42aebdc172af592e6bba399c271b1b52957.tar.gz
historical-cdaee42aebdc172af592e6bba399c271b1b52957.tar.bz2
historical-cdaee42aebdc172af592e6bba399c271b1b52957.zip
overdue stable bumps, added newest version, removed oldest
Package-Manager: portage-2.1_rc1-r3
Diffstat (limited to 'sci-libs/geos/geos-2.1.1.ebuild')
-rw-r--r--sci-libs/geos/geos-2.1.1.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/sci-libs/geos/geos-2.1.1.ebuild b/sci-libs/geos/geos-2.1.1.ebuild
deleted file mode 100644
index c079e7622db0..000000000000
--- a/sci-libs/geos/geos-2.1.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-2.1.1.ebuild,v 1.6 2005/09/11 03:41:16 nerdboy Exp $
-
-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"
-
-RDEPEND="virtual/libc"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-multilib.patch
-}
-
-src_compile() {
- econf $(use_enable static) || die "Error: econf failed"
- emake || die "Error: emake failed"
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-
- dodoc AUTHORS INSTALL NEWS README TODO
- if use doc; then
- cd ${S}/doc
- make doxygen-html
- dohtml -r doxygen_docs/html/*
- fi
-}
-
-src_test() {
- make check || die "Tring make check without success."
-}