diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-12-13 19:47:29 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-12-13 19:47:29 +0000 |
commit | 6846589b063cd7707560e03c70396bbfecaafdb9 (patch) | |
tree | fa1bba3bf4b86190ca1aace2c5a4e43af328786d /x11-libs/wxGTK | |
parent | made zlib support mandatory (diff) | |
download | historical-6846589b063cd7707560e03c70396bbfecaafdb9.tar.gz historical-6846589b063cd7707560e03c70396bbfecaafdb9.tar.bz2 historical-6846589b063cd7707560e03c70396bbfecaafdb9.zip |
updated KEYWORDS
Diffstat (limited to 'x11-libs/wxGTK')
-rw-r--r-- | x11-libs/wxGTK/files/digest-wxGTK-2.2.9-r1 | 1 | ||||
-rw-r--r-- | x11-libs/wxGTK/files/digest-wxGTK-2.3.2-r2 | 1 | ||||
-rw-r--r-- | x11-libs/wxGTK/files/wxGTK-2.2.9.diff.gz | bin | 269 -> 0 bytes | |||
-rw-r--r-- | x11-libs/wxGTK/files/wxGTK-2.3.2.diff.gz | bin | 269 -> 0 bytes | |||
-rw-r--r-- | x11-libs/wxGTK/wxGTK-2.2.9-r1.ebuild | 91 | ||||
-rw-r--r-- | x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild | 79 | ||||
-rw-r--r-- | x11-libs/wxGTK/wxGTK-2.3.3.ebuild | 9 |
7 files changed, 3 insertions, 178 deletions
diff --git a/x11-libs/wxGTK/files/digest-wxGTK-2.2.9-r1 b/x11-libs/wxGTK/files/digest-wxGTK-2.2.9-r1 deleted file mode 100644 index 176a5207dbac..000000000000 --- a/x11-libs/wxGTK/files/digest-wxGTK-2.2.9-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 f9bf738050fca93e33a65081b1c55905 wxGTK-2.2.9.tar.bz2 3829283 diff --git a/x11-libs/wxGTK/files/digest-wxGTK-2.3.2-r2 b/x11-libs/wxGTK/files/digest-wxGTK-2.3.2-r2 deleted file mode 100644 index f6631916d46b..000000000000 --- a/x11-libs/wxGTK/files/digest-wxGTK-2.3.2-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 197e08767cde58ebc3996dd4b6fed905 wxGTK-2.3.2.tar.bz2 4710189 diff --git a/x11-libs/wxGTK/files/wxGTK-2.2.9.diff.gz b/x11-libs/wxGTK/files/wxGTK-2.2.9.diff.gz Binary files differdeleted file mode 100644 index 306ecb30ed47..000000000000 --- a/x11-libs/wxGTK/files/wxGTK-2.2.9.diff.gz +++ /dev/null diff --git a/x11-libs/wxGTK/files/wxGTK-2.3.2.diff.gz b/x11-libs/wxGTK/files/wxGTK-2.3.2.diff.gz Binary files differdeleted file mode 100644 index 306ecb30ed47..000000000000 --- a/x11-libs/wxGTK/files/wxGTK-2.3.2.diff.gz +++ /dev/null diff --git a/x11-libs/wxGTK/wxGTK-2.2.9-r1.ebuild b/x11-libs/wxGTK/wxGTK-2.2.9-r1.ebuild deleted file mode 100644 index c4e1abdb9ff2..000000000000 --- a/x11-libs/wxGTK/wxGTK-2.2.9-r1.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# 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.2.9-r1.ebuild,v 1.6 2002/12/09 04:41:49 manson Exp $ - -IUSE="gif nls odbc opengl" - - -S=${WORKDIR}/${P} - -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="GPL" - -SLOT="0" - -DEPEND="=x11-libs/gtk+-1.2* - dev-libs/libunicode - media-libs/libpng - media-libs/jpeg - media-libs/tiff - media-libs/netpbm - nls? ( sys-devel/gettext ) - odbc? ( dev-db/unixODBC ) - gif? ( media-libs/giflib ) - opengl? ( virtual/opengl )" - -#Possible future dependancies -# motif? ( x11-libs/openmotif ) -# ungif? ( media-libs/libungif ) - - -KEYWORDS="x86 -ppc -sparc " - -src_compile() { - - - #cp configure.in configure.in.orig - #sed '1610i\ /usr/include/freetype2 \\' configure.in.orig > configure.in - - - local myconf - #--with-gtk enabled by default, if you want to build against motif, - #replace --with-gtk with --with-motif and --without-gtk. You will - #also need openmotif installed. Unfortunately, the package build tools - #only support installation of one currently. - - myconf="--with-gtk" - - #Build static library too, shared library is enabled by default. - #Enable useful config options that don't have USE flags - myconf="$myconf --enable-static --with-zlib --with-unicode" - - #Note: png,jpeg,tiff,pnm, and 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. - - #configure options that have corresponding USE variable. - - use odbc && myconf="$myconf --with-odbc" #disabled by default - use gif || myconf="$myconf --disable-gif" #enabled by default - use opengl && myconf="$myconf --with-opengl" #disabled by default - - #apply the patch to get compiled with GCC-3.1 - gunzip < ${FILESDIR}/${P}.diff.gz | patch -p1 - - CFLAGS="${CFLAGS} -DZEXPORT=''" - CXXFLAGS="${CXXFLAGS} -DZEXPORT=''" - - econf ${myconf} || die "configuration failed" - - make || die "compilation failed" - -} - -src_install () { - - einstall || die "installation failed" - - dodoc CHANGES.txt COPYING.LIB INSTALL.txt \ - LICENCE.txt README.txt SYMBOLS.txt TODO.txt - -} - diff --git a/x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild b/x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild deleted file mode 100644 index 585689841d5e..000000000000 --- a/x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# 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.3.2-r2.ebuild,v 1.15 2002/12/09 04:41:49 manson Exp $ - -IUSE="nls odbc jpeg png opengl" - -S=${WORKDIR}/${P} - -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="2.3" -KEYWORDS="x86 ppc sparc " - -DEPEND="dev-libs/libunicode - media-libs/netpbm - media-libs/giflib - png? ( media-libs/libpng ) - jpeg? ( media-libs/jpeg ) - media-libs/tiff - odbc? ( dev-db/unixODBC ) - opengl? ( virtual/opengl ) - =x11-libs/gtk+-1.2*" -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 - - # Build static library too, shared library is enabled by default. - # Enable useful config options that don't have USE flags - # motif is not a supported build environment. forcing gtk - myconf="${myconf} --enable-static --with-zlib --with-unicode \ - --with-libtiff --with-gtk --enable-gif" - - #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 odbc \ - && myconf="${myconf} --with-odbc" \ - || myconf="${myconf} --without-odbc" - - use opengl \ - && myconf="${myconf} --with-opengl" \ - || myconf="${myconf} --without-opengl" - - use png \ - && myconf="${myconf} --with-libpng --enable-pnm" \ - || myconf="${myconf} --without-libpng --disable-pnm" - - use jpeg \ - && myconf="${myconf} --with-libjpeg" \ - || myconf="${myconf} --without-libjpeg" - - gunzip < ${FILESDIR}/${P}.diff.gz | patch -p1 - - econf ${myconf} || die "configuration failed" - - make || die "make failed" -} - -src_install() { - einstall || die - dodoc *.txt -} diff --git a/x11-libs/wxGTK/wxGTK-2.3.3.ebuild b/x11-libs/wxGTK/wxGTK-2.3.3.ebuild index a2fbcb9c4923..38586342c13b 100644 --- a/x11-libs/wxGTK/wxGTK-2.3.3.ebuild +++ b/x11-libs/wxGTK/wxGTK-2.3.3.ebuild @@ -1,10 +1,6 @@ # 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.3.3.ebuild,v 1.6 2002/12/13 19:45:36 vapier Exp $ - -IUSE="nls odbc jpeg png opengl motif gif tiff gtk X" - -S=${WORKDIR}/${P} +# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/wxGTK-2.3.3.ebuild,v 1.7 2002/12/13 19:47:29 vapier Exp $ DESCRIPTION="GTK+ version of wxWindows, a cross-platform C++ GUI toolkit." SRC_URI="mirror://sourceforge/wxwindows/${P}.tar.bz2" @@ -12,7 +8,8 @@ HOMEPAGE="http://www.wxwindows.org/" LICENSE="LGPL-2" SLOT="2.3" -KEYWORDS="~x86 ~ppc ~sparc " +KEYWORDS="x86 ppc sparc" +IUSE="nls odbc jpeg png opengl motif gif tiff gtk X" DEPEND="dev-libs/libunicode media-libs/netpbm |