blob: fe8148871378ac998a05de7a5f91832d8a45a696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit java-pkg-2 java-ant-2
DESCRIPTION="Multimedia framework for Java written by Fluendo"
HOMEPAGE="https://www.theora.org/cortado/"
SRC_URI="https://downloads.xiph.org/releases/cortado/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="amd64 ppc64 x86"
RDEPEND=">=virtual/jre-1.6"
DEPEND=">=virtual/jdk-1.6
app-arch/unzip"
EANT_BUILD_TARGET="stripped"
src_prepare() {
echo "#!/bin/sh" > scripts/get-revision || die
echo "echo ${PV}" >> scripts/get-revision || die
}
src_install() {
java-pkg_newjar "output/dist/applet/${PN}-ovt-stripped-${PV}.jar"
dodoc ChangeLog HACKING NEWS README RELEASE TODO
}
|