summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/jokosher')
-rw-r--r--media-sound/jokosher/Manifest1
-rw-r--r--media-sound/jokosher/files/jokosher-0.11.1-update-database.patch31
-rw-r--r--media-sound/jokosher/files/jokosher-0.11.5-cairo.patch30
-rw-r--r--media-sound/jokosher/jokosher-0.11.5-r1.ebuild64
-rw-r--r--media-sound/jokosher/metadata.xml11
5 files changed, 0 insertions, 137 deletions
diff --git a/media-sound/jokosher/Manifest b/media-sound/jokosher/Manifest
deleted file mode 100644
index 579ac40c4bd7..000000000000
--- a/media-sound/jokosher/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST jokosher-0.11.5.tar.gz 1265726 SHA256 489e0d06c28c3a11b817e7d6e49573ad4942a9cd426ad62dbbf94f3cca03dedb SHA512 b00728abe74c76a1fcfd6f70fea542add43629c40c1b55f41496e3bf940e09a3f57c1028eac458c10e68a43e3eb40f8ee5ae3102d1d931e5a6edff0f3ff1ca8d WHIRLPOOL 08eeab42dc950019bbf9d0760a4fc01bf7e0ec0f9afc1eadc37665d29ed709da0650f6839768e9156df5b21f935fb228f8a1c35cf21a7b4999df22bf039531b2
diff --git a/media-sound/jokosher/files/jokosher-0.11.1-update-database.patch b/media-sound/jokosher/files/jokosher-0.11.1-update-database.patch
deleted file mode 100644
index 287765b04fc5..000000000000
--- a/media-sound/jokosher/files/jokosher-0.11.1-update-database.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff -ur jokosher-0.11.1.orig/setup.py jokosher-0.11.1/setup.py
---- jokosher-0.11.1.orig/setup.py 2009-03-17 05:19:23.000000000 +0200
-+++ jokosher-0.11.1/setup.py 2009-05-12 09:43:39.000000000 +0300
-@@ -93,27 +93,6 @@
- call(["scrollkeeper-preinstall", HELPURI[fileNum],
- installedOmfFiles[fileNum], installedOmfFiles[fileNum]])
-
-- #Update the scrollkeeper catalog
-- if os.geteuid() == 0:
-- print "Updating the scrollkeeper index..."
-- call(["scrollkeeper-update", "-o", installroot + omfdir])
--
--# Update the mime types
--if os.geteuid() == 0 and dist != None:
-- print "Updating the mime-types...."
--
-- #update the mimetypes database
-- try:
-- call(["update-mime-database", "/usr/share/mime/"])
-- except:
-- pass
--
-- #update the .desktop file database
-- try:
-- call(["update-desktop-database"])
-- except:
-- pass
--
- print "\nInstallation finished! You can now run Jokosher by typing 'jokosher' or through your applications menu icon."
-
- ## To uninstall manually delete these files/folders:
diff --git a/media-sound/jokosher/files/jokosher-0.11.5-cairo.patch b/media-sound/jokosher/files/jokosher-0.11.5-cairo.patch
deleted file mode 100644
index a327283b145d..000000000000
--- a/media-sound/jokosher/files/jokosher-0.11.5-cairo.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- jokosher-0.11.5/Jokosher/Project.py.orig 2010-04-11 17:54:15.000000000 +0100
-+++ jokosher-0.11.5/Jokosher/Project.py 2010-12-04 14:51:17.000000000 +0000
-@@ -787,7 +787,7 @@
- params = doc.createElement("Parameters")
- head.appendChild(params)
-
-- items = ["viewScale", "viewStart", "name", "author",
-+ items = ["viewScale", "viewStart", "name", "author", "volume",
- "transportMode", "bpm", "meter_nom", "meter_denom", "projectfile"]
-
- Utils.StoreParametersToXML(self, doc, params, items)
---- jokosher-0.11.5/Jokosher/VUWidget.py.orig 2010-03-04 19:46:54.000000000 +0000
-+++ jokosher-0.11.5/Jokosher/VUWidget.py 2010-12-04 14:51:17.000000000 +0000
-@@ -307,6 +307,7 @@
-
- ctx = widget.window.cairo_create()
-
-+ ctx.save()
- rect = self.get_allocation()
-
- # Fill a black background
-@@ -321,7 +322,7 @@
- ctx.paint()
-
- # Reset the clip region
-- ctx.reset_clip()
-+ ctx.restore()
-
- # Draw the current volume level bar, with highlight if appropriate
- vpos = self.__GetVolumeHandleYPos()
diff --git a/media-sound/jokosher/jokosher-0.11.5-r1.ebuild b/media-sound/jokosher/jokosher-0.11.5-r1.ebuild
deleted file mode 100644
index 70de6f61fa47..000000000000
--- a/media-sound/jokosher/jokosher-0.11.5-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_SINGLE_IMPL="yes"
-GCONF_DEBUG="no"
-
-inherit eutils gnome2 distutils-r1
-
-DESCRIPTION="A simple yet powerful multi-track studio"
-HOMEPAGE="http://www.jokosher.org"
-SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gnome"
-
-# NOTE: setuptools are a runtime requirement as the app
-# loads its extensions via pkg_resources
-RDEPEND="
- dev-python/dbus-python[${PYTHON_USEDEP}]
- >=dev-python/gst-python-0.10.8:0.10[${PYTHON_USEDEP}]
- dev-python/pycairo[${PYTHON_USEDEP}]
- >=dev-python/pygtk-2.10[${PYTHON_USEDEP}]
- gnome-base/librsvg
- >=media-libs/gnonlin-0.10.9:0.10
- >=media-libs/gst-plugins-good-0.10.6:0.10
- >=media-libs/gst-plugins-bad-0.10.5:0.10
- >=media-plugins/gst-plugins-alsa-0.10.14:0.10
- >=media-plugins/gst-plugins-flac-0.10.6:0.10
- gnome? ( >=media-plugins/gst-plugins-gnomevfs-0.10.14:0.10 )
- >=media-plugins/gst-plugins-lame-0.10.6:0.10
- >=media-plugins/gst-plugins-ogg-0.10.14:0.10
- >=media-plugins/gst-plugins-vorbis-0.10.14:0.10
- >=media-plugins/gst-plugins-ladspa-0.10.5:0.10
- x11-themes/hicolor-icon-theme
- dev-python/setuptools[${PYTHON_USEDEP}]
- dev-python/pyxdg[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
- app-text/scrollkeeper
-"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.11.1-update-database.patch \
- "${FILESDIR}"/${P}-cairo.patch
- gnome2_src_prepare
- distutils-r1_src_prepare
-}
-
-src_configure() {
- distutils-r1_src_configure
-}
-
-src_compile() {
- distutils-r1_src_compile
-}
-
-src_install() {
- distutils-r1_src_install
-}
diff --git a/media-sound/jokosher/metadata.xml b/media-sound/jokosher/metadata.xml
deleted file mode 100644
index 05d41b026924..000000000000
--- a/media-sound/jokosher/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sound@gentoo.org</email>
- <name>Gentoo Sound project</name>
- </maintainer>
- <upstream>
- <remote-id type="launchpad">jokosher</remote-id>
- </upstream>
-</pkgmetadata>