diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-12-02 03:25:51 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-12-02 03:25:51 +0000 |
commit | 8cb8edf2c54e7160897ec779b7c1c15842b8f873 (patch) | |
tree | 571ef31b16b51bea7f3767a5eb1571266bb63653 /sys-apps/devfsd | |
parent | libnids 1.16: Libnids is an implementation of an E-component of Network Intr... (diff) | |
download | gentoo-2-8cb8edf2c54e7160897ec779b7c1c15842b8f873.tar.gz gentoo-2-8cb8edf2c54e7160897ec779b7c1c15842b8f873.tar.bz2 gentoo-2-8cb8edf2c54e7160897ec779b7c1c15842b8f873.zip |
miscellaneous doo-dads.
Diffstat (limited to 'sys-apps/devfsd')
-rw-r--r-- | sys-apps/devfsd/devfsd-1.3.20.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sys-apps/devfsd/devfsd-1.3.20.ebuild b/sys-apps/devfsd/devfsd-1.3.20.ebuild new file mode 100644 index 000000000000..b8da2746627b --- /dev/null +++ b/sys-apps/devfsd/devfsd-1.3.20.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins et al <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/devfsd/devfsd-1.3.20.ebuild,v 1.1 2001/12/02 03:25:51 drobbins Exp $ + +S=${WORKDIR}/${PN} +DESCRIPTION="Daemon for the Linux Device Filesystem" +SRC_URI="ftp://ftp.atnf.csiro.au/pub/people/rgooch/linux/daemons/devfsd/devfsd-v${PV}.tar.gz" +HOMEPAGE="http://www.atnf.csiro.au/~rgooch/linux/" +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + cd ${S} + cp GNUmakefile GNUmakefile.orig + sed -e "s:-O2:${CFLAGS}:g" -e 's:/usr/man:/usr/share/man:' -e '30,32d;8,12d;9d' -e '6c\' -e 'DEFINES := -DLIBNSL="\\"/lib/libnsl.so.1\\""' GNUmakefile.orig > GNUmakefile +} + +src_compile() { + make || die +} + +src_install () { + dodir /sbin /usr/share/man /etc + try make PREFIX=${D} install + exeinto /etc/rc.d/init.d + doexe ${FILESDIR}/devfsd + dodir /dev-state + insinto /etc + doins ${FILESDIR}/devfsd.conf +} |