mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-08 14:15:07 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
39 lines
772 B
Bash
39 lines
772 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="C++ library to read and parse graphics in WPG"
|
|
HOMEPAGE="http://libwpg.sourceforge.net/libwpg.htm"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.xz"
|
|
|
|
LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
|
|
SLOT="0.3"
|
|
KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv x86"
|
|
IUSE="doc"
|
|
|
|
RDEPEND="
|
|
app-text/libwpd:0.10[tools]
|
|
dev-libs/librevenge
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
dev-libs/boost
|
|
"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
doc? ( app-text/doxygen )
|
|
"
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
--program-suffix=-${SLOT}
|
|
$(use_with doc docs)
|
|
)
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|