diff options
author | 2011-01-17 02:33:15 +0000 | |
---|---|---|
committer | 2011-01-17 02:33:15 +0000 | |
commit | 0d91040ebad09e4c35f9d137f8897ea36c8ab03f (patch) | |
tree | 2c19822b12b8ab3ead34b280fbec61f077db8143 /app-text/xmlstarlet | |
parent | app-editors/jext: removed unused file (diff) | |
download | gentoo-2-0d91040ebad09e4c35f9d137f8897ea36c8ab03f.tar.gz gentoo-2-0d91040ebad09e4c35f9d137f8897ea36c8ab03f.tar.bz2 gentoo-2-0d91040ebad09e4c35f9d137f8897ea36c8ab03f.zip |
app-text/xmlstarlet: Bump to 1.0.4
(Portage version: 2.1.9.31/cvs/Linux x86_64)
Diffstat (limited to 'app-text/xmlstarlet')
-rw-r--r-- | app-text/xmlstarlet/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/xmlstarlet/xmlstarlet-1.0.4.ebuild | 35 |
2 files changed, 43 insertions, 2 deletions
diff --git a/app-text/xmlstarlet/ChangeLog b/app-text/xmlstarlet/ChangeLog index b91f69ad667f..d0364cfaf615 100644 --- a/app-text/xmlstarlet/ChangeLog +++ b/app-text/xmlstarlet/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/xmlstarlet -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/ChangeLog,v 1.20 2010/11/27 11:16:34 sping Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/ChangeLog,v 1.21 2011/01/17 02:33:15 sping Exp $ + +*xmlstarlet-1.0.4 (17 Jan 2011) + + 17 Jan 2011; Sebastian Pipping <sping@gentoo.org> +xmlstarlet-1.0.4.ebuild: + Bump to 1.0.4: new configure option --disable-static-libs, new test suite + integration through "make check" *xmlstarlet-1.0.3 (27 Nov 2010) diff --git a/app-text/xmlstarlet/xmlstarlet-1.0.4.ebuild b/app-text/xmlstarlet/xmlstarlet-1.0.4.ebuild new file mode 100644 index 000000000000..d1e1d766a639 --- /dev/null +++ b/app-text/xmlstarlet/xmlstarlet-1.0.4.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.4.ebuild,v 1.1 2011/01/17 02:33:15 sping Exp $ + +EAPI="2" + +DESCRIPTION="A set of tools to transform, query, validate, and edit XML documents" +HOMEPAGE="http://xmlstar.sourceforge.net/" +SRC_URI="mirror://sourceforge/xmlstar/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +RDEPEND=">=dev-libs/libxml2-2.6.12 + >=dev-libs/libxslt-1.1.9 + dev-libs/libgcrypt + virtual/libiconv" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + econf --disable-static-libs +} + +src_install() { + make DESTDIR="${D}" install || die "Installation failed" + + dosym /usr/bin/xml /usr/bin/xmlstarlet || die + + dodoc AUTHORS ChangeLog README TODO || die + dohtml -r doc || die +} |