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:58:06 +02:00
parent b00ae830f3
commit 43674c9ad3
4 changed files with 77 additions and 0 deletions

View File

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

View File

@ -0,0 +1,4 @@
DIST NW65SP8.zip 1025725762 SHA256 f342b1085584682f7405666000a5f39219684c1d285dc978651b696c825f6789 SHA512 c01dec21a1e52816ee6e0cd45c46e2fbb9e03c62fbaaabb6379862c39c65893bab1bae783a1b88bb5eb122c05776fdbc41e4812b59f1084416d483239655bd89 WHIRLPOOL 675610839d64cfb4c358f0425a0cfac6dd54680d48604744aca0fb7e2634d80d22d172ee7ed5b1f3743001fd58c5907add55b3d7e6a237ec04d1dec4111fd517
EBUILD netiq-nss-admin-1.02.ebuild 1793 SHA256 94cb9e6acd7c0255d0f1063ccbec9ee06427c085d8ee6791a020d72292cfbd08 SHA512 2b1fde20f44471f9d3743f598cdb4f79e09ade7841faf9a4e867bc642995c8816e2dedb1eaa22548f2d2731c91650d87376fe0481b501e00512d305e4fffc376 WHIRLPOOL 0e9ebe73c212af0cebb284fad799ed975aa22dbffd0d9e0b6ad9a3f513e1473f2adabedfddc7fe6a51521133b35344596a02033f35c692844e61f6eb5108414d
MISC ChangeLog 352 SHA256 c94a9231a5f30e977a55f570cd81c6758557da193eaac142c194b75830becc78 SHA512 51d27c77cf502fd834d279188aa0386de1496826e9c80a7c668d4a04d239b82a9af21eef76a1f2170eacf2aeec31d8886ab6c6acec90738f4206a03acab4c297 WHIRLPOOL fb7a965d30bc8777174e591110b6266f001c7799a12077efd512ce80be6e24e50b1ab27e65d2823205b4ed9f93223a3d454d3e5f7680c585291f4d1e91c0f459
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,58 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
NOVELL_BUILDID="dpIR3H1ymhk~"
NOVELL_FILE32="NW65SP8.zip"
RESTRICT="mirror strip"
inherit novell eutils java-utils-2
DESCRIPTION="Novell Storage Services 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="app-arch/unzip"
RDEPEND="virtual/libc
>=virtual/jre-1.6
>=app-admin/netiq-novlc1-1.3.6_p1"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd "${S}"
unzip -o "${WORKDIR}"/NW65SP8/SYS/SYSZIP/C1S_NSS.ZIP || die "unpacking"
}
src_compile() { :; }
src_install() {
java-pkg_jarinto /usr/ConsoleOne/lib/nss
java-pkg_dojar "${WORKDIR}"/public/mgmt/consoleone/1.2/lib/nss/*.jar
java-pkg_jarinto /usr/ConsoleOne/resources/nss
java-pkg_dojar "${WORKDIR}"/public/mgmt/consoleone/1.2/resources/nss/*.jar
java-pkg_jarinto /usr/ConsoleOne/snapins/nss
java-pkg_dojar "${WORKDIR}"/public/mgmt/consoleone/1.2/snapins/nss/*.jar
}
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"
}