Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 73460 Details for
Bug 113410
REAL FIX for pango_x_get_context stuff for wxGTK-2.4.2-r4 (audacity related bug)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
wxGTK-2.4.2-r4.ebuild
wxGTK-2.4.2-r4.ebuild (text/plain), 4.72 KB, created by
Alexey Maximov
on 2005-11-23 16:09:12 UTC
(
hide
)
Description:
wxGTK-2.4.2-r4.ebuild
Filename:
MIME Type:
Creator:
Alexey Maximov
Created:
2005-11-23 16:09:12 UTC
Size:
4.72 KB
patch
obsolete
># Copyright 1999-2005 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/wxGTK-2.4.2-r3.ebuild,v 1.17 2005/07/07 03:41:24 vapier Exp $ > >inherit flag-o-matic eutils gnuconfig multilib toolchain-funcs > >DESCRIPTION="GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit" >HOMEPAGE="http://www.wxwidgets.org/" >SRC_URI="mirror://sourceforge/wxwindows/${P}.tar.bz2" > >LICENSE="wxWinLL-3" >SLOT="2.4" >KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86" >IUSE="debug wxgtk1 gtk2 odbc opengl unicode" > >RDEPEND="virtual/x11 > sys-libs/zlib > media-libs/libpng > media-libs/jpeg > media-libs/tiff > !unicode? ( odbc? ( dev-db/unixODBC ) ) > opengl? ( virtual/opengl ) > gtk2? ( >=x11-libs/gtk+-2.0 >=dev-libs/glib-2.0 ) > wxgtk1? ( =x11-libs/gtk+-1.2* =dev-libs/glib-1.2* )" >DEPEND="${RDEPEND} > gtk2? ( dev-util/pkgconfig )" > ># Note 1: Gettext is not runtime dependency even if nls? because wxWidgets ># has its own implementation of it ># Note 2: PCX support is enabled if the correct libraries are detected. ># There is no USE flag for this. > >src_unpack() { > unpack ${A} > epatch ${FILESDIR}/${PN}-2.4.2-menu.cpp.patch || \ > die "Failed to patch menu.cpp" > # fix xml contrib makefile problems > EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-2.4.1-contrib.patch > > # fix pango_x_get_context stuff > EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-2.4.2-pango_fix.patch > > # disable contrib/src/animate > EPATCH_OPTS="-d ${S}/contrib/src" epatch ${FILESDIR}/${PN}-2.4.2-contrib_animate.patch > use amd64 && EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-2.4.2-cleanup.patch > gnuconfig_update >} > >pkg_setup() { > einfo "New in >=wxGTK-2.4.2-r2:" > einfo "------------------------" > einfo "You can now have gtk, gtk2 and unicode versions installed" > einfo "simultaneously. Use wxgtk1 if you would like a gtk1 lib." > einfo "Put gtk2 and unicode in your USE flags to get those" > einfo "additional versions." > einfo "NOTE:" > einfo "You can also get debug versions of any of those, but not debug" > einfo "and normal installed at the same time." > if use unicode; then > ! use gtk2 && die "You must put gtk2 in your USE if you need unicode support" > fi > if ! use wxgtk1 && ! use gtk2; then > die "You must have at least gtk2 or wxgtk1 in your USE" > fi >} > >src_compile() { > local myconf > export LANG='C' > filter-flags -fvisibility-inlines-hidden > myconf="${myconf} `use_with opengl`" > myconf="${myconf} --with-gtk" > myconf="${myconf} `use_enable debug`" > myconf="${myconf} --libdir=/usr/$(get_libdir)" > > if use wxgtk1 ; then > mkdir build_gtk > einfo "Building gtk version" > cd build_gtk > ../configure ${myconf} `use_with odbc`\ > --host=${CHOST} \ > --prefix=/usr \ > --infodir=/usr/share/info \ > --mandir=/usr/share/man || die "./configure failed" > emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" || die "make gtk failed" > cd contrib/src > emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" || die "make gtk contrib failed" > fi > cd ${S} > > if use gtk2 ; then > myconf="${myconf} --enable-gtk2" > einfo "Building gtk2 version" > mkdir build_gtk2 > cd build_gtk2 > ../configure ${myconf} `use_with odbc` \ > --host=${CHOST} \ > --prefix=/usr \ > --infodir=/usr/share/info \ > --mandir=/usr/share/man || die "./configure failed" > emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" || die "make gtk2 failed" > cd contrib/src > emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" || die "make gtk2 contrib failed" > > cd ${S} > > if use unicode ; then > myconf="${myconf} --enable-unicode" > einfo "Building unicode version" > mkdir build_unicode > cd build_unicode > ../configure ${myconf} \ > --host=${CHOST} \ > --prefix=/usr \ > --infodir=/usr/share/info \ > --mandir=/usr/share/man || die "./configure failed" > > emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" || die "make unicode failed" > > cd contrib/src > emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" || die "make unicode contrib failed" > fi > fi >} > >src_install() { > if [ -e ${S}/build_gtk ] ; then > cd ${S}/build_gtk > einstall libdir="${D}/usr/$(get_libdir)" || die "install gtk failed" > cd contrib/src > einstall libdir="${D}/usr/$(get_libdir)" || die "install gtk contrib failed" > fi > > if [ -e ${S}/build_gtk2 ] ; then > cd ${S}/build_gtk2 > einstall libdir="${D}/usr/$(get_libdir)" || die "install gtk2 failed" > cd contrib/src > einstall libdir="${D}/usr/$(get_libdir)" || die "install gtk2 contrib failed" > fi > > if [ -e ${S}/build_unicode ] ; then > cd ${S}/build_unicode > einstall libdir="${D}/usr/$(get_libdir)" || die "install unicode failed" > cd contrib/src > einstall libdir="${D}/usr/$(get_libdir)" || die "install unicode contrib failed" > fi > > # twp 20040830 wxGTK-2.4.2 forgets to install htmlproc.h; copy it manually > insinto /usr/include/wx/html > doins ${S}/include/wx/html/htmlproc.h > > cd ${S} > dodoc *.txt >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 113410
: 73460 |
73461