summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCtibor <ctibor.brancik@seznam.cz>2015-01-31 17:21:01 +0100
committerCtibor <ctibor.brancik@seznam.cz>2015-01-31 17:21:01 +0100
commit3e31a655d7f98de90ce531bdbcf9e7d05ad78b1a (patch)
treebf8db200da6cb677f7cc262188fc66b529a2510a
parentde2d8225a37ef65aaa23435170c318b86f3021eb (diff)
downloadbrancik-overlay-3e31a655d7f98de90ce531bdbcf9e7d05ad78b1a.tar.gz
brancik-overlay-3e31a655d7f98de90ce531bdbcf9e7d05ad78b1a.tar.bz2
Removed media-sound/morituri because it is in another overlay.
-rw-r--r--media-sound/morituri/Manifest1
-rw-r--r--media-sound/morituri/morituri-0.1.2.ebuild66
2 files changed, 0 insertions, 67 deletions
diff --git a/media-sound/morituri/Manifest b/media-sound/morituri/Manifest
deleted file mode 100644
index cf521a8..0000000
--- a/media-sound/morituri/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST morituri-0.1.2.tar.bz2 199936 SHA256 e31031ec880256796e23dbea16f5d905c433cc77948adf7ae46de90e3c70af18 SHA512 f5ebdabd18fdb3084ed540d6e8626dc07835be021d915b6cf854896c44b3296be590ec8572f23980dd83f0707a7d18ea296aef3359d1d97e79aa920a1f613f89 WHIRLPOOL da39b8e2a36f0dce7497b2b64a933d48fb192882f267397e36277d30a7ed78f9cf94707feebb242a5e76e256cb3e43cd5624fc4a2cddba970a5c9da14b649487
diff --git a/media-sound/morituri/morituri-0.1.2.ebuild b/media-sound/morituri/morituri-0.1.2.ebuild
deleted file mode 100644
index 41a9346..0000000
--- a/media-sound/morituri/morituri-0.1.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2009 Tiziano Mueller
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit bash-completion distutils python
-
-DESCRIPTION="CD ripper aiming for accuracy over speed."
-HOMEPAGE="http://thomas.apestaart.org/morituri/trac/wiki"
-SRC_URI="http://thomas.apestaart.org/download/morituri/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="alac bash-completion cdio doc +flac test wav wavpack"
-
-PYTHON_DEPEND="*"
-
-RDEPEND="media-sound/cdparanoia
- app-cdr/cdrdao
- media-libs/gstreamer
- alac? ( media-plugins/gst-plugins-ffmpeg )
- flac? ( media-plugins/gst-plugins-flac )
- wav? ( media-libs/gst-plugins-good )
- wavpack? ( media-plugins/gst-plugins-wavpack )
- dev-python/gst-python
- dev-python/python-musicbrainz
- dev-python/pygobject
- dev-python/pygtk
- cdio? ( dev-python/pycdio )"
-DEPEND="${RDEPEND}
- doc? ( dev-python/epydoc )
- test? ( dev-python/pychecker )"
-
-src_prepare() {
- rm py-compile
- ln -s "$(type -P true)" py-compile
-
- sed -i \
- -e 's|\(^SUBDIRS = .*\) doc|\1|' \
- Makefile.in || die "sed failed"
-}
-
-src_configure() {
- default
-}
-
-src_compile() {
- default
-
- if use doc ; then
- cd doc
- epydoc -o reference ../morituri || die "generating docs failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- rm -rf "${D}/etc"
-
- dodoc AUTHORS HACKING NEWS README RELEASE TODO
- use bash-completion && dobashcompletion etc/bash_completion.d/rip
-
- use doc && dohtml -r doc/reference/*
-}