diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2020-06-09 13:49:37 +0200 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2020-06-09 13:49:37 +0200 |
commit | 8734c3138967d3aeb07026f99692d5d4e0d344b1 (patch) | |
tree | ace6d0ef29fccef0ca6372a0716b6d225aaaea95 /media-tv | |
parent | media-sound/aqualung: Remove old aqualung-1.0-r2. (diff) | |
download | gentoo-8734c3138967d3aeb07026f99692d5d4e0d344b1.tar.gz gentoo-8734c3138967d3aeb07026f99692d5d4e0d344b1.tar.bz2 gentoo-8734c3138967d3aeb07026f99692d5d4e0d344b1.zip |
media-tv/channeleditor: Remove old channeleditor-1.9.2.1-r1.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Daniel Pielmeier <billie@gentoo.org>
Diffstat (limited to 'media-tv')
-rw-r--r-- | media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild b/media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild deleted file mode 100644 index f90603398437..000000000000 --- a/media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE=source -inherit eutils java-pkg-2 java-ant-2 - -DESCRIPTION="Editor for VDR channels.conf" -HOMEPAGE="https://sites.google.com/site/reniershomepage/" -SRC_URI="mirror://sourceforge/${PN}/${P/-/_}_src.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 x86" -IUSE="" - -RDEPEND=">=virtual/jre-1.5" -DEPEND=" >=virtual/jdk-1.5" - -S="${WORKDIR}/${PN}" - -mainclass() { - # read Main-Class from MANIFEST.MF - sed -n "s/^Main-Class: \([^ ]\+\).*/\1/p" "${S}/MANIFEST.MF" \ - || die "reading Main-Class failed" -} - -java_prepare() { - # 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 - - # include localisation changes - epatch "${FILESDIR}"/${P}-messages.properties.patch - epatch "${FILESDIR}"/${P}-messages_en.properties.patch -} - -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" -} |