summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-09-14 17:44:57 +0200
committerMichał Górny <mgorny@gentoo.org>2019-09-14 17:44:57 +0200
commit2f0cc63bfec047e2064bb8c1cb0d51e1bdd4e0da (patch)
tree1d788b70a1531ee29be57a450be81a375d5bd439 /media-sound
parentsci-mathematics/isabelle: Remove last-rited pkg (diff)
downloadgentoo-2f0cc63bfec047e2064bb8c1cb0d51e1bdd4e0da.tar.gz
gentoo-2f0cc63bfec047e2064bb8c1cb0d51e1bdd4e0da.tar.bz2
gentoo-2f0cc63bfec047e2064bb8c1cb0d51e1bdd4e0da.zip
media-sound/tuxguitar: Remove last-rited pkg
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/tuxguitar/Manifest1
-rw-r--r--media-sound/tuxguitar/files/tuxguitar-fixed-ant-files.patch237
-rw-r--r--media-sound/tuxguitar/metadata.xml38
-rw-r--r--media-sound/tuxguitar/tuxguitar-1.3.2.ebuild131
4 files changed, 0 insertions, 407 deletions
diff --git a/media-sound/tuxguitar/Manifest b/media-sound/tuxguitar/Manifest
deleted file mode 100644
index 4acc640746a2..000000000000
--- a/media-sound/tuxguitar/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tuxguitar-1.3.2-src.tar.gz 82294553 BLAKE2B 74e0e4b0f2d3d63dbf8f16db43a165f77b39ad54e21091520c06228ea789161a6fb65a1a05bde0f1473afe61e2d990f646b5228b9fe19c114da21a5c32aa32b6 SHA512 fb94472df25578d94ad11cd385cfc9347bfefcdd8ebedd2e785f3645d6b2e0d6d87d3fc457af159865b3fae77ad443ac4246b3c6fbe42397f4d15908dd3b7149
diff --git a/media-sound/tuxguitar/files/tuxguitar-fixed-ant-files.patch b/media-sound/tuxguitar/files/tuxguitar-fixed-ant-files.patch
deleted file mode 100644
index 9e1cbf778e57..000000000000
--- a/media-sound/tuxguitar/files/tuxguitar-fixed-ant-files.patch
+++ /dev/null
@@ -1,237 +0,0 @@
-diff -purN a/TuxGuitar/build.properties b/TuxGuitar/build.properties
---- a/TuxGuitar/build.properties 2016-03-16 21:26:23.000000000 +0000
-+++ b/TuxGuitar/build.properties 2016-08-23 10:55:06.271917712 +0100
-@@ -5,4 +5,5 @@ ant.build.javac.source=1.5
- ant.build.javac.target=1.5
-
- path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
-+path.tuxguitar-editor-utils=../TuxGuitar-editor-utils/tuxguitar-editor-utils.jar
- path.swt=../TuxGuitar/lib/swt.jar
-diff -purN a/TuxGuitar/build.xml b/TuxGuitar/build.xml
---- a/TuxGuitar/build.xml 2016-03-16 21:26:23.000000000 +0000
-+++ b/TuxGuitar/build.xml 2016-08-23 08:59:03.987797193 +0100
-@@ -12,6 +12,7 @@
-
- <path id="class.path">
- <pathelement location="${path.tuxguitar-lib}"/>
-+ <pathelement location="${path.tuxguitar-editor-utils}"/>
- <pathelement location="${path.swt}"/>
- </path >
-
-diff -purN a/TuxGuitar-awt-graphics/build.properties b/TuxGuitar-awt-graphics/build.properties
---- a/TuxGuitar-awt-graphics/build.properties 1970-01-01 01:00:00.000000000 +0100
-+++ b/TuxGuitar-awt-graphics/build.properties 2016-08-23 09:11:06.737851049 +0100
-@@ -0,0 +1,7 @@
-+### ANT Flags
-+#
-+# build.compiler=gcj
-+ant.build.javac.source=1.5
-+ant.build.javac.target=1.5
-+
-+path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
-diff -purN a/TuxGuitar-awt-graphics/build.xml b/TuxGuitar-awt-graphics/build.xml
---- a/TuxGuitar-awt-graphics/build.xml 1970-01-01 01:00:00.000000000 +0100
-+++ b/TuxGuitar-awt-graphics/build.xml 2016-08-23 12:40:24.005858183 +0100
-@@ -0,0 +1,45 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+
-+<project name="TuxGuitar-awt-graphics" basedir="." default="all">
-+ <description>
-+ TuxGuitar AWT Graphics
-+ </description>
-+
-+ <property file="build.properties" />
-+ <property name="build.src.path" value="src" />
-+ <property name="build.path" value="build" />
-+ <property name="build.jar" value="tuxguitar-awt-graphics.jar" />
-+
-+ <path id="class.path">
-+ <pathelement location="${path.tuxguitar-lib}"/>
-+ </path >
-+
-+ <target name="init" depends="clean">
-+ <mkdir dir="${build.path}" />
-+ </target>
-+
-+ <target name="build" depends="init">
-+ <echo>+-------------------------------------------------+</echo>
-+ <echo>| B U I L D I N G P L U G I N |</echo>
-+ <echo>+-------------------------------------------------+</echo>
-+
-+ <javac srcdir="${build.src.path}" destdir="${build.path}" debug="false" >
-+ <classpath refid="class.path"/>
-+ <include name="**/*.java"/>
-+ </javac>
-+
-+ <echo>+-----------------------------------------------+</echo>
-+ <echo>| P A C K A G I N G P L U G I N |</echo>
-+ <echo>+-----------------------------------------------+</echo>
-+
-+ <jar destfile="${build.jar}" basedir="${build.path}" />
-+ <delete quiet="true" dir="${build.path}" />
-+ </target>
-+
-+ <target name="clean">
-+ <delete quiet="true" dir="${build.path}" />
-+ <delete quiet="true" file="${build.jar}" />
-+ </target>
-+
-+ <target name="all" depends="build" />
-+</project>
-diff -purN a/TuxGuitar-editor-utils/build.properties b/TuxGuitar-editor-utils/build.properties
---- a/TuxGuitar-editor-utils/build.properties 1970-01-01 01:00:00.000000000 +0100
-+++ b/TuxGuitar-editor-utils/build.properties 2016-08-23 08:46:42.164749665 +0100
-@@ -0,0 +1,7 @@
-+### ANT Flags
-+#
-+# build.compiler=gcj
-+ant.build.javac.source=1.5
-+ant.build.javac.target=1.5
-+
-+path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
-diff -purN a/TuxGuitar-editor-utils/build.xml b/TuxGuitar-editor-utils/build.xml
---- a/TuxGuitar-editor-utils/build.xml 1970-01-01 01:00:00.000000000 +0100
-+++ b/TuxGuitar-editor-utils/build.xml 2016-08-23 10:51:44.533478977 +0100
-@@ -0,0 +1,45 @@
-+<?xml version="1.0" encoding="iso-8859-1"?>
-+
-+<project name="TuxGuitar-editor-utils" basedir="." default="all">
-+ <description>
-+ TuxGuitar Editor Utils
-+ </description>
-+
-+ <property file="build.properties" />
-+ <property name="build.src.path" value="src" />
-+ <property name="build.path" value="build" />
-+ <property name="build.jar" value="tuxguitar-editor-utils.jar" />
-+
-+ <path id="class.path">
-+ <pathelement location="${path.tuxguitar-lib}"/>
-+ </path >
-+
-+ <target name="init" depends="clean">
-+ <mkdir dir="${build.path}" />
-+ </target>
-+
-+ <target name="build" depends="init">
-+ <echo>+-------------------------------------------------+</echo>
-+ <echo>| B U I L D I N G L I B R A R Y |</echo>
-+ <echo>+-------------------------------------------------+</echo>
-+
-+ <javac srcdir="${build.src.path}" destdir="${build.path}" debug="false" >
-+ <classpath refid="class.path"/>
-+ <include name="**/*.java"/>
-+ </javac>
-+
-+ <echo>+-----------------------------------------------+</echo>
-+ <echo>| P A C K A G I N G L I B R A R Y |</echo>
-+ <echo>+-----------------------------------------------+</echo>
-+
-+ <jar destfile="${build.jar}" basedir="${build.path}" />
-+ <delete quiet="true" dir="${build.path}" />
-+ </target>
-+
-+ <target name="clean">
-+ <delete quiet="true" dir="${build.path}" />
-+ <delete quiet="true" file="${build.jar}" />
-+ </target>
-+
-+ <target name="all" depends="build" />
-+</project>
-diff -purN a/TuxGuitar-gtp-ui/build.xml b/TuxGuitar-gtp-ui/build.xml
---- a/TuxGuitar-gtp-ui/build.xml 2016-03-16 21:26:23.000000000 +0000
-+++ b/TuxGuitar-gtp-ui/build.xml 2016-08-23 15:21:38.068032721 +0100
-@@ -9,7 +9,7 @@
- <property name="build.src.path" value="src${file.separator}" />
- <property name="build.share.path" value="share${file.separator}" />
- <property name="build.path" value="build${file.separator}" />
-- <property name="build.jar" value="tuxguitar-gtp.jar" />
-+ <property name="build.jar" value="tuxguitar-gtp-ui.jar" />
-
- <path id="class.path">
- <pathelement location="${path.tuxguitar-lib}"/>
-diff -purN a/TuxGuitar-jsa/build.properties b/TuxGuitar-jsa/build.properties
---- a/TuxGuitar-jsa/build.properties 2016-03-16 21:26:23.000000000 +0000
-+++ b/TuxGuitar-jsa/build.properties 2016-08-23 12:45:00.324325595 +0100
-@@ -7,4 +7,5 @@ ant.build.javac.target=1.5
- path.tuxguitar=../TuxGuitar/tuxguitar.jar
- path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
- path.tuxguitar-gm-utils=../TuxGuitar-gm-utils/tuxguitar-gm-utils.jar
-+path.tuxguitar-editor-utils=../TuxGuitar-editor-utils/tuxguitar-editor-utils.jar
- path.swt=../TuxGuitar/lib/swt.jar
-diff -purN a/TuxGuitar-jsa/build.xml b/TuxGuitar-jsa/build.xml
---- a/TuxGuitar-jsa/build.xml 2016-03-16 21:26:23.000000000 +0000
-+++ b/TuxGuitar-jsa/build.xml 2016-08-23 12:46:07.932440095 +0100
-@@ -14,6 +14,7 @@
- <path id="class.path">
- <pathelement location="${path.tuxguitar-lib}"/>
- <pathelement location="${path.tuxguitar-gm-utils}"/>
-+ <pathelement location="${path.tuxguitar-editor-utils}"/>
- <pathelement location="${path.tuxguitar}"/>
- <pathelement location="${path.swt}"/>
- </path >
-diff -purN a/TuxGuitar-pdf/build.properties b/TuxGuitar-pdf/build.properties
---- a/TuxGuitar-pdf/build.properties 2016-03-16 21:26:23.000000000 +0000
-+++ b/TuxGuitar-pdf/build.properties 2016-08-23 13:37:17.230856507 +0100
-@@ -7,5 +7,7 @@ ant.build.javac.target=1.5
- path.tuxguitar=../TuxGuitar/tuxguitar.jar
- path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
- path.tuxguitar-gm-utils=../TuxGuitar-gm-utils/tuxguitar-gm-utils.jar
-+path.tuxguitar-editor-utils=../TuxGuitar-editor-utils/tuxguitar-editor-utils.jar
-+path.tuxguitar-awt-graphics=../TuxGuitar-awt-graphics/tuxguitar-awt-graphics.jar
- path.itext=../TuxGuitar/lib/itext.jar
- path.swt=../TuxGuitar/lib/swt.jar
-diff -purN a/TuxGuitar-pdf/build.xml b/TuxGuitar-pdf/build.xml
---- a/TuxGuitar-pdf/build.xml 2016-03-16 21:26:23.000000000 +0000
-+++ b/TuxGuitar-pdf/build.xml 2016-08-23 13:37:40.843895665 +0100
-@@ -17,6 +17,8 @@
- <pathelement location="${path.tuxguitar}"/>
- <pathelement location="${path.tuxguitar-lib}"/>
- <pathelement location="${path.tuxguitar-gm-utils}"/>
-+ <pathelement location="${path.tuxguitar-editor-utils}"/>
-+ <pathelement location="${path.tuxguitar-awt-graphics}"/>
- </path >
-
- <target name="init" depends="clean">
-diff -purN a/TuxGuitar-tray/build.properties b/TuxGuitar-tray/build.properties
---- a/TuxGuitar-tray/build.properties 2016-03-16 21:26:23.000000000 +0000
-+++ b/TuxGuitar-tray/build.properties 2016-08-23 13:41:10.241259782 +0100
-@@ -6,4 +6,6 @@ ant.build.javac.target=1.5
-
- path.tuxguitar=../TuxGuitar/tuxguitar.jar
- path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
-+path.tuxguitar-gm-utils=../TuxGuitar-gm-utils/tuxguitar-gm-utils.jar
-+path.tuxguitar-editor-utils=../TuxGuitar-editor-utils/tuxguitar-editor-utils.jar
- path.swt=../TuxGuitar/lib/swt.jar
-diff -purN a/TuxGuitar-tray/build.xml b/TuxGuitar-tray/build.xml
---- a/TuxGuitar-tray/build.xml 2016-03-16 21:26:23.000000000 +0000
-+++ b/TuxGuitar-tray/build.xml 2016-08-23 13:41:41.262315895 +0100
-@@ -15,6 +15,8 @@
- <property name="service.provider" value="org.herac.tuxguitar.tray.TGTrayPlugin" />
-
- <path id="class.path">
-+ <pathelement location="${path.tuxguitar-editor-utils}"/>
-+ <pathelement location="${path.tuxguitar-gm-utils}"/>
- <pathelement location="${path.tuxguitar-lib}"/>
- <pathelement location="${path.tuxguitar}"/>
- <pathelement location="${path.swt}"/>
-diff -purN a/TuxGuitar-tuner/build.properties b/TuxGuitar-tuner/build.properties
---- a/TuxGuitar-tuner/build.properties 2016-03-16 21:26:14.000000000 +0000
-+++ b/TuxGuitar-tuner/build.properties 2016-08-23 13:42:25.501396719 +0100
-@@ -6,4 +6,5 @@ ant.build.javac.target=1.5
-
- path.tuxguitar=../TuxGuitar/tuxguitar.jar
- path.tuxguitar-lib=../TuxGuitar-lib/tuxguitar-lib.jar
-+path.tuxguitar-gm-utils=../TuxGuitar-gm-utils/tuxguitar-gm-utils.jar
- path.swt=../TuxGuitar/lib/swt.jar
-diff -purN a/TuxGuitar-tuner/build.xml b/TuxGuitar-tuner/build.xml
---- a/TuxGuitar-tuner/build.xml 2016-03-16 21:26:14.000000000 +0000
-+++ b/TuxGuitar-tuner/build.xml 2016-08-23 13:42:50.180442190 +0100
-@@ -12,6 +12,7 @@
- <property name="build.jar" value="tuxguitar-tuner.jar" />
-
- <path id="class.path">
-+ <pathelement location="${path.tuxguitar-gm-utils}"/>
- <pathelement location="${path.tuxguitar-lib}"/>
- <pathelement location="${path.tuxguitar}"/>
- <pathelement location="${path.swt}"/>
diff --git a/media-sound/tuxguitar/metadata.xml b/media-sound/tuxguitar/metadata.xml
deleted file mode 100644
index 43ad71f5f096..000000000000
--- a/media-sound/tuxguitar/metadata.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>
- A multitrack tablature editor and player that allows you to
- compose music using the following features:
- - Tablature editor
- - Score Viewer
- - Multitrack display
- - Autoscroll while playing
- - Note duration management
- - Various effects (bend, slide, vibrato, hammer-on/pull-off)
- - Support for triplets (5,6,7,9,10,11,12)
- - Repeat open and close
- - Time signature management
- - Tempo management
- - Imports and exports gp3,gp4 and gp5 files
- </longdescription>
- <use>
- <flag name="fluidsynth">
- Enables Fluidsynth MIDI software synthesis (with external sound fonts).
- JSA must be disabled in the plug-ins menu to use this.
- </flag>
- <flag name="lilypond">
- Exports the score in a lilypond compatible format.
- </flag>
- <flag name="pdf">
- Exports the score as a PDF file using <pkg>dev-java/itext</pkg>.
- </flag>
- <flag name="tray">
- Adds an icon to the tray that controls midi playback.
- </flag>
- </use>
- <upstream>
- <remote-id type="sourceforge">tuxguitar</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/media-sound/tuxguitar/tuxguitar-1.3.2.ebuild b/media-sound/tuxguitar/tuxguitar-1.3.2.ebuild
deleted file mode 100644
index 39bcac4c6361..000000000000
--- a/media-sound/tuxguitar/tuxguitar-1.3.2.ebuild
+++ /dev/null
@@ -1,131 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P="${P}-src"
-JAVA_PKG_IUSE="source"
-inherit desktop java-pkg-2 java-ant-2 toolchain-funcs flag-o-matic xdg-utils
-
-DESCRIPTION="Multitrack guitar tablature editor and player written in Java-SWT"
-HOMEPAGE="http://www.tuxguitar.com.ar/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="alsa fluidsynth jack lilypond oss pdf timidity tray"
-KEYWORDS="~amd64 ~x86"
-
-COMMON_DEPEND="
- dev-java/swt:3.7[cairo]
- alsa? ( media-libs/alsa-lib )
- pdf? ( dev-java/itext:5 )
- fluidsynth? ( <media-sound/fluidsynth-2:= )
- lilypond? ( media-sound/lilypond )
-"
-RDEPEND="${COMMON_DEPEND}
- >=virtual/jre-1.5
- timidity? ( media-sound/timidity++[alsa?,oss?] )
-"
-DEPEND="${COMMON_DEPEND}
- >=virtual/jdk-1.5
-"
-
-PATCHES=( "${FILESDIR}"/${PN}-fixed-ant-files.patch )
-
-S="${WORKDIR}/${MY_P}"
-
-LIBRARY_LIST=()
-PLUGIN_LIST=()
-
-src_prepare() {
- java-pkg-2_src_prepare
- default_src_prepare
-
- sed -e "s|../TuxGuitar/lib/swt.jar|$(java-pkg_getjar swt-3.7 swt.jar)|" \
- -i TuxGuitar*/build.properties || die "sed TuxGuitar*/build.properties failed"
-
- if use pdf; then
- sed -e "s|../TuxGuitar/lib/itext.jar|$(java-pkg_getjar itext-5 itext.jar)|" \
- -i TuxGuitar-pdf/build.properties || die "sed TuxGuitar-pdf/build.properties failed"
- fi
-
- LIBRARY_LIST=( TuxGuitar-lib TuxGuitar-awt-graphics TuxGuitar-editor-utils
- TuxGuitar-gm-utils TuxGuitar
- )
-
- PLUGIN_LIST=( $(usev alsa) ascii browser-ftp community compat
- converter $(usev fluidsynth) gm-settings gpx gtp gtp-ui image
- $(usev jack) $(usex jack jack-ui "") jsa $(usev lilypond) midi
- musicxml $(usev oss) $(usev pdf) ptb svg tef $(usev tray) tuner
- )
-}
-
-src_compile() {
- local build_order=( ${LIBRARY_LIST[@]} ${PLUGIN_LIST[@]/#/TuxGuitar-} )
- local directory
-
- append-flags -fPIC $(java-pkg_get-jni-cflags)
-
- for directory in ${build_order[@]}; do
- cd "${S}"/${directory} || die "cd ${directory} failed"
- eant
- if [[ -d jni ]]; then
- CC=$(tc-getCC) emake -C jni
- fi
- done
-}
-
-src_install() {
- local tuxguitar_inst_path="/usr/share/${PN}"
- local library
- local plugin
-
- for library in ${LIBRARY_LIST[@]}; do
- cd "${S}"/${library} || die "cd ${library} failed"
- java-pkg_dojar ${library,,}.jar
- use source && java-pkg_dosrc src/org
- done
-
- java-pkg_dolauncher ${PN} \
- --main org.herac.tuxguitar.app.TGMainSingleton \
- --java_args "-Xmx512m -Dtuxguitar.share.path=${tuxguitar_inst_path}/share"
-
- # Images and Files
- insinto ${tuxguitar_inst_path}
- doins -r share
-
- java-pkg_sointo ${tuxguitar_inst_path}/lib
- insinto ${tuxguitar_inst_path}/share/plugins
- for plugin in ${PLUGIN_LIST[@]/#/TuxGuitar-}; do
- cd "${S}"/${plugin} || die "cd ${plugin} failed"
- doins ${plugin,,}.jar
-
- #TuxGuitar has its own classloader. No need to register the plugins.
- if [[ -d jni ]]; then
- java-pkg_doso jni/lib${plugin,,}-jni.so
- fi
- done
-
- insinto ${tuxguitar_inst_path}/share
- doins -r "${S}"/TuxGuitar-resources/resources/soundfont
- doman "${S}/misc/${PN}.1"
- insinto /usr/share/mime/packages
- doins "${S}/misc/${PN}.xml"
- doicon "${S}/misc/${PN}.xpm"
- domenu "${S}/misc/${PN}.desktop"
-}
-
-pkg_postinst() {
- xdg_desktop_database_update
- xdg_icon_cache_update
- if use fluidsynth; then
- ewarn "Fluidsynth plugin blocks behavior of JSA plugin."
- ewarn "Enable only one of them in \"Tools > Plugins\""
- fi
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
- xdg_icon_cache_update
-}