diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-05-29 13:42:56 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-05-29 13:42:56 +0000 |
commit | 90b02012b1ca896213d7195057ab34dc5fa56224 (patch) | |
tree | c38e75b36a00d63828ea6acc2cfee9da6dcbc7af /net-www/gnash | |
parent | gtkglext dep fix (diff) | |
download | historical-90b02012b1ca896213d7195057ab34dc5fa56224.tar.gz historical-90b02012b1ca896213d7195057ab34dc5fa56224.tar.bz2 historical-90b02012b1ca896213d7195057ab34dc5fa56224.zip |
gtkglext dep fix
Package-Manager: portage-2.1_rc3-r1
Diffstat (limited to 'net-www/gnash')
-rw-r--r-- | net-www/gnash/ChangeLog | 4 | ||||
-rw-r--r-- | net-www/gnash/gnash-0.7.1_p20060528.ebuild | 17 |
2 files changed, 16 insertions, 5 deletions
diff --git a/net-www/gnash/ChangeLog b/net-www/gnash/ChangeLog index 2eb0bafe4b94..d62fa971d385 100644 --- a/net-www/gnash/ChangeLog +++ b/net-www/gnash/ChangeLog @@ -1,8 +1,8 @@ # ChangeLog for net-www/gnash # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/ChangeLog,v 1.10 2006/05/29 13:41:05 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/ChangeLog,v 1.11 2006/05/29 13:42:56 genstef Exp $ - 29 May 2006; <stefan@gentoo.org> ChangeLog: + 29 May 2006; <stefan@gentoo.org> gnash-0.7.1_p20060528.ebuild: gtkglext dep fix 29 May 2006; <stefan@gentoo.org> diff --git a/net-www/gnash/gnash-0.7.1_p20060528.ebuild b/net-www/gnash/gnash-0.7.1_p20060528.ebuild index 9156581f291e..907fb5d7a47f 100644 --- a/net-www/gnash/gnash-0.7.1_p20060528.ebuild +++ b/net-www/gnash/gnash-0.7.1_p20060528.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/gnash-0.7.1_p20060528.ebuild,v 1.2 2006/05/29 00:54:50 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/gnash-0.7.1_p20060528.ebuild,v 1.3 2006/05/29 13:42:56 genstef Exp $ inherit nsplugins kde-functions autotools @@ -26,6 +26,7 @@ RDEPEND="dmalloc? ( dev-libs/dmalloc ) media-libs/libpng media-libs/libsdl media-libs/sdl-mixer + x11-libs/gtkglext virtual/opengl || ( ( x11-libs/libX11 @@ -40,7 +41,6 @@ RDEPEND="dmalloc? ( dev-libs/dmalloc ) dev-libs/glib x11-libs/cairo >x11-libs/gtk+-2 - x11-libs/gtkglext x11-libs/pango )" @@ -69,6 +69,17 @@ src_compile() { myconf="${myconf} --enable-plugin --with-plugindir=/opt/netscape/plugins" fi + #--enable-renderer=engine Specify rendering engine: + # OpenGL (default) + # Cairo (experimental) + #cairo: does not compile, offers flash for non-accelerated gfx? + #if use cairo; then + # myconf="${myconf} --enable-renderer=cairo" + #fi + #--enable-gui=flavor Specify gui flavor: + # GTK + # SDL -> has no controls, we do not USE it + econf \ $(use_enable dmalloc) \ $(use_enable kde klash) \ @@ -85,7 +96,7 @@ src_install() { sed -i -e "s:-lXmu @inst_prefix_dir:-lXmu -L../backend/.libs -L../server/.libs -L../libgeometry/.libs -L../libbase/.libs -L. @inst_prefix_dir:" server/libgnashserver.la make DESTDIR=${D} install || die "make install failed" use nsplugin && inst_plugin /opt/netscape/plugins/libgnashplugin.so \ - || rm ${D}/opt/netscape/plugins/libgnashplugin.so + || rm -r ${D}/opt dodoc AUTHORS ChangeLog NEWS README } |