39 lines
1.0 KiB
Bash
39 lines
1.0 KiB
Bash
# Copyright 1999-2007 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
inherit eutils java-utils-2
|
|
|
|
DESCRIPTION="Novell Modular Authentication Services Method 2.0 Snap-in"
|
|
HOMEPAGE="http://www.novell.com"
|
|
SRC_URI="http://${NOVELL_ACCOUNT_USERNAME}:${NOVELL_ACCOUNT_PASSWORD}@cdn.novell.com/prot/2twa33-Wteo~/nmasmethodsnapins.zip"
|
|
|
|
LICENSE="Novell-eDir-87"
|
|
SLOT="0"
|
|
KEYWORDS="~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="virtual/libc
|
|
>=virtual/jdk-1.4
|
|
>=app-admin/novell-novlc1-1.3.6_p1"
|
|
|
|
RESTRICT="nomirror nostrip"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
}
|
|
|
|
src_compile() { :; }
|
|
|
|
src_install() {
|
|
java-pkg_jarinto /usr/ConsoleOne/lib/nmasmethod
|
|
java-pkg_dojar ${WORKDIR}/lib/security/*.jar
|
|
java-pkg_jarinto /usr/ConsoleOne/resources/nmasmethod
|
|
java-pkg_dojar ${WORKDIR}/resources/security/*.jar
|
|
java-pkg_jarinto /usr/ConsoleOne/snapins/nmasmethod
|
|
java-pkg_dojar ${WORKDIR}/snapins/security/*.jar
|
|
insinto /usr/ConsoleOne/help
|
|
doins -r ${WORKDIR}/Help/*
|
|
} |