diff options
author | Brandon Low <lostlogic@gentoo.org> | 2004-01-16 03:41:22 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2004-01-16 03:41:22 +0000 |
commit | c7e3da725c93518943a81a1c6604a60ed950144c (patch) | |
tree | 35af5b0b7deacee51f1a2be77385346e1425ea1f /dev-java/openjms-bin/openjms-bin-0.7.5-r3.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-c7e3da725c93518943a81a1c6604a60ed950144c.tar.gz gentoo-2-c7e3da725c93518943a81a1c6604a60ed950144c.tar.bz2 gentoo-2-c7e3da725c93518943a81a1c6604a60ed950144c.zip |
Make the RC script work :)
Diffstat (limited to 'dev-java/openjms-bin/openjms-bin-0.7.5-r3.ebuild')
-rw-r--r-- | dev-java/openjms-bin/openjms-bin-0.7.5-r3.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-java/openjms-bin/openjms-bin-0.7.5-r3.ebuild b/dev-java/openjms-bin/openjms-bin-0.7.5-r3.ebuild new file mode 100644 index 000000000000..b6202bb65b1b --- /dev/null +++ b/dev-java/openjms-bin/openjms-bin-0.7.5-r3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/openjms-bin/openjms-bin-0.7.5-r3.ebuild,v 1.1 2004/01/16 03:41:22 lostlogic Exp $ + +SLOT=0 +LICENSE="GPL-2" +DESCRIPTION="Open Java Messaging System" +DEPEND="virtual/glibc" +RDEPEND="virtual/jdk" +KEYWORDS="~x86" +SRC_URI="mirror://sourceforge/${PN/-bin/}/${P/-bin/}.tgz" + +src_unpack() { + einfo "Nothing to unpack" +} + +src_compile() { + einfo "Nothing to compile" +} + +src_install() { + dodir /opt + cd ${D}/opt + unpack ${A} + fperms 755 /opt/${P/-bin/}/bin/* + insinto /etc/env.d/ + newins ${FILESDIR}/10${P/-bin/} 10${PN/-bin/} + exeinto /etc/init.d/ + newexe ${FILESDIR}/rc2 openjms + insinto /etc/conf.d + newins ${FILESDIR}/conf openjms +} |