net-misc/spread: use #!/sbin/openrc-run instead of #!/sbin/runscript
authorAustin English <wizardedit@gentoo.org>
Wed, 4 May 2016 00:51:44 +0000 (19:51 -0500)
committerAustin English <wizardedit@gentoo.org>
Wed, 4 May 2016 00:51:44 +0000 (19:51 -0500)
Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

net-misc/spread/files/spread.init.d
net-misc/spread/spread-4.1.0-r1.ebuild [new file with mode: 0644]
net-misc/spread/spread-4.3.0-r1.ebuild [new file with mode: 0644]

index b62ec6e33a79ac084ddeedffe1663396608d2f7e..9d551840a344c98c8709c1cd08dca714c116a862 100644 (file)
@@ -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 (file)
index 0000000..67438ab
--- /dev/null
@@ -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 (file)
index 0000000..57978f7
--- /dev/null
@@ -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
+}