summaryrefslogtreecommitdiff
path: root/media-sound/mp3splt-gtk
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-05-20 20:14:27 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-05-20 20:14:27 +0100
commit2bacbb3374587799c77a999f56352233a353b19e (patch)
tree1bcd1ca794782a57f9ab99006e97da5b785e042a /media-sound/mp3splt-gtk
parent97967bbbae8f43c98315b079178f1717f130e302 (diff)
gentoo resync : 20.05.2018
Diffstat (limited to 'media-sound/mp3splt-gtk')
-rw-r--r--media-sound/mp3splt-gtk/Manifest1
-rw-r--r--media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/media-sound/mp3splt-gtk/Manifest b/media-sound/mp3splt-gtk/Manifest
index 902a6cfd3829..247b91ab5093 100644
--- a/media-sound/mp3splt-gtk/Manifest
+++ b/media-sound/mp3splt-gtk/Manifest
@@ -1,4 +1,3 @@
DIST mp3splt-gtk-0.9.2.tar.gz 1070580 BLAKE2B b49a246eeb03d11ec8d4c8968323c62e200439af5d2cb52321442365615b20444908f4c33e6bddeec4051fc320f303b98a1d341bc834ec768bc4d803d2fb5be8 SHA512 e837cbc0759cd6535fc466099a170d066ab72b4854f8546f524261fe660887f5d2add60d9fa1e19d68d811004c682a324b5bcba86aa8cb89ae1ad2bc2f9b1d9d
EBUILD mp3splt-gtk-0.9.2-r1.ebuild 1146 BLAKE2B 915f8fbcc69b2382a9589be580882e5aabbc93b485ce6f5d8349acc1d427b84b489679e33030a983597b52a8a43b806f9178dff1edb8db7ba8ec0b4c07d1d64c SHA512 f2046acc088a9447096b48ee27a8705b8037dcd69e2f76592158203ea51a6626cb3da119cf1b113f4689e6b59b439e6ec73d7730e029a55eaa4240b4156b9011
-EBUILD mp3splt-gtk-0.9.2.ebuild 1334 BLAKE2B 4633a14fe5d615a15feac01377c90af66f7230ddf3c0c99d0d82df98ec22e922e77ef0f9905f8b5f6e55a7ff0a409da73148a817f0417c50575d7c2486b6c0c9 SHA512 7741a72ee7bb2180953b9e85f558a537ab1c80fa0f1e582a7f0354178bc71222905705b7be62e9c364fd7f45b8549034292afd3ffd8639f8748d41da6119a3da
MISC metadata.xml 426 BLAKE2B d40b4d17f8b9b613f30a83b785db5728b5d1c3485594a470758e1be644dab472d3c4130d36631f0f3dc48db14dedd673afd36142b9f33cd9f7c8e5c50f7b8ce7 SHA512 bdb4ccec57ed706d1bec69d42ae6dc1f4c5aa59155cb671df061632155d8aacceb83ec3e1c66702176d4be5a462a31d30153e32696bcf28dc6a9b2eb137f9de9
diff --git a/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2.ebuild b/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2.ebuild
deleted file mode 100644
index c6495c8a8305..000000000000
--- a/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils versionator autotools multilib
-
-DESCRIPTION="a GTK+ based utility to split mp3 and ogg files without decoding"
-HOMEPAGE="http://mp3splt.sourceforge.net"
-SRC_URI="mirror://sourceforge/mp3splt/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 sparc x86"
-IUSE="audacious doc gnome gstreamer nls"
-
-RDEPEND="~media-libs/libmp3splt-0.9.2
- x11-libs/gtk+:3
- audacious? ( >=media-sound/audacious-3.0 )
- !audacious? ( dev-libs/dbus-glib )
- gstreamer? ( media-libs/gstreamer:1.0
- media-plugins/gst-plugins-meta:1.0[mp3] )
- gnome? ( gnome-base/libgnomeui )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- gnome? ( app-text/gnome-doc-utils app-text/rarian )
- nls? ( sys-devel/gettext )"
-
-src_prepare() {
- if use audacious; then
- sed -i \
- -e 's:@AUDACIOUS_LIBS@:-laudclient &:' \
- src/Makefile.am || die
- fi
-
- eautoreconf
-}
-
-src_configure() {
- local myconf
-
- use nls || myconf+=" --disable-nls"
- use audacious || myconf+=" --disable-audacious"
- use gstreamer || myconf+=" --disable-gstreamer"
-
- econf \
- --disable-dependency-tracking \
- $(use_enable gnome) \
- $(use_enable doc doxygen_doc) \
- --disable-cutter \
- ${myconf}
-}
-
-src_install() {
- default
- dodoc AUTHORS ChangeLog NEWS README
-}