blob: 7b00f393e57d5bae7f7ba943d64003e34cd35279 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.1.4.ebuild,v 1.9 2004/09/03 15:35:19 pvdabeel Exp $
IUSE="opengl debug nptl"
inherit eutils
DESCRIPTION="C++ user interface toolkit for X and OpenGL."
HOMEPAGE="http://www.fltk.org"
SRC_URI="ftp://ftp.easysw.com/pub/fltk/${PV}/${P}-source.tar.bz2"
KEYWORDS="x86 ppc sparc alpha amd64 ~mips"
LICENSE="FLTK | GPL-2"
PV_MAJOR=${PV/.*/}
PV_MINOR=${PV#${PV_MAJOR}.}
PV_MINOR=${PV_MINOR/.*}
SLOT="${PV_MAJOR}.${PV_MINOR}"
INCDIR=/usr/include/fltk-${SLOT}
LIBDIR=/usr/lib/fltk-${SLOT}
DEPEND="virtual/x11
virtual/xft
media-libs/libpng
media-libs/jpeg
opengl? ( virtual/opengl )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/libs.diff || die "patch failed"
}
src_compile() {
local myconf
myconf="--enable-shared --enable-xdbe --enable-xft --enable-static"
use debug && myconf="${myconf} --enable-debug"
use opengl || myconf="${myconf} --disable-gl"
# The fltk threading code doesn't work with nptl
# See bug #26569
use nptl && myconf="${myconf} --disable-threads" \
|| myconf="${myconf} --enable-threads"
# needed for glibc-2.3.1 (as far as i can test)
# otherwise libstdc++ won't be linked. #17894 and #15572
# doesn't happen for glibc-2.3.2 - <liquidx@gentoo.org>
export CXX="g++"
export CC="g++"
# bug #19894
export C_INCLUDE_PATH="${C_INCLUDE_PATH}:/usr/include/freetype2"
export CPLUS_INCLUDE_PATH="${CPLUS_INCLUDE_PATH}:/usr/include/freetype2"
econf \
--includedir=${INCDIR}\
--libdir=${LIBDIR} \
${myconf} || die "Configuration Failed"
emake || die "Parallel Make Failed"
}
src_install() {
einstall \
includedir=${D}${INCDIR} \
libdir=${D}${LIBDIR} || die "Installation Failed"
ranlib ${D}${LIBDIR}/*.a
dodoc CHANGES COPYING README
echo "LDPATH=${LIBDIR}" > 99fltk-${SLOT}
insinto /etc/env.d
doins 99fltk-${SLOT}
dodir /usr/share/doc/${P}/html
mv ${D}/usr/share/doc/fltk/* ${D}/usr/share/doc/${PF}/html
rmdir ${D}/usr/share/doc/fltk
}
|