diff options
author | Sam James <sam@gentoo.org> | 2021-03-16 18:34:34 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-16 19:22:24 +0000 |
commit | 99b53420d538c3b2bfaac4c95c358aa39b19a5df (patch) | |
tree | a296eb3c81f760a02f5cfcbea5a9645233f6a908 /app-text/sablotron | |
parent | app-text/par: drop 1.52-r1 (diff) | |
download | gentoo-99b53420d538c3b2bfaac4c95c358aa39b19a5df.tar.gz gentoo-99b53420d538c3b2bfaac4c95c358aa39b19a5df.tar.bz2 gentoo-99b53420d538c3b2bfaac4c95c358aa39b19a5df.zip |
app-text/sablotron: drop 1.0.3-r1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-text/sablotron')
-rw-r--r-- | app-text/sablotron/sablotron-1.0.3-r1.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/app-text/sablotron/sablotron-1.0.3-r1.ebuild b/app-text/sablotron/sablotron-1.0.3-r1.ebuild deleted file mode 100644 index 2ab9d95c096d..000000000000 --- a/app-text/sablotron/sablotron-1.0.3-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit 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 sparc x86 ~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() { - default - 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 - dodoc README README_JS RELEASE src/TODO -} |