forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bdsup2sub-4.0.0-r2.ebuild
56 lines (40 loc) · 1.15 KB
/
bdsup2sub-4.0.0-r2.ebuild
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
XDG_P="xdg-20100731"
MY_PN="BDSup2Sub"
DESCRIPTION="A tool to convert and tweak bitmap based subtitle streams"
HOMEPAGE="http://bdsup2sub.javaforge.com/help.htm"
SRC_URI="
http://sbriesen.de/gentoo/distfiles/${P}.tar.xz
http://sbriesen.de/gentoo/distfiles/${XDG_P}.java.xz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
>=virtual/jre-1.6"
DEPEND="
>=virtual/jdk-1.6
app-arch/xz-utils"
S="${WORKDIR}/${PN}/${PV}"
PATCHES=( "${FILESDIR}/${P}-xdg.patch" )
src_prepare() {
default
# apply XDG patch
cp -v "${WORKDIR}/${XDG_P}.java" "${S}/src/xdg.java" || die
# copy build.xml
cp -f "${FILESDIR}/build-${PV}.xml" build.xml || die
}
src_compile() {
eant build $(use_doc)
}
src_install() {
java-pkg_dojar "dist/${MY_PN}.jar"
java-pkg_dolauncher "${PN}" --main "${MY_PN}" --java_args -Xmx256m
newicon bin_copy/icon_32.png "${MY_PN}.png"
make_desktop_entry "${MY_PN}" "${MY_PN}" "${MY_PN}"
use doc && java-pkg_dojavadoc apidocs
use source && java-pkg_dosrc src
}