summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2017-12-17 16:33:14 +0300
committerMikle Kolyada <zlogene@gentoo.org>2017-12-17 16:33:14 +0300
commit7b2cd4419b2b0fd3a489ceabaef84755596a878e (patch)
tree7e85a3620f15fe9bda7f44af70ad8f6a1af05b38 /app-text/sablotron
parentapp-text/sablotron: alpha/amd64/arm/ia64 stable wrt bug #640516 (diff)
downloadgentoo-7b2cd4419b2b0fd3a489ceabaef84755596a878e.tar.gz
gentoo-7b2cd4419b2b0fd3a489ceabaef84755596a878e.tar.bz2
gentoo-7b2cd4419b2b0fd3a489ceabaef84755596a878e.zip
app-text/sablotron: Drop old
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'app-text/sablotron')
-rw-r--r--app-text/sablotron/sablotron-1.0.3.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/app-text/sablotron/sablotron-1.0.3.ebuild b/app-text/sablotron/sablotron-1.0.3.ebuild
deleted file mode 100644
index c9118189fdc2..000000000000
--- a/app-text/sablotron/sablotron-1.0.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-
-inherit base autotools
-
-MY_PN="Sablot"
-MY_P="${MY_PN}-${PV}"
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="An XSLT Parser in C++"
-HOMEPAGE="http://www.gingerall.org/sablotron.html"
-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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="perl"
-
-RDEPEND=">=dev-libs/expat-1.95.6-r1"
-DEPEND="${RDEPEND}
- >=dev-perl/XML-Parser-2.3"
-
-PATCHES=( "${FILESDIR}/1.0.3-libsablot-expat.patch" )
-
-src_prepare() {
- base_src_prepare
- sed -i configure.in -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
- eautoreconf
- elibtoolize
-}
-
-src_configure() {
- econf \
- $(use_enable perl perlconnect) \
- --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "Install failed"
-
- dodoc README README_JS RELEASE src/TODO
-}