summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-04-27 07:40:08 +0000
committerPacho Ramos <pacho@gentoo.org>2014-04-27 07:40:08 +0000
commit01f50c4d5dbde59519e06e648513a7de99698992 (patch)
treebaf002e88d35c6ff0aabd360d6258fc05db9f138 /media-libs/libcanberra
parentDrop old and live ebuild as nobody is really maintaining it (was completely o... (diff)
downloadgentoo-2-01f50c4d5dbde59519e06e648513a7de99698992.tar.gz
gentoo-2-01f50c4d5dbde59519e06e648513a7de99698992.tar.bz2
gentoo-2-01f50c4d5dbde59519e06e648513a7de99698992.zip
drop old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'media-libs/libcanberra')
-rw-r--r--media-libs/libcanberra/ChangeLog7
-rw-r--r--media-libs/libcanberra/libcanberra-0.29.ebuild74
2 files changed, 5 insertions, 76 deletions
diff --git a/media-libs/libcanberra/ChangeLog b/media-libs/libcanberra/ChangeLog
index 3f0162253d25..bf0796eb617e 100644
--- a/media-libs/libcanberra/ChangeLog
+++ b/media-libs/libcanberra/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libcanberra
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.107 2013/04/10 20:22:02 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.108 2014/04/27 07:40:07 pacho Exp $
+
+ 27 Apr 2014; Pacho Ramos <pacho@gentoo.org> -libcanberra-0.29.ebuild:
+ drop old
10 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libcanberra-0.30-r1.ebuild:
Stable for hppa, wrt bug #458984
diff --git a/media-libs/libcanberra/libcanberra-0.29.ebuild b/media-libs/libcanberra/libcanberra-0.29.ebuild
deleted file mode 100644
index 839549e95bd6..000000000000
--- a/media-libs/libcanberra/libcanberra-0.29.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.29.ebuild,v 1.14 2012/12/19 02:43:32 tetromino Exp $
-
-EAPI="4"
-
-inherit libtool systemd autotools eutils
-
-DESCRIPTION="Portable sound event library"
-HOMEPAGE="http://0pointer.de/lennart/projects/libcanberra/"
-SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.xz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
-IUSE="alsa gnome gstreamer +gtk +gtk3 oss pulseaudio +sound tdb udev"
-
-COMMON_DEPEND="media-libs/libvorbis
- >=sys-devel/libtool-2.2.6b
- alsa? (
- media-libs/alsa-lib
- udev? ( >=virtual/udev-171 ) )
- gstreamer? ( >=media-libs/gstreamer-0.10.15:0.10 )
- gtk? ( >=x11-libs/gtk+-2.20.0:2 )
- gtk3? ( x11-libs/gtk+:3 )
- pulseaudio? ( >=media-sound/pulseaudio-0.9.11 )
- tdb? ( sys-libs/tdb )
-"
-RDEPEND="${COMMON_DEPEND}
- gnome? ( gnome-base/gsettings-desktop-schemas )
- sound? ( x11-themes/sound-theme-freedesktop )" # Required for index.theme wrt #323379
-DEPEND="${COMMON_DEPEND}
- app-arch/xz-utils
- virtual/pkgconfig"
-
-REQUIRED_USE="udev? ( alsa )"
-
-src_prepare() {
- # https://bugs.freedesktop.org/show_bug.cgi?id=31454
- epatch "${FILESDIR}"/${PN}-0.28-underlinking.patch
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- --docdir="${EPREFIX}"/usr/share/doc/${PF} \
- --disable-silent-rules \
- $(use_enable alsa) \
- $(use_enable oss) \
- $(use_enable pulseaudio pulse) \
- $(use_enable gstreamer) \
- $(use_enable gtk) \
- $(use_enable gtk3) \
- $(use_enable tdb) \
- $(use_enable udev) \
- $(systemd_with_unitdir) \
- --disable-lynx \
- --disable-gtk-doc \
- --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
-}
-
-src_install() {
- # Disable parallel installation until bug #253862 is solved
- emake -j1 DESTDIR="${D}" install
-
- # Remove useless .la files:
- # libcanberra uses lt_dlopenext instead of ld_dlopen to load the modules,
- # which means that it will first try appending ".la" to the given filename
- # prefix; if that fails, it will append the module extension for the
- # current system and try that (".so" on Linux, ".bundle" on Darwin, ".dll"
- # on Windows, etc.). Only if both fail will it return an error.
- find "${ED}" -name '*.la' -exec rm -f {} + || die "la file removal failed"
-}