You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-arch/dczip/dczip-2.05.ebuild

32 lines
788 B

# 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}
}