summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2018-01-06 16:07:31 +0200
committerMart Raudsepp <leio@gentoo.org>2018-01-06 16:15:46 +0200
commitf8c70cb6ae7b6c4621acf977349ccb16d83edb9f (patch)
tree8b12ee8ee8237e3399088224e56188728f57ea08 /media-libs
parentmedia-sound/soundconverter: remove old (diff)
downloadgentoo-f8c70cb6ae7b6c4621acf977349ccb16d83edb9f.tar.gz
gentoo-f8c70cb6ae7b6c4621acf977349ccb16d83edb9f.tar.bz2
gentoo-f8c70cb6ae7b6c4621acf977349ccb16d83edb9f.zip
media-libs/libcanberra: remove old
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/libcanberra/libcanberra-0.30-r4.ebuild75
1 files changed, 0 insertions, 75 deletions
diff --git a/media-libs/libcanberra/libcanberra-0.30-r4.ebuild b/media-libs/libcanberra/libcanberra-0.30-r4.ebuild
deleted file mode 100644
index 6b1934d37ea9..000000000000
--- a/media-libs/libcanberra/libcanberra-0.30-r4.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-inherit eutils systemd
-
-DESCRIPTION="Portable sound event library"
-HOMEPAGE="http://git.0pointer.net/libcanberra.git/"
-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 ~arm-linux ~x86-linux ~sparc-solaris ~x86-solaris"
-IUSE="alsa gnome gstreamer +gtk +gtk3 oss pulseaudio +sound tdb udev"
-
-COMMON_DEPEND="
- dev-libs/libltdl:0
- media-libs/libvorbis
- alsa? (
- media-libs/alsa-lib:=
- udev? ( virtual/libudev:= ) )
- gstreamer? ( media-libs/gstreamer:1.0 )
- gtk? (
- >=dev-libs/glib-2.32:2
- >=x11-libs/gtk+-2.20.0:2
- x11-libs/libX11 )
- gtk3? (
- >=dev-libs/glib-2.32:2
- x11-libs/gtk+:3
- x11-libs/libX11 )
- pulseaudio? ( >=media-sound/pulseaudio-0.9.11 )
- tdb? ( sys-libs/tdb:= )
-"
-RDEPEND="${COMMON_DEPEND}
- gnome? (
- gnome-base/dconf
- 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() {
- # gtk: Don't assume all GdkDisplays are GdkX11Displays: broadway/wayland (from 'master')
- epatch "${FILESDIR}/${PN}-0.30-wayland.patch"
-}
-
-src_configure() {
- econf \
- --docdir="${EPREFIX}"/usr/share/doc/${PF} \
- $(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
-}
-
-src_install() {
- # Disable parallel installation until bug #253862 is solved
- MAKEOPTS="${MAKEOPTS} -j1" default
- prune_libtool_files --modules
-
- # This is needed for desktops different than GNOME, bug #520550
- exeinto /etc/X11/xinit/xinitrc.d
- newexe "${FILESDIR}"/libcanberra-gtk-module.sh 40-libcanberra-gtk-module
-}