blob: 9455897a8b905723972720175f764416dc51db62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/wv2/wv2-0.4.1.ebuild,v 1.1 2009/10/09 15:50:01 scarabeus Exp $
EAPI=1
inherit cmake-utils
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 ~x86-fbsd"
IUSE="zlib"
RDEPEND=">=gnome-extra/libgsf-1.8
media-libs/freetype:2
media-libs/libpng
media-gfx/imagemagick
virtual/libiconv
zlib? ( sys-libs/zlib )
"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/0.4.0-cmake.patch
)
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with zlib)
"
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
dodoc AUTHORS ChangeLog README RELEASE THANKS TODO || die "dodoc failed"
}
|