diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-nds/ypbind | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-nds/ypbind')
-rw-r--r-- | net-nds/ypbind/Manifest | 1 | ||||
-rw-r--r-- | net-nds/ypbind/files/ypbind.confd-r1 | 4 | ||||
-rw-r--r-- | net-nds/ypbind/files/ypbind.initd | 41 | ||||
-rw-r--r-- | net-nds/ypbind/files/ypbind.service | 11 | ||||
-rw-r--r-- | net-nds/ypbind/metadata.xml | 7 | ||||
-rw-r--r-- | net-nds/ypbind/ypbind-1.37.2.ebuild | 65 |
6 files changed, 129 insertions, 0 deletions
diff --git a/net-nds/ypbind/Manifest b/net-nds/ypbind/Manifest new file mode 100644 index 000000000000..76643dcc4901 --- /dev/null +++ b/net-nds/ypbind/Manifest @@ -0,0 +1 @@ +DIST ypbind-mt-1.37.2.tar.bz2 197280 SHA256 abe842b7943bcee4685a63fcd7e40954ac8b97fa94b4a470be9520a6ccde063d SHA512 b101a1144b6886ff02d4ac83705313e20dac998aa30239d8ae34a0413a8deb4e786bbe3b549368119408593ceb40a95170b345c119a23b8fdf2461746c70a7be WHIRLPOOL 74bae5da90187e8e99d514ce25309dfeecd4ea93768bc1810ba6fcaa07acc643991893779496cd8faedc022bc26e565770e24cf258061662c105b42b2c02be9b diff --git a/net-nds/ypbind/files/ypbind.confd-r1 b/net-nds/ypbind/files/ypbind.confd-r1 new file mode 100644 index 000000000000..91cdc60c1030 --- /dev/null +++ b/net-nds/ypbind/files/ypbind.confd-r1 @@ -0,0 +1,4 @@ +# Config file for /etc/init.d/ypbind + +# Set any command line options you want to pass to ypbind. +YPBIND_OPTS="" diff --git a/net-nds/ypbind/files/ypbind.initd b/net-nds/ypbind/files/ypbind.initd new file mode 100644 index 000000000000..26d5d9a65b8b --- /dev/null +++ b/net-nds/ypbind/files/ypbind.initd @@ -0,0 +1,41 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +depend() { + need net portmap + use ypserv domainname +} + +start() { + ebegin "Starting ypbind" + if [ -n "${YPBIND_OPTS}" ]; then + YOPTS="-- ${YPBIND_OPTS}" + fi + start-stop-daemon --start --quiet --exec /usr/sbin/ypbind ${YOPTS} + local ret=$? + if [ $ret -eq 0 ] ; then + notfound=1 + for i in 0 1 2 3 4 5 6 7 8 9 + do + ypwhich >/dev/null 2>&1 && { notfound=0; break; } + sleep 1 + done + if [ $notfound -eq 1 ] ; then + eend 1 "No NIS server found" + else + eend 0 + fi + else + eend $ret + fi +} + +stop() { + ebegin "Stopping ypbind" + start-stop-daemon --stop --quiet --exec /usr/sbin/ypbind + eend $? + # Remove binding files, if ypbind "forgets" it + rm -f /var/yp/binding/* +} diff --git a/net-nds/ypbind/files/ypbind.service b/net-nds/ypbind/files/ypbind.service new file mode 100644 index 000000000000..a04ed71fe0d0 --- /dev/null +++ b/net-nds/ypbind/files/ypbind.service @@ -0,0 +1,11 @@ +[Unit] +Description=YP Bind +Requires=rpcbind.service domainname.service +After=rpcbind.service domainname.service network.target +Before=systemd-user-sessions.service + +[Service] +ExecStart=/usr/sbin/ypbind -foreground + +[Install] +WantedBy=multi-user.target diff --git a/net-nds/ypbind/metadata.xml b/net-nds/ypbind/metadata.xml new file mode 100644 index 000000000000..ff62877c67ae --- /dev/null +++ b/net-nds/ypbind/metadata.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>maintainer-needed@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/net-nds/ypbind/ypbind-1.37.2.ebuild b/net-nds/ypbind/ypbind-1.37.2.ebuild new file mode 100644 index 000000000000..0607e24d7182 --- /dev/null +++ b/net-nds/ypbind/ypbind-1.37.2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit readme.gentoo systemd + +MY_P=${PN}-mt-${PV} +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)" +HOMEPAGE="http://www.linux-nis.org/nis/ypbind-mt/index.html" +SRC_URI="http://www.linux-nis.org/download/ypbind-mt/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86" +IUSE="debug dbus nls slp systemd" + +RDEPEND=" + debug? ( dev-libs/dmalloc ) + dbus? ( dev-libs/dbus-glib ) + slp? ( net-libs/openslp ) + systemd? ( + net-nds/rpcbind + >=net-nds/yp-tools-2.12-r1 + sys-apps/systemd ) + !systemd? ( + net-nds/yp-tools + || ( net-nds/portmap net-nds/rpcbind ) ) +" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) +" + +DOC_CONTENTS=" + If you are using dhcpcd, be sure to add the -Y option to + dhcpcd_eth0 (or eth1, etc.) to keep dhcpcd from clobbering + /etc/yp.conf. +" + +src_prepare() { + ! use systemd && export ac_cv_header_systemd_sd_daemon_h=no +} + +src_configure() { + econf \ + $(use_enable nls) \ + $(use_enable slp) \ + $(use_with debug dmalloc) \ + $(use_enable dbus dbus-nm) +} + +src_install() { + default + + insinto /etc + newins etc/yp.conf yp.conf.example + + newconfd "${FILESDIR}/ypbind.confd-r1" ypbind + newinitd "${FILESDIR}/ypbind.initd" ypbind + use systemd && systemd_dounit "${FILESDIR}/ypbind.service" + + readme.gentoo_create_doc +} |