40 lines
940 B
Bash
40 lines
940 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="4"
|
|
|
|
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="~alpha amd64 ~arm ~hppa ~ia64 ppc ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-libs/libxml2-2.6.27
|
|
>=dev-libs/libxslt-1.1.9
|
|
dev-libs/libgcrypt:0
|
|
virtual/libiconv"
|
|
|
|
DEPEND="${RDEPEND}
|
|
sys-apps/sed"
|
|
|
|
src_configure() {
|
|
# NOTE: Fully built documentation is already shipped with the tarball:
|
|
# - doc/xmlstarlet-ug.{pdf,ps,html}
|
|
# - doc/xmlstarlet.txt
|
|
# - doc/xmlstarlet.1
|
|
econf \
|
|
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
|
|
--disable-build-docs \
|
|
--disable-static-libs \
|
|
--disable-silent-rules
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
dosym xml /usr/bin/xmlstarlet
|
|
}
|