summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Pielmeier <billie@gentoo.org>2024-06-07 18:20:46 +0200
committerDaniel Pielmeier <billie@gentoo.org>2024-06-07 18:21:20 +0200
commit82f544ef8acd123a95f3b854e408cf16653f60c6 (patch)
tree9b66a31cf6939145b6cd4d5914e7fb17222a06ce /media-tv
parentapp-accessibility/flite: Stabilize 2.2-r2 ppc64, #933518 (diff)
downloadgentoo-82f544ef8acd123a95f3b854e408cf16653f60c6.tar.gz
gentoo-82f544ef8acd123a95f3b854e408cf16653f60c6.tar.bz2
gentoo-82f544ef8acd123a95f3b854e408cf16653f60c6.zip
media-tv/channeleditor: drop 1.9.2.1-r3
Closes: https://bugs.gentoo.org/933668 Signed-off-by: Daniel Pielmeier <billie@gentoo.org>
Diffstat (limited to 'media-tv')
-rw-r--r--media-tv/channeleditor/channeleditor-1.9.2.1-r3.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/media-tv/channeleditor/channeleditor-1.9.2.1-r3.ebuild b/media-tv/channeleditor/channeleditor-1.9.2.1-r3.ebuild
deleted file mode 100644
index 366dd6d32357..000000000000
--- a/media-tv/channeleditor/channeleditor-1.9.2.1-r3.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-JAVA_PKG_IUSE=source
-inherit desktop edos2unix java-pkg-2 java-ant-2 xdg
-
-DESCRIPTION="Editor for VDR channels.conf"
-HOMEPAGE="https://sites.google.com/site/reniershomepage/channeleditor"
-SRC_URI="https://downloads.sourceforge.net/project/channeleditor/channeleditor/$(ver_cut 1-3)/${P/-/_}_src.tar.gz"
-
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=virtual/jre-1.8:*"
-DEPEND=">=virtual/jdk-1.8:*"
-
-PATCHES=(
- # include localisation changes
- "${FILESDIR}"/${P}-messages.properties.patch
- "${FILESDIR}"/${P}-messages_en.properties.patch
-)
-
-mainclass() {
- # read Main-Class from MANIFEST.MF
- sed -n "s/^Main-Class: \([^ ]\+\).*/\1/p" "${S}/MANIFEST.MF" \
- || die "reading Main-Class failed"
-}
-
-src_prepare() {
- default
-
- xdg_environment_reset
-
- # move files out of build and remove stuff not needed in the package
- mv build/* "${S}" || die "cleaning build dir failed"
- rm -f src/java/org/javalobby/icons/{README,COPYRIGHT} \
- || die "removing files failed"
-
- # copy build.xml
- cp -f "${FILESDIR}/build-${PV}.xml" build.xml \
- || die "copying build.xml failed"
-
- # convert CRLF to LF
- edos2unix MANIFEST.MF
-}
-
-src_compile() {
- eant build -Dmanifest.mainclass=$(mainclass)
-}
-
-src_install() {
- java-pkg_dojar dist/${PN}.jar
- java-pkg_dolauncher ${PN} --main $(mainclass)
-
- use source && java-pkg_dosrc src
-
- make_desktop_entry channeleditor Channeleditor "" "Utility"
-}