From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 693F513829C for ; Mon, 13 Jun 2016 08:13:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B18FCE0BD3; Mon, 13 Jun 2016 08:13:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4C7F1E0BD3 for ; Mon, 13 Jun 2016 08:13:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C822B33FA71 for ; Mon, 13 Jun 2016 08:13:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55F26963 for ; Mon, 13 Jun 2016 08:13:48 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1465805602.60127f1664cef192915d34400ab9d3d77b04486d.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: media-tv/mediathekview-bin/ X-VCS-Repository: proj/betagarden X-VCS-Files: media-tv/mediathekview-bin/mediathekview-bin-11.ebuild X-VCS-Directories: media-tv/mediathekview-bin/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 60127f1664cef192915d34400ab9d3d77b04486d X-VCS-Branch: master Date: Mon, 13 Jun 2016 08:13:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 947bb3d9-4245-43a8-9972-c4698b87bc83 X-Archives-Hash: da36ffddcdc62c8a5bdd857bc2c79023 commit: 60127f1664cef192915d34400ab9d3d77b04486d Author: Sebastian Pipping gentoo org> AuthorDate: Mon Jun 13 08:13:22 2016 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Mon Jun 13 08:13:22 2016 +0000 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=60127f16 media-tv/mediathekview-bin: 11 (bug #585544) .../mediathekview-bin/mediathekview-bin-11.ebuild | 59 ++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/media-tv/mediathekview-bin/mediathekview-bin-11.ebuild b/media-tv/mediathekview-bin/mediathekview-bin-11.ebuild new file mode 100644 index 0000000..bad9eed --- /dev/null +++ b/media-tv/mediathekview-bin/mediathekview-bin-11.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit java-pkg-2 + +DESCRIPTION="Download files from the public broadcasting services" +HOMEPAGE="http://zdfmediathk.sourceforge.net/" +SRC_URI="mirror://sourceforge/zdfmediathk/Mediathek/Mediathek%20${PV}/MediathekView_${PV}.zip" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=">=virtual/jdk-1.7" +RDEPEND=">=virtual/jre-1.7 + media-video/vlc + media-video/flvstreamer + >=dev-java/commons-compress-1.8.1:0 + >=dev-java/commons-lang-3.3.2:3.3 + dev-java/jgoodies-common:1.8 + dev-java/jgoodies-forms:1.8 + dev-java/xz-java:0 + " + +S="${WORKDIR}" + +src_prepare() { + rm lib/commons-compress-1.8.1.jar || die + rm lib/commons-lang3-3.3.2.jar || die + rm lib/jgoodies-common-1.8.0.jar || die + rm lib/jgoodies-forms-1.8.0.jar || die + rm lib/xz.jar || die + + ewarn "Bundled libs remaining:" + ewarn "$(find lib -name '*.jar' | sort)" +} + +src_compile() { + : +} + +src_install() { + java-pkg_dojar MediathekView.jar + java-pkg_dojar lib/*.jar + + exeinto /usr/share/${PN}/lib/bin/ + doexe bin/flv.sh || die + + java-pkg_register-dependency commons-compress commons-compress.jar + java-pkg_register-dependency commons-lang-3.3 commons-lang.jar + java-pkg_register-dependency jgoodies-common-1.8 jgoodies-common.jar + java-pkg_register-dependency jgoodies-forms-1.8 jgoodies-forms.jar + java-pkg_register-dependency xz-java xz.jar + + java-pkg_dolauncher ${PN} --main mediathek.Main +}