You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/mxml/mxml-2.10.ebuild

58 lines
1.3 KiB

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DESCRIPTION="Small XML parsing library to read XML and XML-like data files"
HOMEPAGE="http://www.minixml.org/"
SRC_URI="http://www.msweet.org/files/project3/${P}.tar.gz"
LICENSE="Mini-XML"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
IUSE="threads static-libs"
DEPEND="virtual/pkgconfig"
RDEPEND=""
src_prepare() {
default
sed -e "s:755 -s:755:" \
-e "/^TARGETS/s: testmxml::" \
-e 's:$(DSO) $(DSOFLAGS) -o libmxml.so.1.5 $(LIBOBJS):$(DSO) $(DSOFLAGS) $(LDFLAGS) -o libmxml.so.1.5 $(LIBOBJS):' \
-i Makefile.in || die
sed -i -e 's:OPTIM="-Os -g":OPTIM="":' configure.ac || die
rm configure || die
#eautoreconf
eautoconf
}
src_configure() {
econf \
--enable-shared \
--libdir="/usr/$(get_libdir)" \
--with-docdir="/usr/share/doc/${PF}/html" \
$(use_enable threads)
}
src_compile() {
emake libmxml.so.1.5 mxmldoc doc/mxml.man
}
src_install() {
emake DSTROOT="${ED}" install
if ! use static-libs; then
rm "${ED}"/usr/$(get_libdir)/libmxml.a || die
fi
dodoc ANNOUNCEMENT CHANGES README
rm "${ED}/usr/share/doc/${PF}/html/"{CHANGES,COPYING,README} || die
}
src_test() {
emake testmxml
}