summaryrefslogtreecommitdiff
path: root/extra/ypserv
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-05-05 01:06:44 -0700
committerroot <root@rshg054.dnsready.net>2013-05-05 01:06:44 -0700
commit7a600dcabb6923ee79d36a4eaab2fc6867bdb807 (patch)
treebd75ff45c676ff5c7e8744686901ffdcecf6f7b1 /extra/ypserv
parent5f3b2100b811506bec6bcf63b24d1c605dfe8cb6 (diff)
Sun May 5 01:06:40 PDT 2013
Diffstat (limited to 'extra/ypserv')
-rw-r--r--extra/ypserv/PKGBUILD24
-rw-r--r--extra/ypserv/confpost.patch14
-rwxr-xr-xextra/ypserv/yppasswd34
-rwxr-xr-xextra/ypserv/ypserv34
4 files changed, 6 insertions, 100 deletions
diff --git a/extra/ypserv/PKGBUILD b/extra/ypserv/PKGBUILD
index 694c43665..879df8781 100644
--- a/extra/ypserv/PKGBUILD
+++ b/extra/ypserv/PKGBUILD
@@ -1,12 +1,12 @@
-# $Id: PKGBUILD 168108 2012-10-06 00:49:54Z dreisner $
+# $Id: PKGBUILD 184215 2013-05-03 22:54:49Z tomegun $
# Maintainer: Tom Gundersen <teg@jklm.no>
# Contributor: Gaetan Bisson <bisson@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=ypserv
-pkgver=2.28
-pkgrel=2
+pkgver=2.31
+pkgrel=1
pkgdesc='Linux NIS Server'
arch=('i686' 'x86_64')
url='http://www.linux-nis.org/nis/ypserv/'
@@ -15,16 +15,12 @@ depends=('gdbm' 'openslp' 'inetutils' 'yp-tools')
optdepends=('gawk: for printcap support')
backup=('etc/ypserv.conf' 'etc/netgroup' 'var/yp/securenets')
source=("http://www.linux-nis.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
- 'confpost.patch'
'ypxfrd.service'
'yppasswdd.service'
- 'ypserv.service'
- 'yppasswd'
- 'ypserv')
+ 'ypserv.service')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- patch -p1 -i ../confpost.patch
./configure --prefix=/usr
make
}
@@ -36,19 +32,11 @@ package() {
install -D -m644 etc/netgroup "${pkgdir}"/etc/netgroup
install -D -m644 etc/ypserv.conf "${pkgdir}"/etc/ypserv.conf
install -D -m644 etc/securenets "${pkgdir}"/var/yp/securenets
- install -D -m755 ../ypserv "${pkgdir}"/etc/rc.d/ypserv
- install -D -m755 ../yppasswd "${pkgdir}"/etc/rc.d/yppasswd
install -D -m644 ../ypxfrd.service "${pkgdir}"/usr/lib/systemd/system/ypxfrd.service
install -D -m644 ../ypserv.service "${pkgdir}"/usr/lib/systemd/system/ypserv.service
install -D -m644 ../yppasswdd.service "${pkgdir}"/usr/lib/systemd/system/yppasswdd.service
-
- # Provide native service for arch-daemons generator
- ln -s yppasswdd.service "$pkgdir/usr/lib/systemd/system/yppasswd.service"
}
-md5sums=('ed64f489bab494218fc5c5942b95d5b6'
- '8acb314f30d6e531ac9efa8655f68ccb'
+md5sums=('4537b8f0e917edca8f57b70b9cbc37f3'
'c80e253756446d59a90c4c21b1cb8740'
'7cba3dd3544436c3c1f05e36c0018e92'
- '3398271c3e0a054e64b06b99aa2dc63d'
- '4bc84c48ed1bb9659698853acb5cfd76'
- 'c40befe5932f1b42efaced6b46809303')
+ '3398271c3e0a054e64b06b99aa2dc63d')
diff --git a/extra/ypserv/confpost.patch b/extra/ypserv/confpost.patch
deleted file mode 100644
index 489e4368a..000000000
--- a/extra/ypserv/confpost.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -up ypserv-2.27/conf_post.h.qdbm ypserv-2.27/conf_post.h
---- ypserv-2.27/conf_post.h.qdbm 2012-02-01 14:18:01.780846425 +0100
-+++ ypserv-2.27/conf_post.h 2012-02-01 14:18:01.780846425 +0100
-@@ -0,0 +1,10 @@
-+/* Define common preprocessor symbol for HAVE_LIBGDBM and HAVE_LIBQDBM, since
-+ * libraries gdbm and qdbm have same symbol names. */
-+#undef HAVE_COMPAT_LIBGDBM
-+#ifdef HAVE_LIBGDBM
-+#define HAVE_COMPAT_LIBGDBM
-+#endif
-+#ifdef HAVE_LIBQDBM
-+#define HAVE_COMPAT_LIBGDBM
-+#endif
-+
diff --git a/extra/ypserv/yppasswd b/extra/ypserv/yppasswd
deleted file mode 100755
index c2b00b2ca..000000000
--- a/extra/ypserv/yppasswd
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
- start)
- stat_busy "Starting NIS Password Daemon"
- /usr/sbin/rpc.yppasswdd
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon yppasswd
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping NIS Password Daemon"
- killall -q /usr/sbin/rpc.yppasswdd
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon yppasswd
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
diff --git a/extra/ypserv/ypserv b/extra/ypserv/ypserv
deleted file mode 100755
index c36e6901b..000000000
--- a/extra/ypserv/ypserv
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
- start)
- stat_busy "Starting NIS Server"
- /usr/sbin/ypserv
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon ypserv
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping NIS Server"
- killall -q /usr/sbin/ypserv
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon ypserv
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac