blob: 1264d4c09d0c3ca4359f4b0ab0fca759993c3c84 (
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
32
33
|
# Copyright 1999-2005 Gentoo Foundation
# 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.8 2005/01/26 20:44:23 corsair Exp $
SLOT=0
LICENSE="GPL-2"
DESCRIPTION="Open Java Messaging System"
DEPEND="virtual/libc"
RDEPEND="virtual/jdk"
KEYWORDS="~x86 ~amd64"
IUSE=""
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
}
|