diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-06-08 15:09:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-06-08 15:09:19 +0000 |
commit | d968b945c9670fb24e64c9992dd1083f571283d6 (patch) | |
tree | e352de02fca03ffa7f79b559e04cdd41f15a3b47 /net-fs | |
parent | Start wider testing for 3.3.3-r6, marked ~x86. (diff) | |
download | historical-d968b945c9670fb24e64c9992dd1083f571283d6.tar.gz historical-d968b945c9670fb24e64c9992dd1083f571283d6.tar.bz2 historical-d968b945c9670fb24e64c9992dd1083f571283d6.zip |
initial package
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/idmapd/ChangeLog | 8 | ||||
-rw-r--r-- | net-fs/idmapd/files/1.5-no-string.patch | 12 | ||||
-rw-r--r-- | net-fs/idmapd/files/digest-idmapd-1.5 | 1 | ||||
-rw-r--r-- | net-fs/idmapd/idmapd-1.5.ebuild | 29 |
4 files changed, 50 insertions, 0 deletions
diff --git a/net-fs/idmapd/ChangeLog b/net-fs/idmapd/ChangeLog new file mode 100644 index 000000000000..42464ba58871 --- /dev/null +++ b/net-fs/idmapd/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-fs/idmapd +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/idmapd/ChangeLog,v 1.1 2004/06/08 15:09:18 vapier Exp $ + +*idmapd-1.5 (08 Jun 2004) + + 08 Jun 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/net-fs/idmapd/files/1.5-no-string.patch b/net-fs/idmapd/files/1.5-no-string.patch new file mode 100644 index 000000000000..18dba4f9f941 --- /dev/null +++ b/net-fs/idmapd/files/1.5-no-string.patch @@ -0,0 +1,12 @@ +--- idmapd-1.5/config.h.in.orig 2004-06-08 11:05:01.336374368 -0400 ++++ idmapd-1.5/config.h.in 2004-06-08 11:05:10.398996640 -0400 +@@ -112,9 +112,6 @@ + void setproctitle(const char *fmt, ...); + #endif + +-#ifndef HAVE_STRSEP +-char *strsep(char **, const char *); +-#endif + + #ifndef HAVE_ERR + void err(int, const char *, ...); diff --git a/net-fs/idmapd/files/digest-idmapd-1.5 b/net-fs/idmapd/files/digest-idmapd-1.5 new file mode 100644 index 000000000000..b8eb28a95048 --- /dev/null +++ b/net-fs/idmapd/files/digest-idmapd-1.5 @@ -0,0 +1 @@ +MD5 f84cf146a42078371a7b0ac533ba5b9a idmapd-1.5.tar.gz 119880 diff --git a/net-fs/idmapd/idmapd-1.5.ebuild b/net-fs/idmapd/idmapd-1.5.ebuild new file mode 100644 index 000000000000..f9bdac0a0606 --- /dev/null +++ b/net-fs/idmapd/idmapd-1.5.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/idmapd/idmapd-1.5.ebuild,v 1.1 2004/06/08 15:09:19 vapier Exp $ + +inherit eutils + +DESCRIPTION="NFSv4 ID <-> name mapping daemon" +HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/nfsv4-linux/" +SRC_URI="http://www.citi.umich.edu/projects/nfsv4/nfsv4-linux/idmapd/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="dev-libs/libevent" + +src_unpack() { + unpack ${A} + cd ${S} + rm -rf libevent-0.6/* + echo 'all:'$'\n''install:' > libevent-0.6/Makefile + sed -i "s:-g \$(AM_CFLAGS) -Ilibevent-0\.6:@CFLAGS@:" Makefile.in + epatch ${FILESDIR}/${PV}-no-string.patch +} + +src_install() { + make install DESTDIR=${D} || die +} |