diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-02-01 19:38:09 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-02-01 19:38:09 +0000 |
commit | 04556b394e7d1a491b1b75d639d2faacafb060bb (patch) | |
tree | 81bba1388c1bb6719c06e4727178746a1b9dd03a /sys-build | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-04556b394e7d1a491b1b75d639d2faacafb060bb.tar.gz gentoo-2-04556b394e7d1a491b1b75d639d2faacafb060bb.tar.bz2 gentoo-2-04556b394e7d1a491b1b75d639d2faacafb060bb.zip |
*** empty log message ***
Diffstat (limited to 'sys-build')
-rw-r--r-- | sys-build/fileutils/fileutils-4.0.36-r1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-build/fileutils/fileutils-4.0.36-r1.ebuild b/sys-build/fileutils/fileutils-4.0.36-r1.ebuild new file mode 100644 index 000000000000..808d5eca3669 --- /dev/null +++ b/sys-build/fileutils/fileutils-4.0.36-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-build/fileutils/fileutils-4.0.36-r1.ebuild,v 1.1 2001/02/01 19:38:09 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Standard GNU file utilities (chmod, cp, dd, dir, ls, etc)" +SRC_URI="ftp://alpha.gnu.org/gnu/fetish/${A}" +HOMEPAGE="http://www.gnu.org/software/fileutils/fileutils.html" + +DEPEND=">=sys-libs/glibc-2.1.3" + +src_compile() { + try ./configure --prefix=/usr --host=${CHOST} --disable-nls + try make ${MAKEOPTS} LDFLAGS=-static +} + +src_install() { + + cd ${S}/src + into / + dobin chgrp chown dd dir du ln mkdir mknod rm touch \ + chmod cp df ls mkfifo mv rmdir sync + newbin ginstall install + dosym /bin/install /usr/bin/install +} + |