Move to root

This commit is contained in:
Mario Fetka
2012-01-14 09:45:05 +01:00
parent d884fb4a6d
commit 5253d3ea35
482 changed files with 0 additions and 578 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 RMD160 1bbc857fff05d11697d5ab2cc3566acc8b8ba518 SHA1 1a840c525e62527004614568f7d30f52d80ff64a SHA256 0693f311520bfb2aecd361dc11607f682423fee144dd9ecdd12654481111583e
EBUILD novell-sdidiag-2.2.ebuild 1970 RMD160 1e47a17d77504e37d475b59b8e33eb6bec6fbd87 SHA1 ccb64a65a75e843d4d4f027bedde7b0a8419beba SHA256 481c16da0ffaac6b8ecba53568b9f2677abce7cbc16bf649b2cba3c94a927430
MISC ChangeLog 521 RMD160 4e2d753c8c6108a98f0900ed14b3ddacefbe0fb8 SHA1 6d15571431e5c3464840837065f82cd616d3ff91 SHA256 664a26bbe60eadd65630b80d44fbf8d5bf78a922e01577235b85e8309faf8f3a
MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42

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,65 @@
# 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/novell-nici-2.7.3_p12
x86? ( || ( net-nds/novell-ndsbase:8.8 net-nds/novell-ndsbase:8.7 )
|| ( net-misc/novell-ntls:8.8 net-misc/novell-ntls:8.7 ) )
amd64? ( || ( net-nds/novell-ndsbase:8.8[multilib] net-nds/novell-ndsbase:8.7[multilib] )
|| ( net-misc/novell-ntls:8.8[multilib] net-misc/novell-ntls:8.7[multilib] ) )
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"
}