blob: d739a8b817dbcbe566b81820b0fbe1e8ab8f0828 (
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
31
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/dczip/dczip-2.05.ebuild,v 1.11 2007/11/09 19:47:14 armin76 Exp $
DESCRIPTION="dcZip is an archiving program for managing various compression file formats"
HOMEPAGE="http://www.davidcampaign.net/dczip.html"
SRC_URI="http://www.davidcampaign.net/files/${PN}.jar"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
DEPEND=""
RDEPEND=">=virtual/jre-1.3"
S="${WORKDIR}"
src_unpack() {
cp "${DISTDIR}/${A}" "${WORKDIR}"
}
src_install() {
insinto /opt/${PN}/lib
doins ${PN}.jar
echo "#!/bin/sh" > ${PN}
echo "cd /opt/${PN}" >> ${PN}
echo '${JAVA_HOME}'/bin/java -jar lib/${PN}.jar '$*' >> ${PN}
into /opt
dobin ${PN}
}
|