# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-www/gnash/gnash-0.8.0.ebuild,v 1.6 2007/07/23 14:36:24 drac Exp $ WANT_AUTOMAKE="1.9" inherit nsplugins kde-functions qt3 multilib flag-o-matic autotools set-kdedir eutils DESCRIPTION="Gnash is a GNU Flash movie player that supports many SWF v7 features" HOMEPAGE="http://www.gnu.org/software/gnash" SRC_URI="mirror://gnu/${PN}/${PV}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" IUSE="agg gstreamer ffmpeg kde mad nsplugin xml video_cards_i810" #dmalloc, broken see bug 142939 #dmalloc? ( dev-libs/dmalloc ) # $(use_enable dmalloc) \ RDEPEND=" xml? ( dev-libs/libxml2 ) sys-libs/zlib media-libs/jpeg media-libs/libogg media-libs/libpng net-misc/curl mad? ( media-libs/libmad ) ffmpeg? ( media-video/ffmpeg ) gstreamer? ( media-libs/gstreamer || ( media-plugins/gst-plugins-ffmpeg media-plugins/gst-plugins-mad media-plugins/gst-plugins-lame ) ) !gstreamer? ( media-libs/libsdl ) dev-libs/boost x11-libs/libX11 x11-libs/libXi x11-libs/libXmu x11-libs/libXt x11-proto/xproto dev-libs/atk dev-libs/glib >x11-libs/gtk+-2 x11-libs/pango !agg? ( virtual/opengl x11-libs/gtkglext ) kde? ( kde-base/kdelibs ) agg? ( x11-libs/agg )" #cairo? ( x11-libs/cairo ) DEPEND="${RDEPEND} dev-util/pkgconfig" pkg_setup() { if use agg && use kde; then eerror "Building klash with the agg based renderer is not supported" eerror "Please USE -kde or -agg" die "kde and agg not supported at the same time" fi if has_version ' has no controls, we do not USE it #$(use_enable gtk glext) with USE=-gtk, fails to detect gtkglext, bug 135010 #--enable-media=gst||ffmpeg||mad if use mad && use !ffmpeg && use !gstreamer; then myconf="${myconf} --enable-media=mad" fi if use gstreamer && use !ffmpeg; then myconf="${myconf} --enable-media=gst" fi if use ffmpeg; then myconf="${myconf} --enable-media=ffmpeg" fi if use kde; then myconf="${myconf} --enable-klash --with-qt-incl=${QTDIR}/include --with-qt-lib=${QTDIR}/$(get_libdir)" else myconf="${myconf} --disable-klash" fi econf \ $(use_enable nsplugin plugin) \ $(use_enable xml) \ $(use_enable video_cards_i810 i810-lod-bias) \ --without-gcc-arch --disable-debugger \ ${myconf} || die "econf failed" emake -j1 || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" use nsplugin && inst_plugin /opt/netscape/plugins/libgnashplugin.so \ || rm -rf "${D}/opt" dodoc AUTHORS ChangeLog NEWS README } pkg_postinst() { ewarn "ALPHA" ewarn "gnash is still in heavy development" ewarn "please report gnash bugs upstream to the gnash devs" }