public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-irc/irc-server/, net-irc/irc-server/files/
@ 2016-05-03  0:02 Austin English
  0 siblings, 0 replies; only message in thread
From: Austin English @ 2016-05-03  0:02 UTC (permalink / raw
  To: gentoo-commits

commit:     ef9efe522330d913ba859834be3fe30a0077b64c
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 23:27:18 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Mon May  2 23:35:40 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef9efe52

net-irc/irc-server: use #!/sbin/openrc-run instead of #!/sbin/runscript

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

Package-Manager: portage-2.2.26

 net-irc/irc-server/files/ircd.rc                  |   4 +-
 net-irc/irc-server/irc-server-2.11.1_p1-r3.ebuild | 103 ++++++++++++++++++++++
 2 files changed, 105 insertions(+), 2 deletions(-)

diff --git a/net-irc/irc-server/files/ircd.rc b/net-irc/irc-server/files/ircd.rc
index e048023..3a48660 100644
--- a/net-irc/irc-server/files/ircd.rc
+++ b/net-irc/irc-server/files/ircd.rc
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2005 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-irc/irc-server/irc-server-2.11.1_p1-r3.ebuild b/net-irc/irc-server/irc-server-2.11.1_p1-r3.ebuild
new file mode 100644
index 0000000..cf0b971
--- /dev/null
+++ b/net-irc/irc-server/irc-server-2.11.1_p1-r3.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils versionator flag-o-matic user
+
+MY_P=irc${PV/_/}
+
+DESCRIPTION="RFC compliant IRC server"
+HOMEPAGE="http://www.irc.org/"
+SRC_URI="ftp://ftp.irc.org/irc/server/${MY_P}.tgz
+	ftp://ftp.irc.org/irc/server/Old/irc$(get_version_component_range 1-2)/${MY_P}.tgz"
+
+LICENSE="GPL-1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="zlib ipv6"
+
+RDEPEND="sys-libs/ncurses
+	zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+	sys-apps/sed
+	sys-apps/grep"
+
+S=${WORKDIR}/${MY_P}
+
+pkg_setup() {
+	enewgroup ircd
+	enewuser ircd -1 -1 -1 ircd
+}
+
+src_prepare() {
+	eapply "${FILESDIR}"/2.10.3_p3-gentoo.patch
+	default
+}
+
+src_configure () {
+	sed -i \
+		-e "s/^#undef\tOPER_KILL$/#define\tOPER_KILL/" \
+		-e "s/^#undef\tOPER_RESTART$/#define\tOPER_RESTART/" \
+		-e "s/^#undef TIMEDKLINES$/#define\tTIMEDKLINES\t60/" \
+		-e "s/^#undef\tR_LINES$/#define\tR_LINES/" \
+		-e "s/^#undef\tCRYPT_OPER_PASSWORD$/#define\tCRYPT_OPER_PASSWORD/" \
+		-e "s/^#undef\tCRYPT_LINK_PASSWORD$/#define\tCRYPT_LINK_PASSWORD/" \
+		-e "s/^#undef\tIRC_UID$/#define\tIRC_UID\t$IRCUID/" \
+		-e "s/^#undef\tIRC_GID$/#define\tIRC_GID\t$IRCGID/" \
+		-e "s/^#undef USE_SERVICES$/#define\tUSE_SERVICES/" \
+		"${S}"/support/config.h.dist
+
+	use zlib && sed -i -e "s/^#undef\tZIP_LINKS$/#define\tZIP_LINKS/" "${S}"/support/config.h.dist
+
+	econf \
+		--sysconfdir=/etc/ircd \
+		--localstatedir=/var/run/ircd \
+		--with-logdir=/var/log/ircd \
+		--with-rundir=/var/run/ircd \
+		--mandir='${prefix}/share/man' \
+		$(use_with zlib) \
+		$(use_enable ipv6 ip6)
+}
+
+src_compile() {
+	cd $(support/config.guess)
+	emake ircd iauth chkconf ircd-mkpasswd ircdwatch tkserv
+}
+
+src_install() {
+	cd $(support/config.guess)
+
+	emake \
+		prefix="${D}"/usr \
+		ircd_conf_dir="${D}"/etc/ircd \
+		ircd_var_dir="${D}"/var/run/ircd \
+		ircd_log_dir="${D}"/var/log/ircd \
+		install-server \
+		install-tkserv
+
+	fowners ircd:ircd /var/run/ircd
+	fowners ircd:ircd /var/log/ircd
+
+	cd ../doc
+	dodoc \
+		*-New alt-irc-faq Authors BUGS ChangeLog Etiquette \
+		iauth-internals.txt INSTALL.appendix INSTALL.* \
+		m4macros README RELEASE* rfc* SERVICE*
+
+	docinto Juped
+	dodoc Juped/Advertisement Juped/ChangeLog.* Juped/INSTALL
+
+	docinto Juped/US-Admin
+	dodoc Juped/US-Admin/Networking
+
+	docinto Nets
+	dodoc Nets/IRCNet
+
+	docinto Nets/Europe
+	dodoc Nets/Europe/*
+
+	newinitd "${FILESDIR}"/ircd.rc ircd
+	newconfd "${FILESDIR}"/ircd.confd ircd
+}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-05-03  0:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-03  0:02 [gentoo-commits] repo/gentoo:master commit in: net-irc/irc-server/, net-irc/irc-server/files/ Austin English

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox