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 4FF2713912E for ; Fri, 7 Mar 2014 14:06:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38499E093A; Fri, 7 Mar 2014 14:06:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BFF2FE093A for ; Fri, 7 Mar 2014 14:06:20 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED3BD33FAD6 for ; Fri, 7 Mar 2014 14:06:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 9638A18875 for ; Fri, 7 Mar 2014 14:06:17 +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: <1394201127.9d4fa26f22a0daa69bf9336dc71646f61eaa3e9d.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-4.ebuild X-VCS-Directories: media-tv/mediathekview-bin/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 9d4fa26f22a0daa69bf9336dc71646f61eaa3e9d X-VCS-Branch: master Date: Fri, 7 Mar 2014 14:06:17 +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: ab67af65-f902-4793-80af-adbfcceae808 X-Archives-Hash: 7a07ff29271e72cb203f7cd1a0748a39 commit: 9d4fa26f22a0daa69bf9336dc71646f61eaa3e9d Author: Sebastian Pipping pipping org> AuthorDate: Fri Mar 7 14:05:27 2014 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Fri Mar 7 14:05:27 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=9d4fa26f media-tv/mediathekview-bin: 4 --- .../mediathekview-bin/mediathekview-bin-4.ebuild | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/media-tv/mediathekview-bin/mediathekview-bin-4.ebuild b/media-tv/mediathekview-bin/mediathekview-bin-4.ebuild new file mode 100644 index 0000000..2270f71 --- /dev/null +++ b/media-tv/mediathekview-bin/mediathekview-bin-4.ebuild @@ -0,0 +1,46 @@ +# 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.7" +RDEPEND=">=virtual/jre-1.7 + media-video/vlc + media-video/flvstreamer + dev-java/xz-java" + +S=${WORKDIR} + +src_prepare() { + rm lib/xz.jar + + ewarn "Bundled libs remaining:" + ewarn "$(find lib -name '*.jar' | sort)" +} + +src_compile() { + : +} + +src_install() { + java-pkg_dojar MediathekView.jar + java-pkg_dojar lib/*.jar + + insinto /usr/share/${PN}/lib/bin/ + doins bin/flv.sh || die + + java-pkg_register-dependency xz-java xz.jar + + java-pkg_dolauncher ${PN} --main mediathek.Main +}