43 lines
920 B
Bash
43 lines
920 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.2.6.ebuild,v 1.4 2012/05/28 12:01:45 scarabeus Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit base
|
|
|
|
DESCRIPTION="Microsoft Works file word processor format import filter library"
|
|
HOMEPAGE="http://libwps.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
|
|
IUSE="doc debug static-libs"
|
|
|
|
RDEPEND="
|
|
app-text/libwpd:0.9
|
|
dev-libs/boost
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
doc? ( app-doc/doxygen )
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-debug.patch"
|
|
)
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-werror \
|
|
$(use_enable static-libs static) \
|
|
--docdir=/usr/share/doc/${PF} \
|
|
$(use_with doc docs) \
|
|
$(use_enable debug)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}" -name '*.la' -delete
|
|
}
|