diff options
Diffstat (limited to 'www-plugins/lightspark/lightspark-0.4.1.ebuild')
-rw-r--r-- | www-plugins/lightspark/lightspark-0.4.1.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/www-plugins/lightspark/lightspark-0.4.1.ebuild b/www-plugins/lightspark/lightspark-0.4.1.ebuild new file mode 100644 index 000000000000..9f7afa2f819d --- /dev/null +++ b/www-plugins/lightspark/lightspark-0.4.1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/lightspark-0.4.1.ebuild,v 1.1 2010/06/07 13:17:29 chithanh Exp $ + +EAPI=3 +inherit cmake-utils nsplugins multilib + +DESCRIPTION="High performance flash player" +HOMEPAGE="https://launchpad.net/lightspark/" +SRC_URI="https://launchpad.net/~sssup/+archive/sssup-ppa/+files/${P/-/_}.orig.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nsplugin" + +RDEPEND="dev-libs/libpcre + media-fonts/liberation-fonts + media-video/ffmpeg + media-libs/ftgl + media-libs/glew + media-libs/libsdl + net-misc/curl + >=sys-devel/llvm-2.7 + virtual/opengl + nsplugin? ( + dev-libs/nspr + net-libs/xulrunner + x11-libs/gtk+:2 + x11-libs/gtkglext + ) + x11-libs/libX11" +DEPEND="${RDEPEND} + dev-lang/nasm + dev-util/pkgconfig" + +src_prepare() { + # Fix gcc complaint about undefined debug variable + epatch "${FILESDIR}"/${PN}-0.4.1-debug-defines.patch + + # Adjust plugin permissions + sed -i "s|FILES|PROGRAMS|" plugin-dir/CMakeLists.txt || die + + # Adjust font paths + sed -i "s|truetype/ttf-liberation|liberation-fonts|" swf.cpp || die +} + +src_configure() { + local mycmakeargs="$(cmake-utils_use nsplugin COMPILE_PLUGIN) + -DPLUGIN_DIRECTORY=/usr/$(get_libdir)/${PN}/plugins" + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + use nsplugin && inst_plugin /usr/$(get_libdir)/${PN}/plugins/liblightsparkplugin.so +} |