diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-09-03 14:33:13 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-09-03 14:33:13 +0000 |
commit | 3db75a2907fa9705f62746b5d1530fcee8230498 (patch) | |
tree | a5ce26ace42478f908e82d40fe3c81f0f16e8702 /app-text/xmlstarlet/xmlstarlet-0.9.3.ebuild | |
parent | $(get_libdir)-ize kde.eclass (diff) | |
download | historical-3db75a2907fa9705f62746b5d1530fcee8230498.tar.gz historical-3db75a2907fa9705f62746b5d1530fcee8230498.tar.bz2 historical-3db75a2907fa9705f62746b5d1530fcee8230498.zip |
Initial import. Ebuild submitted by Anders Bruun Olsen <anders@bruun-olsen.net>, bug #34366.
Diffstat (limited to 'app-text/xmlstarlet/xmlstarlet-0.9.3.ebuild')
-rw-r--r-- | app-text/xmlstarlet/xmlstarlet-0.9.3.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-text/xmlstarlet/xmlstarlet-0.9.3.ebuild b/app-text/xmlstarlet/xmlstarlet-0.9.3.ebuild new file mode 100644 index 000000000000..81e02ff4711c --- /dev/null +++ b/app-text/xmlstarlet/xmlstarlet-0.9.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-0.9.3.ebuild,v 1.1 2004/09/03 14:33:13 usata Exp $ + +DESCRIPTION="XMLStarlet is a set of XML command line utilities" +HOMEPAGE="http://xmlstar.sourceforge.net/" +SRC_URI="mirror://sourceforge/xmlstar/${P}.tar.gz" + +LICENSE="MIT" + +SLOT="0" + +KEYWORDS="~x86" + +IUSE="" +DEPEND="dev-libs/libxml2 + dev-libs/libxslt" + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc AUTHORS ChangeLog NEWS README TODO + dohtml -r * +} + +src_test() { + cd tests + sh runTests || die "sh runTests failed." +} |