From 411b5704c0a8b6863cfa505e34f87bae2e11914b Mon Sep 17 00:00:00 2001 From: geos_one Date: Thu, 1 Nov 2007 11:03:03 +0000 Subject: [PATCH] add new package --- .../novell-xtier-xplat/files/80novell-xtier | 5 ++ .../novell-xtier-xplat/files/80novell-xtier64 | 5 ++ .../novell-xtier-xplat-3.1.5_p46.ebuild | 84 +++++++++++++++++++ 3 files changed, 94 insertions(+) create mode 100644 trunk/novell4gentoo/net-nds/novell-xtier-xplat/files/80novell-xtier create mode 100644 trunk/novell4gentoo/net-nds/novell-xtier-xplat/files/80novell-xtier64 create mode 100644 trunk/novell4gentoo/net-nds/novell-xtier-xplat/novell-xtier-xplat-3.1.5_p46.ebuild diff --git a/trunk/novell4gentoo/net-nds/novell-xtier-xplat/files/80novell-xtier b/trunk/novell4gentoo/net-nds/novell-xtier-xplat/files/80novell-xtier new file mode 100644 index 00000000..4e576b35 --- /dev/null +++ b/trunk/novell4gentoo/net-nds/novell-xtier-xplat/files/80novell-xtier @@ -0,0 +1,5 @@ +NOVELL_XTIER_DIR=/opt/novell/xtier +PATH=/opt/novell/xtier/bin +ROOTPATH=/opt/novell/xtier/bin +LDPATH=/opt/novell/xtier/lib +PRELINK_PATH_MASK=/opt/novell/xtier/lib:/opt/novell/xtier/bin \ No newline at end of file diff --git a/trunk/novell4gentoo/net-nds/novell-xtier-xplat/files/80novell-xtier64 b/trunk/novell4gentoo/net-nds/novell-xtier-xplat/files/80novell-xtier64 new file mode 100644 index 00000000..17e24efa --- /dev/null +++ b/trunk/novell4gentoo/net-nds/novell-xtier-xplat/files/80novell-xtier64 @@ -0,0 +1,5 @@ +NOVELL_XTIER_DIR=/opt/novell/xtier +PATH=/opt/novell/xtier/bin +ROOTPATH=/opt/novell/xtier/bin +LDPATH=/opt/novell/xtier/lib32:/opt/novell/xtier/lib64 +PRELINK_PATH_MASK=/opt/novell/xtier/lib32:/opt/novell/xtier/lib64:/opt/novell/xtier/bin \ No newline at end of file diff --git a/trunk/novell4gentoo/net-nds/novell-xtier-xplat/novell-xtier-xplat-3.1.5_p46.ebuild b/trunk/novell4gentoo/net-nds/novell-xtier-xplat/novell-xtier-xplat-3.1.5_p46.ebuild new file mode 100644 index 00000000..82f9c30e --- /dev/null +++ b/trunk/novell4gentoo/net-nds/novell-xtier-xplat/novell-xtier-xplat-3.1.5_p46.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2007 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 XTier XPLAT runtime libraries" +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-EULA" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND=">=app-arch/p7zip-4.15" + +RDEPEND="virtual/libc + >=sys-auth/novell-nmasclient-3.4.0_p17 + =net-nds/novell-xtier-base-${PV}" + +RESTRICT="mirror strip" + +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/xtier/ + dolib.so ${WORKDIR}/${PN}-${MY_PV}/opt/novell/xtier/${nlib}/* + dodoc ${WORKDIR}/${PN}-${MY_PV}/usr/share/doc/packages/${PN}/* + if use x86 + then + doenvd "${FILESDIR}"/80novell-xtier + elif use amd64 + then + doenvd "${FILESDIR}"/80novell-xtier64 + fi +} + +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" +} +