net-nds/novell-sentinelplatformagent: bump to 8.8

This commit is contained in:
geos_one 2009-12-18 17:07:00 +00:00
parent 4998591bd5
commit 96e406e8b6
4 changed files with 98 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# ChangeLog for net-nds/novell-sentinelplatformagent
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
18 Dec 2009; Mario Fetka <mario.fetka@gmail.com>
+novell-sentinelplatformagent-1.0.0.15.ebuild, +metadata.xml:
bump to 8.8

View File

@ -0,0 +1,5 @@
DIST eDirectory_88SP5_Linux_i586.tar.gz 92524434 RMD160 8c3cb42aabb13eab2c13c4596faf0034eef3a0ed SHA1 51b6f8c6390b0a9f92d86d9af7bab6054bc8f268 SHA256 891447378202d3822b8de1599086994fee9e186c58e06d561ca4a0c855c4b4ea
DIST eDirectory_88SP5_Linux_x86_64.tar.gz 96059884 RMD160 dac9cc0631b5206eb289d417c602d43f0b74f0b0 SHA1 6c9ece98af9510ac3c284bc72695d771e155bb37 SHA256 7f4d46594909b46f11dc3a5e62a283e8fb8da9bb93e9fbcb02420ca004098092
EBUILD novell-sentinelplatformagent-1.0.0.15.ebuild 2565 RMD160 324168b5a9aa0217b13b7bdff191f9566d519f17 SHA1 2ff07b6d6a2328d4a3989f4717592fa4d186ca57 SHA256 8c23cc7c1b6ae5cf008c2d6d802c956fe5e62521e9c30ab0a4de8844c8642cc0
MISC ChangeLog 267 RMD160 804fd5043eae3ad427d1880778ec3925aaac9310 SHA1 b4de195285268bc888b7d5f335438bc0ef7e2e8b SHA256 134a930a5aa2e492f4740c67240d04e3e58b55c4f6dc50137ba20693d263b6e7
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,80 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
NOVELL_BUILDID32="63eV_vS9dv4~"
NOVELL_FILE32="eDirectory_88SP5_Linux_i586.tar.gz"
NOVELL_BUILDID64="ffdH4AJgrFs~"
NOVELL_FILE64="eDirectory_88SP5_Linux_x86_64.tar.gz"
RESTRICT="mirror strip"
inherit novell eutils rpm multilib versionator
MY_PV=$(replace_version_separator 3 '-')
DESCRIPTION="Novell Sentinel Event Infrastructure"
HOMEPAGE="http://www.novell.com"
SRC_URI="x86? ( http://${NOVELL_ACCOUNT_USERNAME}:${NOVELL_ACCOUNT_PASSWORD}@cdn.novell.com/prot/${NOVELL_BUILDID32}/${NOVELL_FILE32} )
amd64? ( http://${NOVELL_ACCOUNT_USERNAME}:${NOVELL_ACCOUNT_PASSWORD}@cdn.novell.com/prot/${NOVELL_BUILDID64}/${NOVELL_FILE64} )"
LICENSE="Novell-eDir-88"
SLOT="8.8"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND="virtual/libc"
src_unpack() {
cd "${WORKDIR}"
unpack ${A}
if use x86
then
narch=i586
nlib=lib
ndir=Linux
elif use amd64
then
narch=x86_64
nlib=lib64
ndir=Linux64
fi
mkdir -p "${WORKDIR}"/${PN}-${MY_PV}
cd ${PN}-${MY_PV}
rpm_unpack ../work/eDirectory/setup/novell-Sentinelplatformagent-${MY_PV}.${narch}.rpm
}
src_compile() { :; }
src_install() {
into /opt/novell/sentinelpa/
dobin "${WORKDIR}"/${PN}-${MY_PV}/opt/novell/sentinelpa/bin/*
dolib.so "${WORKDIR}"/${PN}-${MY_PV}/opt/novell/sentinelpa/${nlib}/*.*
insinto /etc/opt/novell/sentinelpa/conf
doins "${WORKDIR}"/${PN}-${MY_PV}/etc/opt/novell/sentinelpa/conf/*.*
keepdir /var/opt/novell/sentinelpa/data
keepdir /var/opt/novell/sentinelpa/log
}
#pkg_postinst(){
# /usr/bin/ether
#}
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"
}