blob: 7c434f2d340ac216f41da15acab39ac3245432de (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-2.0_pre6403.ebuild,v 1.1 2008/10/21 13:50:51 yngwin Exp $
EAPI="1"
inherit multilib autotools flag-o-matic
MY_P=${P/_pre/.x-r}
DESCRIPTION="C++ user interface toolkit for X and OpenGL"
HOMEPAGE="http://www.fltk.org/"
SRC_URI="mirror://easysw/fltk/snapshots/${MY_P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
LICENSE="FLTK LGPL-2"
SLOT="2"
IUSE="cairo debug doc +jpeg +png opengl +xft xinerama zlib"
RDEPEND="x11-libs/libXext
x11-libs/libICE
x11-libs/libSM
x11-libs/libXt
xft? ( virtual/xft )
png? ( media-libs/libpng )
jpeg? ( media-libs/jpeg )
opengl? ( virtual/opengl )
cairo? ( x11-libs/cairo )
xinerama? ( x11-libs/libXinerama )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
x11-proto/xextproto
xinerama? ( x11-proto/xineramaproto )
doc? ( app-doc/doxygen )"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/fltk2-config.patch
use opengl || epatch "${FILESDIR}"/fltk2-nogl.patch
eautoreconf
}
src_compile() {
append-flags -fno-strict-aliasing
CPPFLAGS="${CPPFLAGS} -DFLTK_DOCDIR=\"/usr/share/doc/${PF}\"" \
econf --enable-shared --enable-threads \
$(use_enable debug) \
$(use_enable xft) \
$(use_enable opengl gl) \
$(use_enable cairo) \
$(use_enable jpeg) \
$(use_enable png) \
$(use_enable xinerama) \
$(use_enable zlib) \
|| die "configure failed"
emake || die "make failed"
use doc && make -C documentation
}
src_install() {
einstall includedir="${D}/usr/include" \
libdir="${D}/usr/$(get_libdir)/fltk" || die "install failed"
if use doc; then
emake -C documentation install || die "install documentation failed"
dohtml documentation/html
fi
dodoc CHANGES CREDITS README* TODO
echo "LDPATH=/usr/$(get_libdir)/fltk" > 99fltk-${SLOT}
echo "FLTK_DOCDIR=/usr/share/doc/${PF}/html" >> 99fltk-${SLOT}
doenvd 99fltk-${SLOT}
}
|