summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-06-15 13:08:50 +0000
committerAchim Gottinger <achim@gentoo.org>2001-06-15 13:08:50 +0000
commit22c77ee3eacda4ada25aa7c1f031490873227b4b (patch)
tree5a220933a87b704b9c3777aeb9aa06969b6b6c8e /net-fs/netatalk
parent- fixed bug in the svc-dictd file. The automagic dictionary detection stuff (diff)
downloadhistorical-22c77ee3eacda4ada25aa7c1f031490873227b4b.tar.gz
historical-22c77ee3eacda4ada25aa7c1f031490873227b4b.tar.bz2
historical-22c77ee3eacda4ada25aa7c1f031490873227b4b.zip
*** empty log message ***
Diffstat (limited to 'net-fs/netatalk')
-rwxr-xr-xnet-fs/netatalk/files/atalk3
-rw-r--r--net-fs/netatalk/netatalk-1.4.99.0.20001108.ebuild8
2 files changed, 6 insertions, 5 deletions
diff --git a/net-fs/netatalk/files/atalk b/net-fs/netatalk/files/atalk
index 9c722c1314b3..c6a2288b1eea 100755
--- a/net-fs/netatalk/files/atalk
+++ b/net-fs/netatalk/files/atalk
@@ -11,6 +11,7 @@
#
. /etc/rc.d/config/functions
+ . /etc/atalk/netatalk.conf
SERVICE="Appletalk"
opts="start stop restart"
@@ -29,7 +30,7 @@ start () {
start-stop-daemon --start --quiet --exec /usr/sbin/papd 1>&2
echo ' papd'
- start-stop-daemon --start --quiet --exec /usr/sbin/afpd 1>&2
+ start-stop-daemon --start --quiet --exec /usr/sbin/afpd -- $AFPD_UMALIST 1>&2
echo ' afpd'
eend $? "Error starting $SERVICE daemons"
diff --git a/net-fs/netatalk/netatalk-1.4.99.0.20001108.ebuild b/net-fs/netatalk/netatalk-1.4.99.0.20001108.ebuild
index ba6db898c11b..1485d5604dbf 100644
--- a/net-fs/netatalk/netatalk-1.4.99.0.20001108.ebuild
+++ b/net-fs/netatalk/netatalk-1.4.99.0.20001108.ebuild
@@ -1,7 +1,7 @@
# 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/net-fs/netatalk/netatalk-1.4.99.0.20001108.ebuild,v 1.4 2001/05/30 18:24:34 achim Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/netatalk/netatalk-1.4.99.0.20001108.ebuild,v 1.5 2001/06/15 13:08:50 achim Exp $
P=netatalk-1.4.99-0.20001108
A=${P}.tar.gz
@@ -34,7 +34,7 @@ src_compile() {
myconf="$myconf --with-tcp-wrappers"
fi
try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} \
- --with-shadow $myconf
+ $myconf
try make
@@ -44,8 +44,8 @@ src_install() {
try make DESTDIR=${D} install
rm ${D}/etc/rc.d/init.d/*
- insinto /etc/rc.d/init.d
- doins ${FILESDIR}/atalk
+ exeinto /etc/rc.d/init.d
+ doexe ${FILESDIR}/atalk
dodoc BUGS CHANGES README* COPYRIGHT VERSION
}