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/wv2/wv2-0.4.2-r2.ebuild

40 lines
821 B

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils flag-o-matic
DESCRIPTION="Excellent MS Word filter lib, used in most Office suites"
HOMEPAGE="http://wvware.sourceforge.net"
SRC_URI="mirror://sourceforge/wvware/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
IUSE="zlib"
RDEPEND="
dev-libs/glib
>=gnome-extra/libgsf-1.8:=
virtual/libiconv
zlib? ( sys-libs/zlib )"
DEPEND="
${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-glib.patch
"${FILESDIR}"/${P}-libgsf.patch
)
DOCS=( AUTHORS ChangeLog README RELEASE THANKS TODO )
src_configure() {
# due to ICU 59 requiring C++11 now
append-cxxflags -std=c++11
local mycmakeargs=(
-DWITH_ZLIB=$(usex zlib)
)
cmake-utils_src_configure
}