commit:     b372beb51de84f4f5268c717c52e6aea6722bf37
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Wed May  4 00:51:44 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Wed May  4 00:51:44 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b372beb5

net-misc/spread: use #!/sbin/openrc-run instead of #!/sbin/runscript

Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

 net-misc/spread/files/spread.init.d    |  5 ++---
 net-misc/spread/spread-4.1.0-r1.ebuild | 40 ++++++++++++++++++++++++++++++++++
 net-misc/spread/spread-4.3.0-r1.ebuild | 39 +++++++++++++++++++++++++++++++++
 3 files changed, 81 insertions(+), 3 deletions(-)

diff --git a/net-misc/spread/files/spread.init.d 
b/net-misc/spread/files/spread.init.d
index b62ec6e..9d55184 100644
--- a/net-misc/spread/files/spread.init.d
+++ b/net-misc/spread/files/spread.init.d
@@ -1,8 +1,7 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
-# $Id$
 
 depend() {
        need net

diff --git a/net-misc/spread/spread-4.1.0-r1.ebuild 
b/net-misc/spread/spread-4.1.0-r1.ebuild
new file mode 100644
index 0000000..67438ab
--- /dev/null
+++ b/net-misc/spread/spread-4.1.0-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+inherit user
+
+MY_PN="spread-src"
+
+DESCRIPTION="Distributed network messaging system"
+HOMEPAGE="http://www.spread.org";
+SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="Spread-1.0 GPL-2"
+SLOT="0"
+KEYWORDS="x86 amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+pkg_setup() {
+       enewuser spread
+       enewgroup spread
+}
+
+src_prepare() {
+       default
+
+       # don't strip binaries
+       sed -i -e 's/0755 -s/0755/g' daemon/Makefile.in examples/Makefile.in
+}
+
+src_install() {
+       emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install
+       newinitd "${FILESDIR}"/spread.init.d spread
+       dodir /var/run/spread
+}

diff --git a/net-misc/spread/spread-4.3.0-r1.ebuild 
b/net-misc/spread/spread-4.3.0-r1.ebuild
new file mode 100644
index 0000000..57978f7
--- /dev/null
+++ b/net-misc/spread/spread-4.3.0-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+inherit user
+
+MY_PN="spread-src"
+
+DESCRIPTION="Distributed network messaging system"
+HOMEPAGE="http://www.spread.org";
+SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="Spread-1.0 GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+pkg_setup() {
+       enewuser spread
+       enewgroup spread
+}
+
+src_prepare() {
+       default
+
+       # don't strip binaries
+       sed -i -e 's/0755 -s/0755/g' daemon/Makefile.in examples/Makefile.in
+}
+
+src_install() {
+       emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install
+       newinitd "${FILESDIR}"/spread.init.d spread
+}

Reply via email to