summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2009-06-20 11:47:10 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2009-06-20 11:47:10 +0000
commite1e5f2bb4cb10d8ddbb0482df2ea7d7f388b0393 (patch)
treee7de903b2b24074c9df994daf8b941bf02974ed0 /app-text/sablotron
parentFix the fakegem installation on stable Ruby. (diff)
downloadgentoo-2-e1e5f2bb4cb10d8ddbb0482df2ea7d7f388b0393.tar.gz
gentoo-2-e1e5f2bb4cb10d8ddbb0482df2ea7d7f388b0393.tar.bz2
gentoo-2-e1e5f2bb4cb10d8ddbb0482df2ea7d7f388b0393.zip
Remove old version (goodbye mips).
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-text/sablotron')
-rw-r--r--app-text/sablotron/ChangeLog6
-rw-r--r--app-text/sablotron/sablotron-1.0.1.ebuild54
2 files changed, 5 insertions, 55 deletions
diff --git a/app-text/sablotron/ChangeLog b/app-text/sablotron/ChangeLog
index ec074965f117..c3fd5f82645b 100644
--- a/app-text/sablotron/ChangeLog
+++ b/app-text/sablotron/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/sablotron
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/ChangeLog,v 1.65 2009/06/19 21:40:17 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/ChangeLog,v 1.66 2009/06/20 11:47:10 flameeyes Exp $
+
+ 20 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+ -sablotron-1.0.1.ebuild:
+ Remove old version (goodbye mips).
19 Jun 2009; Brent Baude <ranger@gentoo.org> sablotron-1.0.3.ebuild:
stable ppc64, bug 272244
diff --git a/app-text/sablotron/sablotron-1.0.1.ebuild b/app-text/sablotron/sablotron-1.0.1.ebuild
deleted file mode 100644
index abd378026882..000000000000
--- a/app-text/sablotron/sablotron-1.0.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-1.0.1.ebuild,v 1.21 2008/01/25 19:17:14 grobian Exp $
-
-inherit libtool flag-o-matic
-
-MY_PN="Sablot"
-MY_P="${MY_PN}-${PV}"
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="An XSLT Parser in C++"
-HOMEPAGE="http://www.gingerall.com/charlie/ga/xml/p_sub.xml"
-SRC_URI="http://download-1.gingerall.cz/download/sablot/${MY_P}.tar.gz"
-
-# Sablotron can optionally be built under GPL, using MPL for now
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
-IUSE="doc perl"
-
-RDEPEND=">=dev-libs/expat-1.95.6-r1"
-DEPEND="${RDEPEND}
- doc? ( >=dev-perl/XML-Parser-2.3 )"
-
-DOCS="INSTALL README README_JS RELEASE src/TODO"
-
-src_compile() {
- local myconf=
-
- # Please do not remove, else we get references to PORTAGE_TMPDIR
- # in /usr/lib/libsablot.la ...
- elibtoolize
-
- use perl \
- && myconf="${myconf} --enable-perlconnect"
-
- use doc \
- && myconf="${myconf} --with-html-dir=${D}/usr/share/doc/${P}/html" \
- || myconf="${myconf} --without-html-dir"
-
- # rphillips, fixes bug #3876
- # this is fixed for me with apache2, but keeping it in here
- # for apache1 users and/or until some clever detection
- # is added <obz@gentoo.org>
- append-ldflags -lstdc++
-
- econf ${myconf} || die "Configure failed"
- emake || die "Make failed"
-}
-
-src_install() {
- einstall || die "Install failed"
- dodoc ${DOCS}
-}