blob: fd213727492d7522b9ec38b1e3a36bc76b2a6192 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libwmf/libwmf-0.2.8.3-r1.ebuild,v 1.10 2006/07/07 06:43:59 corsair Exp $
inherit libtool
#The configure script finds the 5.50 ghostscript Fontmap file while run.
#This will probably work, especially since the real one (6.50) in this case
#is empty. However beware in case there is any trouble
DESCRIPTION="library for converting WMF files"
HOMEPAGE="http://wvware.sourceforge.net/"
SRC_URI="mirror://sourceforge/wvware/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ppc64 ~sh ~sparc ~x86"
IUSE="jpeg X expat xml debug doc gtk"
RDEPEND="virtual/ghostscript
xml? ( !expat? ( dev-libs/libxml2 ) )
expat? ( dev-libs/expat )
>=media-libs/freetype-2.0.1
sys-libs/zlib
media-libs/libpng
jpeg? ( media-libs/jpeg )
X? ( || ( (
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
)
virtual/x11
)
)
gtk? ( >=x11-libs/gtk+-2.1.2 ) "
DEPEND="$RDEPEND
dev-util/pkgconfig
X? ( || ( (
x11-libs/libXt
x11-libs/libXpm
)
virtual/x11
)
)"
# plotutils are not really supported yet, so looks like that's it
src_unpack() {
unpack ${A}
cd ${S}
if ! use doc; then
sed -e 's:doc::' -i Makefile.am
automake || die "automake filed"
fi
if ! use gtk; then
sed -e 's:@LIBWMF_GDK_PIXBUF_TRUE@:#:' -i src/Makefile.in
fi
}
src_compile() {
# Have to use the reverse-deps patch to prevent libwmf from
# linking an older installed version of libwmflite
#still needed !? <vapier@gentoo.org>
#elibtoolize --reverse-deps
if use expat && use xml; then
einfo "You can specify only one USE flag from expat and xml, to use expat"
einfo "or libxml2, respectively."
einfo
einfo "You have both flags enabled, we will default to expat (like autocheck does)."
myconf="${myconf} --with-expat --without-libxml2"
else
myconf="${myconf} $(use_with expat) $(use_with xml libxml2)"
fi
econf \
$(use_enable debug) \
$(use_with jpeg) \
$(use_with X x) \
${myconf} \
--with-gsfontdir=/usr/share/ghostscript/fonts \
--with-fontdir=/usr/share/libwmf/fonts/ \
--with-docdir=/usr/share/doc/${PF} \
|| die "./configure failed"
emake || die
}
src_install() {
make install \
DESTDIR="${D}" \
fontdir=/usr/share/libwmf/fonts \
wmfonedocdir=/usr/share/doc/${PF}/caolan \
wmfdocdir=/usr/share/doc/${PF} \
|| die
dodoc README AUTHORS CREDITS ChangeLog NEWS TODO
}
|