diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-02-15 00:10:44 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-02-15 00:10:44 +0000 |
commit | 0a494c257936e2179978f96cf47336c0a298bf6c (patch) | |
tree | 26c8b50289522cf899b027620641a4ab4942d53c /media-sound/christine | |
parent | Version bump. Force at least Python >= 2.7 with USE="sqlite" enabled and use ... (diff) | |
download | gentoo-2-0a494c257936e2179978f96cf47336c0a298bf6c.tar.gz gentoo-2-0a494c257936e2179978f96cf47336c0a298bf6c.tar.bz2 gentoo-2-0a494c257936e2179978f96cf47336c0a298bf6c.zip |
old
(Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/christine')
-rw-r--r-- | media-sound/christine/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/christine/christine-0.4.0.ebuild | 56 | ||||
-rw-r--r-- | media-sound/christine/files/christine-0.4.0-no_static_linking.patch | 14 |
3 files changed, 5 insertions, 71 deletions
diff --git a/media-sound/christine/ChangeLog b/media-sound/christine/ChangeLog index 401e7e12791b..e691898092b6 100644 --- a/media-sound/christine/ChangeLog +++ b/media-sound/christine/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/christine # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/ChangeLog,v 1.8 2012/02/15 00:09:28 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/ChangeLog,v 1.9 2012/02/15 00:10:43 ssuominen Exp $ + + 15 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> -christine-0.4.0.ebuild, + -files/christine-0.4.0-no_static_linking.patch: + old *christine-0.7.0 (15 Feb 2012) diff --git a/media-sound/christine/christine-0.4.0.ebuild b/media-sound/christine/christine-0.4.0.ebuild deleted file mode 100644 index 3929695f2234..000000000000 --- a/media-sound/christine/christine-0.4.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/christine-0.4.0.ebuild,v 1.4 2011/07/07 15:29:58 ssuominen Exp $ - -EAPI=3 -inherit autotools eutils python - -DESCRIPTION="Python, GTK+ and GStreamer based media player (audio and video)" -HOMEPAGE="http://christine-project.org" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~sparc ~x86" -IUSE="libnotify nls readline" - -RDEPEND="readline? ( sys-libs/readline ) - libnotify? ( dev-python/notify-python ) - dev-python/pygtk - dev-python/gconf-python - dev-python/gst-python:0.10 - media-plugins/gst-plugins-meta:0.10 - media-libs/mutagen - >=dev-lang/python-2.5[sqlite]" -DEPEND="${RDEPEND} - dev-util/pkgconfig - nls? ( sys-devel/gettext - dev-util/intltool )" - -src_prepare() { - epatch "${FILESDIR}"/${P}-no_static_linking.patch - eautoreconf -} - -src_configure() { - addwrite /root/.gstreamer-0.10 - - econf \ - --disable-dependency-tracking \ - --disable-static \ - $(use_enable nls) \ - $(use_with readline) -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README THANKS TODO -} - -pkg_postinst() { - python_mod_optimize lib${PN} -} - -pkg_postrm() { - python_mod_cleanup lib${PN} -} diff --git a/media-sound/christine/files/christine-0.4.0-no_static_linking.patch b/media-sound/christine/files/christine-0.4.0-no_static_linking.patch deleted file mode 100644 index 81caa016fea1..000000000000 --- a/media-sound/christine/files/christine-0.4.0-no_static_linking.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -ur christine-0.4.0.orig/Makefile.am christine-0.4.0/Makefile.am ---- christine-0.4.0.orig/Makefile.am 2009-05-01 07:37:57.000000000 +0300 -+++ christine-0.4.0/Makefile.am 2009-07-21 18:19:31.000000000 +0300 -@@ -68,8 +68,8 @@ - ./christine --devel $* - - christine: Makefile $(srcdir)/christine.c -- gcc -Wall -fPIC ${CFLAGS} -I${pythonincludedir}/ -c christine.c -o christine.o -- gcc ${pythonlfs} christine.o -lnsl -ldl -lieee -lpthread -lutil -lm -lpython${pythonversion} ${pythonlibdir}/libpython${pythonversion}.a -o christine -+ $(CC) -Wall -fPIC ${CFLAGS} -I${pythonincludedir}/ -c christine.c -o christine.o -+ $(CC) ${LDFLAGS} ${pythonlfs} christine.o -lnsl -ldl -lieee -lpthread -lutil -lm -lpython${pythonversion} -o christine - python -c "import compileall,re; compileall.compile_dir('./', rx=re.compile('/[.]svn'),force=True, maxlevels=11)" - - ACLOCAL_AMFLAGS = -I m4 |