diff options
author | 2007-12-22 20:58:02 +0000 | |
---|---|---|
committer | 2007-12-22 20:58:02 +0000 | |
commit | c45128f221fc5c333cb1178d96281ec5f6400bdd (patch) | |
tree | 52dba262e923e10f12695d136a65ea811b6eff4b /media-video/kmplayer/kmplayer-0.10.0c.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-c45128f221fc5c333cb1178d96281ec5f6400bdd.tar.gz gentoo-2-c45128f221fc5c333cb1178d96281ec5f6400bdd.tar.bz2 gentoo-2-c45128f221fc5c333cb1178d96281ec5f6400bdd.zip |
Version bump.
(Portage version: 2.1.3.19)
Diffstat (limited to 'media-video/kmplayer/kmplayer-0.10.0c.ebuild')
-rw-r--r-- | media-video/kmplayer/kmplayer-0.10.0c.ebuild | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/media-video/kmplayer/kmplayer-0.10.0c.ebuild b/media-video/kmplayer/kmplayer-0.10.0c.ebuild new file mode 100644 index 000000000000..bcfd594a5c56 --- /dev/null +++ b/media-video/kmplayer/kmplayer-0.10.0c.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/kmplayer/kmplayer-0.10.0c.ebuild,v 1.1 2007/12/22 20:58:01 carlo Exp $ + +inherit kde eutils + +MY_P="${P/_/-}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="KMPlayer is a Video player plugin for Konqueror and basic MPlayer/Xine/ffmpeg/ffserver/VDR frontend for KDE." +HOMEPAGE="http://kmplayer.kde.org/" +SRC_URI="http://kmplayer.kde.org/pkgs/${MY_P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="mplayer xine cairo gstreamer npp" + +DEPEND="x11-libs/libXv + >=dev-libs/expat-2.0.1 + xine? ( >=media-libs/xine-lib-1.1.1 ) + cairo? ( x11-libs/cairo ) + gstreamer? ( >=media-libs/gstreamer-0.10.11 + npp? ( >=sys-apps/dbus-1.0.2-r2 + >=dev-libs/dbus-glib-0.73 + >=dev-libs/dbus-qt3-old-0.70 ) ) + npp? ( >=dev-libs/nspr-4.6.7 + >=x11-libs/gtk+-2.10.14 )" +RDEPEND="${DEPEND} + mplayer? ( || ( media-video/mplayer media-video/mplayer-bin ) )" + +LANGS="ar be br bs ca csb cs cy da de el en_GB es et fi fr ga gl he hi hu is it +ja ka lt mt nb nl nn pa pl pt_BR pt ro ru rw sk sr@Latn sr sv ta tr uk zh_CN" +LANGS_DOC="da de en es et fr it nl pt ru sv" + +for X in ${LANGS} ; do + IUSE="${IUSE} linguas_${X}" +done + +need-kde 3.5 + +PATCHES="${FILESDIR}/${PN}-0.10.0-prtypes.patch" + +pkg_setup() { + if ! use mplayer && ! use xine && ! use cairo && ! use gstreamer ; then + echo + ewarn "Neither the mplayer, xine, cairo nor gstreamer USE flags have been set. One of" + ewarn "them is required. mplayer can be installed afterwards; all of the others will" + ewarn "require you to recompile ${PN}." + fi +} + +src_unpack() { + kde_src_unpack + + if use mplayer && use amd64 && ! has_version media-video/mplayer; then + elog 'NOTICE: You have mplayer-bin installed; you will need to configure' + elog 'NOTICE: kmplayer to use it from within the application.' + fi + + for X in ${LANGS} ; do + use linguas_${X} && MAKE_LANGS="${MAKE_LANGS} ${X}.po" + done + cd "${S}/po" + sed -i -e "s:POFILES =.*:POFILES = ${MAKE_LANGS}:" Makefile.am + + MAKE_DOC=$(echo $(echo "${LINGUAS} ${LANGS_DOC}" | tr ' ' '\n' | sort | uniq -d)) + [[ -n ${MAKE_DOC} ]] && [[ -n ${DOC_DIR_SUFFIX} ]] && \ + MAKE_DOC=$(echo "${MAKE_DOC}" | tr '\n' ' ') && \ + MAKE_DOC="${MAKE_DOC// /${DOC_DIR_SUFFIX} }" + sed -i -e "s:^SUBDIRS =.*:SUBDIRS = en ${MAKE_DOC}:" \ + "${KDE_S}/doc/Makefile.am" || die "sed for locale failed" + + # Fix the desktop file + sed -i -e 's:\(Icon=kmplayer\).png:\1:' "${S}/src/kmplayer.desktop" + + rm -f "${S}/configure" +} + +src_compile() { + local myconf="--enable-expat + $(use_with gstreamer) + $(use_with xine) + $(use_with cairo) + --disable-koffice-plugin + $(use_enable npp nspr) + $(use_enable npp npplayer)" + + # The configure script is a bloated mess and won't work correctly without this. + PKG_CONFIG="pkg-config" kde_src_compile +} + +src_install() { + kde_src_install + + # Remove this, as kdelibs provides it + rm -f "${D}/usr/share/mimelnk/application/x-mplayer2.desktop" +} |