This commit is contained in:
Mario Fetka
2014-08-16 09:01:13 +02:00
parent ab666604a2
commit 4492b6ea57
182 changed files with 7524 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# ChangeLog for app-crypt/novell-sdidiag
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
19 Dec 2009; Mario Fetka <mario.fetka@gmail.com>
novell-sdidiag-2.2.ebuild:
correct multilib use on x86
19 Dec 2009; Mario Fetka <mario.fetka@gmail.com>
novell-sdidiag-2.2.ebuild:
correct typo
19 Dec 2009; Mario Fetka <mario.fetka@gmail.com>
novell-sdidiag-2.2.ebuild:
add edir 8.8 support
12 Dec 2009; Mario Fetka <mario.fetka@gmail.com> +metadata.xml:
initial checkin

View File

@@ -0,0 +1,4 @@
DIST sdidiag-2-2.i586.rpm 135668 SHA256 0693f311520bfb2aecd361dc11607f682423fee144dd9ecdd12654481111583e
EBUILD netiq-sdidiag-2.2.ebuild 1719 SHA256 0fa23ad8a3b8150d92a94eb2ec04ad9364916460bf390673c26638653e791769 SHA512 b2bb6bc011a5cb895e82ecd10fb09fa7decbbaeb473b7efc27008b78a9965ce9602b86815cebc2ced09499a52562e8e2c259552497e52cba05989bd2bd46f77f WHIRLPOOL 55bd89c6177c5cb0dc5400975cf3d8ec5465245f919fe5aece072b78d248f7fd1a875ec8e520f093eb903279501b2dcb44ac487cd58bed76789653d61cf1f623
MISC ChangeLog 521 SHA256 664a26bbe60eadd65630b80d44fbf8d5bf78a922e01577235b85e8309faf8f3a SHA512 9d6cb1e62a864e0979bd2695f7f1d5192cb7e6d2e4e787d13a083c1df43a5519971a06af6615cf275d6860393bde2a6dbeeb42903700faae317437e6b47ff58f WHIRLPOOL a19e9601e553bdc39035605d35592921bb394e64b4695cfe17a7c054299e68aa8a7e02542ea5060dcbf3c6157e0c88a14defc04b6620e7ceab91e10e6ecdb043
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,63 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
NOVELL_BUILDID="UHtCwrcer5c~"
NOVELL_FILE32="patchfiles/sdidiag-2-2.i586.rpm"
RESTRICT="mirror strip"
inherit novell eutils rpm versionator
MY_PV=$(replace_version_separator 1 '-')
DESCRIPTION="Novell Modules for Login Script Procssing"
HOMEPAGE="http://www.novell.com"
SRC_URI="http://${NOVELL_ACCOUNT_USERNAME}:${NOVELL_ACCOUNT_PASSWORD}@cdn.novell.com/prot/${NOVELL_BUILDID}/${NOVELL_FILE32}"
LICENSE="Novell-eDir-87"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=app-arch/p7zip-4.15"
RDEPEND="virtual/libc
>=app-crypt/netiq-nici-2.7.3_p12
net-nds/netiq-ndsbase:8.7
net-misc/netiq-ntls:8.7
sys-libs/libstdc++-v3"
src_unpack() {
mkdir -p "${WORKDIR}"/${PN}-${MY_PV}
cd ${PN}-${MY_PV}
rpm_unpack ../distdir/sdidiag-${MY_PV}.i586.rpm
}
src_compile() { :; }
src_install() {
into /opt/novell
dobin "${WORKDIR}"/${PN}-${MY_PV}/opt/novell/bin/*
}
pkg_nofetch() {
einfo "This files require you to register at ${HOMEPAGE} (free account)"
einfo "Please download following file:"
if use x86
then
einfo " - ${NOVELL_FILE32}"
elif use amd64
then
einfo " - ${NOVELL_FILE64}"
fi
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"
}