From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 83C22139694 for ; Mon, 10 Apr 2017 19:56:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFB76E0E2F; Mon, 10 Apr 2017 19:56:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 71EAFE0E2D for ; Mon, 10 Apr 2017 19:55:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8D00A341659 for ; Mon, 10 Apr 2017 19:55:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01091742C for ; Mon, 10 Apr 2017 19:55:48 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1491854141.df1e8831e12258beaaa9d5910ca6ba25f113e62a.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/sablotron/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/sablotron/sablotron-1.0.3-r1.ebuild X-VCS-Directories: app-text/sablotron/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: df1e8831e12258beaaa9d5910ca6ba25f113e62a X-VCS-Branch: master Date: Mon, 10 Apr 2017 19:55:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e3342b60-3328-4876-97bf-bee1b928d338 X-Archives-Hash: 05d9f4fb068a6ac2e8db8bccea5c7b6f commit: df1e8831e12258beaaa9d5910ca6ba25f113e62a Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Apr 10 19:55:31 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Mon Apr 10 19:55:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df1e8831 app-text/sablotron: EAPI bump Package-Manager: Portage-2.3.5, Repoman-2.3.2 app-text/sablotron/sablotron-1.0.3-r1.ebuild | 44 ++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/app-text/sablotron/sablotron-1.0.3-r1.ebuild b/app-text/sablotron/sablotron-1.0.3-r1.ebuild new file mode 100644 index 00000000000..4bceeb87bd1 --- /dev/null +++ b/app-text/sablotron/sablotron-1.0.3-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2017 Gentoo Foundation +# 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 ~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() { + 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 +}