change layout and depnd on new name and install requred 8.7 liebs to consoleone libdir

Package-Manager: portage-2.2.8-r1
RepoMan-Options: --force
This commit is contained in:
Mario Fetka 2014-08-16 07:57:32 +02:00
parent f5e49e33ea
commit 3e3d5a8ed1
4 changed files with 75 additions and 0 deletions

View File

@ -0,0 +1,10 @@
# ChangeLog for app-admin/netiq-nmas-method-admin
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
*netiq-nmas-method-admin-2.0.1-r1 (16 Aug 2014)
16 Aug 2014; Mario Fetka <mario.fetka@gmail.com> +metadata.xml,
+netiq-nmas-method-admin-2.0.1-r1.ebuild:
change layout and depnd on new name and install requred 8.7 liebs to
consoleone libdir

View File

@ -0,0 +1,4 @@
DIST nmasmethodsnapins.zip 230016 SHA256 53eb442fda04230b2bbf8fb5396cd4b2413f7ecc47edbcfe25e9d32f02d6aab0 SHA512 83fb9fc776ffab577c586ffdab86747cebca29631edfa43d1ecb91ccdf7fbd533aba9ef55528e5f439192e1114fbc427239f856d9e5474b12b4337017e2a5ead WHIRLPOOL 87ff966000e32ad3fb400e842cd3657be9fb495cc5add86d5e6377fb6ec82cef064ab496252c94219bcf16bfca36ca8cae03b08a46f0b679a8d39ead0619c8c3
EBUILD netiq-nmas-method-admin-2.0.1-r1.ebuild 1732 SHA256 7294ff3a294497b8ad5959fdfd321856cc05ea12b2683595e5ec76e77a807bee SHA512 c8f600b60580dc7fcc38e7bdef2672b5b71fa588a17e0b6e3454723b464d6779708b0a871679169cfc4d83efd639fbe0d85bf0b5792f6071ebc5c2c2aa2bdedf WHIRLPOOL c6b28a4175ede986288889864670be6432ca33888dac2b81a554c2d2086f0b30c23d3c8bf558e73321de04c864af1d9f8b9583a0a4cc661f17da5d2d7035f1de
MISC ChangeLog 384 SHA256 d77f8600d7c3fae1e7a7bd1fa8e96b5096f0dacf0df2b4b8b332ce1999c44bee SHA512 9ebd28c0ed594fb191a34027beeaa080584307da59862150a387452f329057e1efa954f97177c05f149db836e0931a36a836337acaa0d9865640794f13cdcf1d WHIRLPOOL c6b5c3124d122fdd4c48df4568b9dcc37a9295d787256f256fa6f3415b929667ae8a6c78311f28f5ffc8b1fd9a23d2271e51ddf5cd006ac478eb5851508cca5a
MISC metadata.xml 170 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 SHA512 c011e0dc20997640fdaf4dbdd0493106446df3ff753040a8ffc638cea0512a535bce9e1c4d2969e708993529c473d9dc17c59804c15a0eee2b0a7e9854b65143 WHIRLPOOL b33b91daccf2a989c728257c6372f7f8a7481bd72af841bf3c76e6625750d6f5e0d31c942fe88368fc016edcc5be954656c488b6d44ea00e4fe0caaec1bdd41e

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>maintainer-wanted</herd>
</pkgmetadata>

View File

@ -0,0 +1,56 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
NOVELL_BUILDID="2twa33-Wteo~"
NOVELL_FILE32="nmasmethodsnapins.zip"
RESTRICT="mirror strip"
inherit novell 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/${NOVELL_BUILDID}/${NOVELL_FILE32}"
LICENSE="Novell-ConsoleOne-SnapIn"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND="virtual/libc
>=virtual/jre-1.6
>=app-admin/netiq-novlc1-1.3.6_p1"
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/*
}
pkg_nofetch() {
einfo "This files require you to register at ${HOMEPAGE} (free account)"
einfo "Please download following file:"
einfo " - ${NOVELL_FILE32}"
einfo "from http://download.novell.com/Download?buildid=${NOVELL_BUILDID}"
einfo "and place it in ${DISTDIR}"
einfo ""
einfo "To get rid of downloading files from ${HOMEPAGE}"
einfo "you can create a file /etc/portage/novell.acc"
einfo "containing the novell account infos with following commands"
einfo "# echo \"NOVELL_ACCOUNT_USERNAME=\\\"balduin\\\"\" >> /etc/portage/novell.acc"
einfo "# echo \"NOVELL_ACCOUNT_PASSWORD=\\\"derfisch\\\"\" >> /etc/portage/novell.acc"
}