diff options
author | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2002-06-20 16:46:56 +0000 |
---|---|---|
committer | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2002-06-20 16:46:56 +0000 |
commit | 5da31d45b97519bf5aefab0d94f28962c387a6fe (patch) | |
tree | f281aa879ee37ab8eeeec17588fd012567f487b6 /net-fs/ncpfs | |
parent | new version (diff) | |
download | historical-5da31d45b97519bf5aefab0d94f28962c387a6fe.tar.gz historical-5da31d45b97519bf5aefab0d94f28962c387a6fe.tar.bz2 historical-5da31d45b97519bf5aefab0d94f28962c387a6fe.zip |
new ebuild
Diffstat (limited to 'net-fs/ncpfs')
-rw-r--r-- | net-fs/ncpfs/ChangeLog | 13 | ||||
-rw-r--r-- | net-fs/ncpfs/files/digest-ncpfs-2.2.0.19 | 1 | ||||
-rw-r--r-- | net-fs/ncpfs/ncpfs-2.2.0.19.ebuild | 33 |
3 files changed, 47 insertions, 0 deletions
diff --git a/net-fs/ncpfs/ChangeLog b/net-fs/ncpfs/ChangeLog new file mode 100644 index 000000000000..7cc3ce2d8d8a --- /dev/null +++ b/net-fs/ncpfs/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for net-fs/ncpfs +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# Author Heiko Helmle <helman@gmx.net> +# $Header: /var/cvsroot/gentoo-x86/net-fs/ncpfs/ChangeLog,v 1.1 2002/06/20 16:46:56 bass Exp $ + +*ncpfs-2.2.0.19 (20 Jun 2002) + + 20 Jun 2002; J.Alberto S.L. <bass@gentoo.org> ncpfs-2.2.0.19.ebuild: + + First relase. + + + diff --git a/net-fs/ncpfs/files/digest-ncpfs-2.2.0.19 b/net-fs/ncpfs/files/digest-ncpfs-2.2.0.19 new file mode 100644 index 000000000000..c547999575bf --- /dev/null +++ b/net-fs/ncpfs/files/digest-ncpfs-2.2.0.19 @@ -0,0 +1 @@ +MD5 edaa6df0b892f0948e543b592eca36d3 ncpfs-2.2.0.19.tar.gz 1465012 diff --git a/net-fs/ncpfs/ncpfs-2.2.0.19.ebuild b/net-fs/ncpfs/ncpfs-2.2.0.19.ebuild new file mode 100644 index 000000000000..fa66cb5e789f --- /dev/null +++ b/net-fs/ncpfs/ncpfs-2.2.0.19.ebuild @@ -0,0 +1,33 @@ +#Copyright 2002 Gentoo Technologies, Inc. +#Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-fs/ncpfs/ncpfs-2.2.0.19.ebuild,v 1.1 2002/06/20 16:46:56 bass Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Provides Access to Netware services using the NCP protocol (Kernel support must be activated!)" +SRC_URI="ftp://platan.vc.cvut.cz/pub/linux/ncpfs/latest/${P}.tar.gz" +HOMEPAGE="ftp://platan.vc.cvut.cz/pub/linux/ncpfs/latest/" +LICENSE="GPL-2" +SLOT="0" +DEPEND="" +RDEPEND="${DEPEND}" + +src_compile() { + + ./configure \ + --prefix=/usr \ + --prefix=/usr \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + || die "./configure failed" + emake || die +} + +src_install () { + # directory ${D}/lib/security needs to be created or the install fails + dodir /lib/security + make DESTDIR=${D} install || die +} + + + |