# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ NOVELL_BUILDID="pvOi9l3qYn4~" NOVELL_FILE32="novell-client-2.0-sle10sp1-i386.iso" NOVELL_FILE64="novell-client-2.0-sle10sp1-x86_64.iso" RESTRICT="mirror strip" inherit novell eutils rpm MY_PV="${PV/_p/-}" DESCRIPTION="Novell Client for Linux file system deamon" HOMEPAGE="http://www.novell.com" SRC_URI="x86? ( http://${NOVELL_ACCOUNT_USERNAME}:${NOVELL_ACCOUNT_PASSWORD}@cdn.novell.com/prot/${NOVELL_BUILDID}/${NOVELL_FILE32} ) amd64? ( http://${NOVELL_ACCOUNT_USERNAME}:${NOVELL_ACCOUNT_PASSWORD}@cdn.novell.com/prot/${NOVELL_BUILDID}/${NOVELL_FILE64} )" LICENSE="Novell-NCL" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" DEPEND=">=app-arch/p7zip-4.15" RDEPEND="virtual/libc >=sys-devel/gcc-4.1 >=net-nds/novell-xtier-base-3.1.5_p46 >=net-fs/novell-novfs-2.0.0_p23 >=app-crypt/novell-nici-2.7.3_p11" src_unpack() { cd "${WORKDIR}" if use x86 then narch=i586 nlib=lib 7z x "${DISTDIR}"/${NOVELL_FILE32} elif use amd64 then narch=x86_64 nlib=lib64 7z x "${DISTDIR}"/${NOVELL_FILE64} fi mkdir -p "${WORKDIR}"/${PN}-${MY_PV} cd ${PN}-${MY_PV} rpm_unpack "${WORKDIR}"/suse/${narch}/${PN}-${MY_PV}.${narch}.rpm } src_compile() { :; } src_install() { into /opt/novell/ncl dobin "${WORKDIR}"/${PN}-${MY_PV}/opt/novell/ncl/bin/* newbin "${WORKDIR}"/${PN}-${MY_PV}/opt/novell/ncl/bin/Debug/novfsd novfsd-Debug dodoc "${WORKDIR}"/${PN}-${MY_PV}/usr/share/doc/packages/${PN}/* if use x86 then doenvd "${FILESDIR}"/80novell-client elif use amd64 then doenvd "${FILESDIR}"/80novell-client64 fi newinitd "${FILESDIR}"/novfsd20.initd novfsd } pkg_preinst() { rc-config stop novfsd rc-config start novell-xregd } pkg_postinst() { # check if mount dir exists otherwise create it if [ ! -d /var/opt/novell/nclmnt ]; then einfo "Creating mount point /var/opt/novell/nclmnt" mkdir -p -m 777 /var/opt/novell/nclmnt fi # set sane defaults EnableSLP=1 EnableNMAS=1 # check slp Support 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 # check nmas Support 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 # enable xtier slp name resolution if [ $EnableSLP -eq 1 ]; then /opt/novell/xtier/bin/regutil -v "\client\policies\network\ip\address resolution providers\configured" "9" REG_SZ "{A18C57F8-17DA-11d1-8FFF-00A0C925D248}" fi # enable xtier NMAS support if [ $EnableNMAS -eq 1 ]; then /opt/novell/xtier/bin/regutil -v "\Client\Policies" "Default Authentication Provider" REG_SZ "{FCB72681-D373-11d3-BC08-00A0C9EA53EF}" fi } pkg_prerm() { rc-config stop novfsd } 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" }