diff options
author | 2001-12-17 07:11:54 +0000 | |
---|---|---|
committer | 2001-12-17 07:11:54 +0000 | |
commit | b306aa670f04d65df936b6d77c157dcd312fd433 (patch) | |
tree | bec0f4cadb52f154b3599cf414f30874c944ac55 /net-fs | |
parent | Added devfs support for mga_vid module (diff) | |
download | historical-b306aa670f04d65df936b6d77c157dcd312fd433.tar.gz historical-b306aa670f04d65df936b6d77c157dcd312fd433.tar.bz2 historical-b306aa670f04d65df936b6d77c157dcd312fd433.zip |
Fixed depmod problem and used KVERS environment variable
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/ftpfs/ftpfs-0.6.2-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-fs/ftpfs/ftpfs-0.6.2-r1.ebuild b/net-fs/ftpfs/ftpfs-0.6.2-r1.ebuild new file mode 100644 index 000000000000..7a04c5babb5d --- /dev/null +++ b/net-fs/ftpfs/ftpfs-0.6.2-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ryan Tolboom <ryan@gentoo.org> +# /space/gentoo/cvsroot/gentoo-x86/net-fs/ftpfs/ftpfs-0.6.2.ebuild,v 1.1 2001/12/02 14:17:10 ryan Exp + +A=${P}-k2.4.tar.gz +S=${WORKDIR}/${P}-k2.4 +DESCRIPTION="A filesystem for mounting FTP volumes" +SRC_URI="http://ftp1.sourceforge.net/ftpfs/${A}" +HOMEPAGE="http://ftpfs.sourceforge.net" + +DEPEND="virtual/glibc + virtual/kernel" + +src_compile() { + cd ftpfs + try make + cd ../ftpmount + try make CFLAGS="${CFLAGS}" +} + +src_install() { + try make MODULESDIR=${D}/lib/modules/${KVERS} FTPMOUNT=${D}/usr/bin/ftpmount install + dodoc CHANGELOG + docinto html + dodoc docs/*.html + docinto html/img + dodoc docs/img/* +} + +pkg_postinst() { + try depmod -aq +} |