restore changelog

This commit is contained in:
Mario Fetka
2014-08-16 08:16:25 +02:00
parent 874630b981
commit 2a01dafeee
8 changed files with 191 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# ChangeLog for app-admin/novell-consoleone-ichain-snapin
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
19 Dec 2009; Mario Fetka <mario.fetka@gmail.com>
novell-ichain-admin-2.1.ebuild:
add block on old name
19 Dec 2009; Mario Fetka <mario.fetka@gmail.com>
+novell-ichain-admin-2.1.ebuild,
-novell-consoleone-ichain-snapin-2.1.ebuild:
rename to new novell style name
17 Dec 2009; Mario Fetka <mario.fetka@gmail.com> +metadata.xml:
initial checkin of the ichain snapin

View File

@@ -0,0 +1,4 @@
DIST consoleone_master.zip 178361009 SHA256 057510b60339c29edc1181616348a5d5f1417905385b5e2493b07d37a401bda8 SHA512 18322b34d0050bc151857686182ca2b3f7089fe500d4c5c1c136a2a66144e79db37b423e36a51ecfe5d6784ad5ccf353db671ce6b0166b4d21093056e8070d64 WHIRLPOOL 6b6942ddea82fd3e38dc63b162b29beec0ee9a126c1e5fa190fe4b55a29ac9e99e51862012491284401c68f71d933fed8380c321ac6c9a297e1f701bad0421fe
EBUILD netiq-ichain-admin-2.1.ebuild 1904 SHA256 3e0fc446014f0e30954afd7418909f0bb816be1c5bc3aaed0e13df1a20909e2e SHA512 f4b966dc31ffc79db5357212a8f3a9c1e3c460ed42cab2e6cef83c8a4ec486431c0ee66267141c211fe5bcf3cc7719f021917e57616e94c3ace0f84fda09ef90 WHIRLPOOL a82101c5420e5c608b4269563a826e76eaabdd541532f67514f1cdaa25804d7ef51b5c2b6e4fb7718201c5f88293b5e4488824cbd913e4eccedb6eaadeb4022a
MISC ChangeLog 526 SHA256 34a6abd9b45d2537847e2e1a65ca4a8e62bbc432cad52d8b21a623ec55345558 SHA512 16f804a1c5ac4012e9410061f9d8518ad5a2b8819408382c60c28470949d50e080fad7cbed3651562a1ad725215e2c482db0885b95943c0ec2f1f8f878cf419e WHIRLPOOL 55700718921ad0d62fb86f6c946785197d2c260215567773d68bc9ad63458bb2fee506ac35ef5e6cbd2f02c6ccc0774b659f08045e7dc5c6c88ae188d85c7421
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
NOVELL_BUILDID="WAbNnuhOqYE~"
NOVELL_FILE32="iChain21_snapin.exe"
RESTRICT="mirror strip"
inherit novell eutils java-utils-2
DESCRIPTION="Novell iChain 2.1 Snap-in"
HOMEPAGE="http://www.novell.com"
#SRC_URI="http://${NOVELL_ACCOUNT_USERNAME}:${NOVELL_ACCOUNT_PASSWORD}@cdn.novell.com/prot/${NOVELL_BUILDID}/${NOVELL_FILE32}"
SRC_URI="https://www.novell.com/communities/media/consoleone_master.zip"
LICENSE="Novell-ConsoleOne-SnapIn"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=app-arch/p7zip-4.15"
RDEPEND="virtual/libc
>=virtual/jre-1.6
>=app-admin/netiq-novlc1-1.3.6_p1"
src_unpack() {
cd "${WORKDIR}"
unpack ${A}
#7z x "${DISTDIR}"/iChain21_snapin.exe
}
src_compile() { :; }
src_install() {
# java-pkg_jarinto /usr/ConsoleOne/lib/nisnfs
# java-pkg_dojar "${WORKDIR}"/public/mgmt/consoleone/1.2/lib/nisnfs/*.jar
java-pkg_jarinto /usr/ConsoleOne/resources/iChain
java-pkg_dojar "${WORKDIR}"/consoleone_master/1.2/resources/iChain/*.jar
java-pkg_jarinto /usr/ConsoleOne/snapins/iChain
java-pkg_dojar "${WORKDIR}"/consoleone_master/1.2/snapins/iChain/*.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"
}