summaryrefslogtreecommitdiff
path: root/media-libs
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/babl/babl-0.9999.ebuild37
-rw-r--r--media-libs/libgpod/libgpod-9999.ebuild76
2 files changed, 0 insertions, 113 deletions
diff --git a/media-libs/babl/babl-0.9999.ebuild b/media-libs/babl/babl-0.9999.ebuild
deleted file mode 100644
index 256ea43..0000000
--- a/media-libs/babl/babl-0.9999.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/babl-0.0.22.ebuild,v 1.7 2009/01/31 09:11:00 mabi Exp $
-
-inherit git
-
-DESCRIPTION="A dynamic, any to any, pixel format conversion library"
-HOMEPAGE="http://www.gegl.org/babl/"
-SRC_URI=""
-
-EGIT_REPO_URI="git://git.gnome.org/babl"
-EGIT_BOOTSTRAP="./autogen.sh"
-
-
-LICENSE="LGPL-3"
-SLOT=""
-KEYWORDS=""
-IUSE="sse mmx"
-
-DEPEND="virtual/libc"
-
-src_unpack(){
- git_src_unpack
-}
-
-src_compile() {
- econf $(use_enable mmx) \
- $(use_enable sse) \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "emake install failed"
- find "${D}" -name '*.la' -delete
-# dodoc AUTHORS ChangeLog README NEWS || die "dodoc failed"
-}
diff --git a/media-libs/libgpod/libgpod-9999.ebuild b/media-libs/libgpod/libgpod-9999.ebuild
deleted file mode 100644
index da25c35..0000000
--- a/media-libs/libgpod/libgpod-9999.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.6.0.ebuild,v 1.11 2008/11/01 16:47:41 tester Exp $
-
-inherit eutils git autotools
-
-DESCRIPTION="Shared library to access the contents of an iPod"
-HOMEPAGE="http://www.gtkpod.org/libgpod.html"
-SRC_URI=""
-
-EGIT_REPO_URI="git://gtkpod.git.sourceforge.net/gitroot/gtkpod/libgpod"
-EGIT_BOOTSTRAP="./autogen.sh"
-
-S="${WORKDIR}/${P/_/}"
-
-LICENSE="LGPL-2"
-SLOT=""
-KEYWORDS=""
-IUSE="gtk python doc test hal"
-
-RDEPEND=">=dev-libs/glib-2.4
- >=app-pda/libplist-1
- hal? ( =sys-apps/hal-0.5* )
- sys-apps/sg3_utils
- dev-util/gtk-doc
- gtk? ( >=x11-libs/gtk+-2 )
- python? ( >=dev-lang/python-2.3
- >=x11-libs/gtk+-2
- media-libs/mutagen
- gtk? ( >=dev-python/pygobject-2 ) )
- test? ( media-libs/taglib )"
-DEPEND="${RDEPEND}
- doc? ( dev-util/gtk-doc )
- python? ( >=dev-lang/swig-1.3.24 )
- dev-util/pkgconfig"
-
-src_unpack() {
- git_src_unpack
- cd "${S}"
-# eautoreconf
-
-# epatch "${FILESDIR}/${P}+gcc-4.3.patch"
-
-# elibtoolize
-}
-
-src_compile() {
-
- local myconf
-
- if use gtk; then
- myconf="--enable-pygobject"
- else
- myconf="--disable-pygobject"
- fi
-
- econf ${myconf} \
- $(use_enable doc gtk-doc) \
- $(use_enable gtk gdk-pixbuf) \
- $(use_with hal hal) \
- $(use_with python) || die "configure failed"
-
- emake || die "make failed"
-
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "install failed"
- dodoc README TROUBLESHOOTING AUTHORS NEWS README.SysInfo
-}
-
-pkg_postinst() {
- einfo "If you use a newer Ipod like the Ipod classic, make sure to read"
- einfo "the information in README.SysInfo in /usr/share/doc/${P}"
- einfo "This is no needed if HAL is installed and works correctly."
-}