blob: b4ccdac7343a7b5c2be91adfedbca2283cd13f46 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/wxGTK-2.4.0.ebuild,v 1.5 2003/01/22 03:22:32 raker Exp $
DESCRIPTION="GTK+ version of wxWindows, a cross-platform C++ GUI toolkit."
SRC_URI="mirror://sourceforge/wxwindows/${P}.tar.bz2"
HOMEPAGE="http://www.wxwindows.org/"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc"
IUSE="nls odbc opengl gtk gtk2"
DEPEND="virtual/glibc
virtual/x11
media-libs/netpbm
media-libs/giflib
media-libs/libpng
media-libs/jpeg
media-libs/tiff
sys-libs/zlib
odbc? ( dev-db/unixODBC )
opengl? ( virtual/opengl )
gtk? ( =x11-libs/gtk+-1.2* )
gtk2? ( >=x11-libs/gtk+-2.0* dev-libs/libunicode )"
RDEPEND="nls? ( sys-devel/gettext )"
pkg_setup() {
# xfree should not install these, remove until the fixed
# xfree is in main use.
rm -f /usr/X11R6/include/{zconf.h,zlib.h}
}
src_compile() {
local myconf
myconf="--enable-gif --with-libtiff --with-zlib --with-libpng \
--enable-png --with-libjpeg"
#Note: pcx image support enabled by default if found.
#Also, all wxWindows gui features are enabled by default. If you
#want to build a smaller library you can disable features by adding
#the appropriate flags to myconf (see INSTALL.txt).
#The build tools include a --with-freetype option, however it doesn't
#seem to be implemented in the source yet.
#confiure options that have corresponding USE variable.
use static \
&& myconf="${myconf} --enable-static" \
|| myconf="${myconf} --disable-static"
use odbc \
&& myconf="${myconf} --with-odbc" \
|| myconf="${myconf} --without-odbc"
use opengl \
&& myconf="${myconf} --with-opengl" \
|| myconf="${myconf} --without-opengl"
use X && myconf="${myconf} --with-x"
# here we specify our own preference of which toolkit to build ...
# but only gtk seems to work atm ...
# if [ `use gtk` ] ; then
myconf="${myconf} --with-gtk"
# elif [ `use X` ] ; then
# myconf="${myconf} --with-x11"
# elif [ `use motif` ] ; then
# myconf="${myconf} --with-motif"
# else
# eerror "You must have either gtk, X, or motif in your USE variable"
# die "could not specify toolkit"
# fi
use gtk2 && myconf="${myconf} --enable-gtk2 --enable-unicode"
econf ${myconf}
emake || die "make failed"
}
src_install() {
einstall
dodoc *.txt
}
|