diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-10 21:49:38 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-10 21:49:38 +0000 |
commit | 573841cc7d6f4d5e3de6a375d25506fa62fdae8b (patch) | |
tree | 3a43678b01c140e807c9122ec427db682c7fd282 /net-fs | |
parent | initial important of the root framework (diff) | |
download | historical-573841cc7d6f4d5e3de6a375d25506fa62fdae8b.tar.gz historical-573841cc7d6f4d5e3de6a375d25506fa62fdae8b.tar.bz2 historical-573841cc7d6f4d5e3de6a375d25506fa62fdae8b.zip |
sandbox fix
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/ftpfs/ChangeLog | 6 | ||||
-rw-r--r-- | net-fs/ftpfs/files/digest-ftpfs-0.6.2-r2 | 1 | ||||
-rw-r--r-- | net-fs/ftpfs/ftpfs-0.6.2-r2.ebuild | 37 |
3 files changed, 43 insertions, 1 deletions
diff --git a/net-fs/ftpfs/ChangeLog b/net-fs/ftpfs/ChangeLog index e612ba7627ca..616ee250e130 100644 --- a/net-fs/ftpfs/ChangeLog +++ b/net-fs/ftpfs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-fs/ftpfs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-fs/ftpfs/ChangeLog,v 1.1 2002/02/01 21:53:32 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/ftpfs/ChangeLog,v 1.2 2002/04/10 21:49:38 spider Exp $ + +*ftpfs-0.6.2-r2 (10 Apr 2002) + 10 Apr 2002; Spider <spider@gentoo.org> + sed out depmod from "make install" to avoid sandbox errors. *ftpfs-0.6.2-r1 (1 Feb 2002) diff --git a/net-fs/ftpfs/files/digest-ftpfs-0.6.2-r2 b/net-fs/ftpfs/files/digest-ftpfs-0.6.2-r2 new file mode 100644 index 000000000000..f384845a3421 --- /dev/null +++ b/net-fs/ftpfs/files/digest-ftpfs-0.6.2-r2 @@ -0,0 +1 @@ +MD5 5e160de7f7237cdb27e5bc6f234e8c14 ftpfs-0.6.2-k2.4.tar.gz 48743 diff --git a/net-fs/ftpfs/ftpfs-0.6.2-r2.ebuild b/net-fs/ftpfs/ftpfs-0.6.2-r2.ebuild new file mode 100644 index 000000000000..0b29e36f0942 --- /dev/null +++ b/net-fs/ftpfs/ftpfs-0.6.2-r2.ebuild @@ -0,0 +1,37 @@ +# 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() { + mv ftpfs/Makefile ftpfs/Makefile.old + cat ftpfs/Makefile.old |sed s:"depmod -aq"::g > ftpfs/Makefile + 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() { + + echo "running depmod...." + try depmod -aq +} |