Redigest
This commit is contained in:
8
net-nds/netiq-audtplatformagent/ChangeLog
Normal file
8
net-nds/netiq-audtplatformagent/ChangeLog
Normal file
@@ -0,0 +1,8 @@
|
||||
# ChangeLog for net-nds/novell-audtplatformagent
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: $
|
||||
|
||||
29 Dec 2010; Mario Fetka <mario.fetka@gmail.com>
|
||||
novell-audtplatformagent-2.0.2.62.ebuild:
|
||||
initial checkin
|
||||
|
||||
5
net-nds/netiq-audtplatformagent/Manifest
Normal file
5
net-nds/netiq-audtplatformagent/Manifest
Normal file
@@ -0,0 +1,5 @@
|
||||
DIST eDirectory_88SP6_Linux_i586.tar.gz 108870033 SHA256 92ecbe7533dc1caf27323d8109019d51afbf126e71e948ed5c2d92865618e96b
|
||||
DIST eDirectory_88SP6_Linux_x86_64.tar.gz 116347772 SHA256 a4055d5d3764218542f97b59b67425121aa4b05cc3a1d8e38cfd7b28d7383023
|
||||
EBUILD netiq-audtplatformagent-2.0.2.62.ebuild 2696 SHA256 e9d5dfbf433841ab7c418fc05c03fbe3ed9ff12cc66459d58c05fb4b78506a54 SHA512 b2e756daa5b4ae639401251b5510669abc83192e63498df92e7c6327dcfc3cdd9fd27484d1a5a05195b880114efdd155222fff22c3d1dd84865a41bec8c12367 WHIRLPOOL 252dfedcd6f664f2444afb33063de3e9a4e504d42a4a4acb06c537a0736e6afcacd66d235b58f5cea5ccd83ffa188cd83012c6d7efaa69624964d8c848f91eb2
|
||||
MISC ChangeLog 247 SHA256 a415f76d00c671d2d5634aaa4f86b317229012c26801628b9b5253812086ed41 SHA512 7134d9cfb9a1d99c61f71b9ce45858c3075c7917a047f0605295fd2335b6d5031497b699dca1695e7e58230cc492387f2d1a657909e039827465d5747e783a42 WHIRLPOOL 7151c9ebb114714c109ce8aaf9ad779fb678fe6433b270d2cab9e3375e69e91df2330e08abea9a0e75fc04b1c31c8e7512a80611e2b9f093ceca095904ce749a
|
||||
MISC metadata.xml 226 SHA256 a9d3f7df2362a9a7ddcbe05c5d97d726eeb4bab135b21643508149a08bf6a2b2 SHA512 5912920d8f6e9ee5126fb0aaa5717a562feb009cc59b759c6a6eaa909900b19e95e51e3aa7f32fdf2e77073b19878830b97947148e3adeff3b49e7555cfe29e9 WHIRLPOOL c07e2ddb648893f1e9c422e07b0b73a6d0f7e1c9501200b6fcc9d25fe68c3b05fe4f3523e6844067eeca6969973a44004e1ba8a6fa725591a1916648bd2d4834
|
||||
8
net-nds/netiq-audtplatformagent/metadata.xml
Normal file
8
net-nds/netiq-audtplatformagent/metadata.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>no-herd</herd>
|
||||
<maintainer>
|
||||
<email>mario.fetka@gmail.com</email>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,86 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="1"
|
||||
|
||||
NOVELL_BUILDID32="Yk-7PvWPr3g~"
|
||||
NOVELL_FILE32="eDirectory_88SP6_Linux_i586.tar.gz"
|
||||
NOVELL_BUILDID64="aRbvy7H-57c~"
|
||||
NOVELL_FILE64="eDirectory_88SP6_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
|
||||
net-nds/netiq-audtplatformagent-env"
|
||||
|
||||
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-AUDTplatformagent-${MY_PV}.${narch}.rpm
|
||||
}
|
||||
|
||||
src_compile() { :; }
|
||||
|
||||
src_install() {
|
||||
into /opt/novell/naudit/
|
||||
dobin "${WORKDIR}"/${PN}-${MY_PV}/opt/novell/naudit/l*
|
||||
insinto /opt/novell/naudit/bin
|
||||
doins -r "${WORKDIR}"/${PN}-${MY_PV}/opt/novell/naudit/java
|
||||
insinto /opt/novell/naudit/bin/java
|
||||
doins -r "${WORKDIR}"/${PN}-${MY_PV}/opt/novell/naudit/java/pa
|
||||
dolib.so "${WORKDIR}"/${PN}-${MY_PV}/usr/${nlib}/*.*
|
||||
|
||||
insinto /etc/opt/novell/naudit/conf
|
||||
doins "${WORKDIR}"/${PN}-${MY_PV}/etc/*.*
|
||||
dosym opt/novell/naudit/conf/logevent.conf /etc/logevent.conf
|
||||
|
||||
keepdir /var/opt/novell/naudit/data
|
||||
keepdir /var/opt/novell/naudit/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"
|
||||
}
|
||||
Reference in New Issue
Block a user