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/app-text/libwps/libwps-0.2.2.ebuild

40 lines
876 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.2.2.ebuild,v 1.6 2011/10/21 13:40:59 phajdan.jr Exp $
EAPI="4"
inherit autotools
DESCRIPTION="Microsoft Works file word processor format import filter library"
HOMEPAGE="http://libwps.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug"
RDEPEND="app-text/libwpd:0.9"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen[-nodot] )
"
src_prepare() {
sed -i -e 's: -Werror::' configure.in || die
eautoreconf
}
src_configure() {
econf \
--disable-static \
--docdir=/usr/share/doc/${PF} \
$(use_with doc docs) \
$(use_enable debug)
}
src_install() {
default
find "${ED}" -name '*.la' -delete
}