diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-10-07 20:46:53 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-10-07 20:46:53 +0000 |
commit | c614f592d66ac2c09ce2657c32968eadd3529e33 (patch) | |
tree | d9dea623527bd8f6fec5c0bb006809c65955b2c4 /www-plugins/moonlight | |
parent | Remove old. (diff) | |
download | gentoo-2-c614f592d66ac2c09ce2657c32968eadd3529e33.tar.gz gentoo-2-c614f592d66ac2c09ce2657c32968eadd3529e33.tar.bz2 gentoo-2-c614f592d66ac2c09ce2657c32968eadd3529e33.zip |
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'www-plugins/moonlight')
-rw-r--r-- | www-plugins/moonlight/ChangeLog | 6 | ||||
-rw-r--r-- | www-plugins/moonlight/files/moonlight-1.0.1-glibc-212.patch | 12 | ||||
-rw-r--r-- | www-plugins/moonlight/moonlight-1.0.1.ebuild | 71 |
3 files changed, 5 insertions, 84 deletions
diff --git a/www-plugins/moonlight/ChangeLog b/www-plugins/moonlight/ChangeLog index 83d0e86e63d9..7aa56640771f 100644 --- a/www-plugins/moonlight/ChangeLog +++ b/www-plugins/moonlight/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-plugins/moonlight # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/moonlight/ChangeLog,v 1.8 2010/09/19 12:40:03 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/moonlight/ChangeLog,v 1.9 2010/10/07 20:46:53 pacho Exp $ + + 07 Oct 2010; Pacho Ramos <pacho@gentoo.org> -moonlight-1.0.1.ebuild, + -files/moonlight-1.0.1-glibc-212.patch: + Remove old. 19 Sep 2010; Pacho Ramos <pacho@gentoo.org> moonlight-2.3.ebuild: Moonlight is neither parallel build safe, bug #337960, upstream bug diff --git a/www-plugins/moonlight/files/moonlight-1.0.1-glibc-212.patch b/www-plugins/moonlight/files/moonlight-1.0.1-glibc-212.patch deleted file mode 100644 index 542bafb2ca90..000000000000 --- a/www-plugins/moonlight/files/moonlight-1.0.1-glibc-212.patch +++ /dev/null @@ -1,12 +0,0 @@ -http://bugs.gentoo.org/333943 - ---- src/pipeline.cpp -+++ src/pipeline.cpp -@@ -15,6 +15,7 @@ - #include <config.h> - #include <stdio.h> - #include <sys/types.h> -+#include <sys/stat.h> - #include <unistd.h> - #include <fcntl.h> - #include <errno.h> diff --git a/www-plugins/moonlight/moonlight-1.0.1.ebuild b/www-plugins/moonlight/moonlight-1.0.1.ebuild deleted file mode 100644 index fdb029af8247..000000000000 --- a/www-plugins/moonlight/moonlight-1.0.1.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/moonlight/moonlight-1.0.1.ebuild,v 1.4 2010/08/31 15:38:33 ssuominen Exp $ - -EAPI=2 - -inherit eutils mono multilib nsplugins - -MY_P=moon-${PV} -DESCRIPTION="Moonlight is an open source implementation of Silverlight" -HOMEPAGE="http://www.mono-project.com/Moonlight" -SRC_URI="ftp://ftp.novell.com/pub/mono/sources/moon/${PV}/${MY_P}.tar.bz2" -LICENSE="LGPL-2 MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="alsa pulseaudio debug test" -RESTRICT="mirror" - -# Needed for Moonlight-2.0 profile: -#LICENSE+="Ms-PL" -# +more -# >=dev-dotnet/rsvg-sharp-2.24.0 -# >=dev-dotnet/gtk-sharp-2.12.7 -# >=dev-lang/mono-2.2-r3[moonlight] -# >=dev-dotnet/dbus-sharp-0.6.1a - -#Moonlight-1.0 is essentially a browser plugin written in pure C. -RDEPEND=" - >=x11-libs/gtk+-2.14 - >=dev-libs/glib-2.18 - >=x11-libs/cairo-1.8.0 - >=media-video/ffmpeg-0.4.9_p20090121 - >=net-libs/xulrunner-1.9.0.5:1.9 - x11-libs/libXrandr - alsa? ( >=media-libs/alsa-lib-1.0.18 ) - pulseaudio? ( >=media-sound/pulseaudio-0.9.14 ) - >=media-libs/freetype-2.3.7 - >=media-gfx/imagemagick-6.2.8 - >=media-libs/fontconfig-2.6.0 - " -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.23" -S="${WORKDIR}/${MY_P}" - -src_prepare() { - sed -i \ - -e "s:TEST_SUBDIR = test::" \ - -e "s:TOOLS_SUBDIR = tools::" \ - Makefile.in - - epatch "${FILESDIR}"/${P}-glibc-212.patch -} - -src_configure() { - econf --enable-shared \ - --disable-static \ - --with-cairo=system \ - --with-ffmpeg=yes \ - --with-ff3=yes \ - --without-ff2 \ - $(use_with alsa) \ - $(use_with pulseaudio) \ - $(use_with debug) \ - || die "econf failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - inst_plugin /usr/$(get_libdir)/moon/plugin/libmoonloader.so || die "installing libmoonloader failed" - find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed" -} |