94 lines
2.6 KiB
Bash
94 lines
2.6 KiB
Bash
# Copyright 1999-2005 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /srv/svnroot/gentoo/net-fs/novell-novfsd/novell-novfsd-1.2.0_p8.ebuild,v 0.1 2006/07/22 15:06:22 Mario Fetka $
|
|
|
|
inherit eutils rpm
|
|
|
|
MY_PV="${PV/_p/-}"
|
|
DESCRIPTION="Novell Client for Linux file system deamon"
|
|
HOMEPAGE="http://www.novell.com"
|
|
SRC_URI="http://${NOVELL_ACCOUNT_USERNAME}:${NOVELL_ACCOUNT_PASSWORD}@cache.novell.com/prot/2JyMn7sWP_Q~/novell-client-1.2-SLE10.tar.gz"
|
|
LICENSE="Novell"
|
|
SLOT="0"
|
|
KEYWORDS="~x86"
|
|
IUSE="gtk"
|
|
DEPEND=""
|
|
RDEPEND="virtual/libc
|
|
>=sys-devel/gcc-4.1
|
|
>=net-nds/novell-xtier-core-3.1.4
|
|
net-fs/novell-novfs
|
|
!net-misc/novell-novfsd"
|
|
RESTRICT="nomirror nostrip"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
mkdir -p ${WORKDIR}/${PN}-${MY_PV}
|
|
cd ${PN}-${MY_PV}
|
|
rpm_unpack ${WORKDIR}/ncl_build_711/NCL_disk/novell/i586/${PN}-${MY_PV}.i586.rpm
|
|
}
|
|
|
|
src_compile() { :; }
|
|
|
|
src_install() {
|
|
chmod 755 "${WORKDIR}/${PN}-${MY_PV}"/opt/novell/ncl
|
|
chmod 755 "${WORKDIR}/${PN}-${MY_PV}"/opt/novell/ncl/bin
|
|
mv "${WORKDIR}/${PN}-${MY_PV}"/usr/share/doc/packages/${PN} "${WORKDIR}/${PN}-${MY_PV}"/usr/share/doc/${P}
|
|
mv "${WORKDIR}/${PN}-${MY_PV}"/etc "${D}"/ || die "mv etc"
|
|
mv "${WORKDIR}/${PN}-${MY_PV}"/opt "${D}"/ || die "mv opt"
|
|
mv "${WORKDIR}/${PN}-${MY_PV}"/usr "${D}"/ || die "mv usr"
|
|
|
|
insinto /etc/env.d
|
|
doins "${FILESDIR}"/80novell-client
|
|
|
|
exeinto /etc/init.d
|
|
newexe "${FILESDIR}"/novfsd12.initd novfsd
|
|
|
|
|
|
}
|
|
|
|
pkg_preinst() {
|
|
/etc/init.d/novfsd stop
|
|
/etc/init.d/novell-xregd start
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if [ ! -d /var/opt/novell/nclmnt ]; then
|
|
einfo "Creating mount point /var/opt/novell/nclmnt"
|
|
mkdir -p -m 777 /var/opt/novell/nclmnt
|
|
fi
|
|
|
|
EnableSLP=1
|
|
EnableNMAS=1
|
|
|
|
if [ -f /etc/opt/novell/ncl/protocol.conf ]; then
|
|
cat /etc/opt/novell/ncl/protocol.conf |grep Name_Resolution_Providers 2>&1 >/dev/null
|
|
if [ $? -eq 0 ]; then
|
|
cat /etc/opt/novell/ncl/protocol.conf |grep SLP 2>&1 >/dev/null
|
|
if [ $? -ne 0 ]; then
|
|
EnableSLP=0
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [ -f /etc/opt/novell/ncl/login.conf ]; then
|
|
cat /etc/opt/novell/ncl/login.conf |grep "NMAS_Authentication=false" 2>&1 >/dev/null
|
|
if [ $? -eq 0 ]; then
|
|
EnableNMAS=0
|
|
fi
|
|
fi
|
|
|
|
if [ $EnableSLP -eq 1 ]; then
|
|
# enable xtier slp name resolution
|
|
/opt/novell/xtier/bin/regutil -v "\client\policies\network\ip\address resolution providers\configured" "9" REG_SZ "{A18C57F8-17DA-11d1-8FFF-00A0C925D248}"
|
|
fi
|
|
|
|
if [ $EnableNMAS -eq 1 ]; then
|
|
# enable xtier NMAS support
|
|
/opt/novell/xtier/bin/regutil -v "\Client\Policies" "Default Authentication Provider" REG_SZ "{FCB72681-D373-11d3-BC08-00A0C9EA53EF}"
|
|
fi
|
|
}
|
|
|
|
pkg_prerm() {
|
|
/etc/init.d/novfsd stop
|
|
}
|