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 CC87C1381F3 for ; Thu, 22 Aug 2013 19:30:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 545EEE0D09; Thu, 22 Aug 2013 19:29:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4DE9E0D09 for ; Thu, 22 Aug 2013 19:29:51 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D7AA433EB2E for ; Thu, 22 Aug 2013 19:29:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 916BFE545C for ; Thu, 22 Aug 2013 19:29:49 +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: <1377199719.c80a6c7b8003520b1b6fce37875b7948d1e62f18.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-3.2.1.ebuild X-VCS-Directories: media-tv/mediathekview-bin/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: c80a6c7b8003520b1b6fce37875b7948d1e62f18 X-VCS-Branch: master Date: Thu, 22 Aug 2013 19:29:49 +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: da0fd602-a529-412c-9d59-ece5eee8263c X-Archives-Hash: 8185cd13af0f72335818fbce21f071b8 commit: c80a6c7b8003520b1b6fce37875b7948d1e62f18 Author: Sebastian Pipping pipping org> AuthorDate: Thu Aug 22 19:28:20 2013 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Thu Aug 22 19:28:39 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=c80a6c7b media-tv/mediathekview-bin: 3.2.1 --- .../mediathekview-bin-3.2.1.ebuild | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/media-tv/mediathekview-bin/mediathekview-bin-3.2.1.ebuild b/media-tv/mediathekview-bin/mediathekview-bin-3.2.1.ebuild new file mode 100644 index 0000000..bee3306 --- /dev/null +++ b/media-tv/mediathekview-bin/mediathekview-bin-3.2.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=2 + +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.4" +RDEPEND=">=virtual/jre-1.4 + media-video/vlc + media-video/flvstreamer + >=dev-java/commons-compress-1.4 + dev-java/swingx:1.6 + >=dev-java/jgoodies-forms-1.3.0" + +S=${WORKDIR} + +src_compile() { + : +} + +src_install() { + java-pkg_dojar MediathekView.jar + java-pkg_dojar lib/jide-oss-3.5.1.jar + + insinto /usr/share/${PN}/lib/bin/flv.sh + doins bin/flv.sh || die + + java-pkg_register-dependency commons-compress commons-compress.jar + java-pkg_register-dependency jgoodies-forms forms.jar + java-pkg_register-dependency swingx-1.6 swingx.jar + + java-pkg_dolauncher ${PN} --main mediathek.Main +}