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

commit:     4c36c67ebdbf6ab2c231a51ded45dd5eaaa6d181
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 23:41:47 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Mon May  2 23:41:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c36c67e

net-irc/ptlink-ircd: remove old versions

Package-Manager: portage-2.2.26

 net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r2.ebuild | 93 ------------------------
 1 file changed, 93 deletions(-)

diff --git a/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r2.ebuild b/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r2.ebuild
deleted file mode 100644
index f21eeab..0000000
--- a/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r2.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils ssl-cert user
-
-MY_P="PTlink${PV}"
-
-DESCRIPTION="Secure IRC daemon with many advanced features"
-HOMEPAGE="http://www.ptlink.net/"
-SRC_URI="ftp://ftp.sunsite.dk/projects/ptlink/ircd/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc ~sparc ~x86"
-IUSE="ssl"
-
-DEPEND="
-	sys-libs/zlib
-	ssl? ( dev-libs/openssl:0= )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-	ecvs_clean
-}
-
-src_configure() {
-	econf \
-		--disable-ipv6 \
-		$(use_with ssl ssl openssl)
-}
-
-src_compile() {
-	emake CFLAGS="${CFLAGS}"
-}
-
-src_install() {
-	newbin src/ircd ptlink-ircd
-	newbin tools/fixklines ptlink-ircd-fixklines
-	newbin tools/mkpasswd ptlink-ircd-mkpasswd
-
-	insinto /etc/ptlink-ircd
-	fperms 700 /etc/ptlink-ircd
-	doins samples/{kline.conf,{opers,ptlink}.motd,help.{admin,oper,user}}
-	newins samples/example.conf.short ircd.conf
-	newins samples/example.conf.trillian ircd.conf.trillian
-	newins samples/main.dconf.sample main.dconf
-	newins samples/network.dconf.sample network.dconf
-
-	insinto /usr/share/ptlink-ircd/codepage
-	doins src/codepage/*.enc
-	dosym /usr/share/ptlink-ircd/codepage /etc/ptlink-ircd/codepage
-
-	rm -rf doc/old
-	dodoc doc/* doc_hybrid6/* ircdcron/* CHANGES README
-
-	keepdir /var/log/ptlink-ircd /var/lib/ptlink-ircd
-	dosym /var/log/ptlink-ircd /var/lib/ptlink-ircd/log
-
-	newinitd "${FILESDIR}/ptlink-ircd.initd" ptlink-ircd
-	newconfd "${FILESDIR}/ptlink-ircd.confd" ptlink-ircd
-}
-
-pkg_postinst() {
-	# Move docert from src_install() to install_cert for bug #201678
-	use ssl && (
-		if [[ ! -f "${ROOT}"/etc/ptlink-ircd/server.key.pem ]]; then
-			install_cert /etc/ptlink-ircd/server || die "install_cert failed"
-			mv "${ROOT}"/etc/ptlink-ircd/server.{crt,cert.pem}
-			mv "${ROOT}"/etc/ptlink-ircd/server.{csr,req.pem}
-			mv "${ROOT}"/etc/ptlink-ircd/server.key{,.pem}
-		fi
-	)
-
-	enewuser ptlink-ircd
-
-	chown ptlink-ircd \
-		"${ROOT}"/{etc,var/{log,lib}}/ptlink-ircd \
-		"${ROOT}"/etc/ptlink-ircd/server.key.pem
-
-	echo
-	elog "PTlink IRCd will run without configuration, although this is strongly"
-	elog "advised against."
-	echo
-	elog "You can find example cron script ircd.cron here:"
-	elog "   /usr/share/doc/${PF}"
-	echo
-	elog "You can also use /etc/init.d/ptlink-ircd to start at boot"
-	echo
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-irc/ptlink-ircd/
@ 2020-02-12 18:06 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2020-02-12 18:06 UTC (permalink / raw
  To: gentoo-commits

commit:     18145cac29dcfa3f8101f91a37b31157a38f80bf
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 12 18:02:59 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Feb 12 18:02:59 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18145cac

net-irc/ptlink-ircd: [QA] inherit vcs-clean.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild b/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild
index 6b9f9a8ccdc..b608a84138e 100644
--- a/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild
+++ b/net-irc/ptlink-ircd/ptlink-ircd-6.19.6-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils ssl-cert user
+inherit eutils ssl-cert user vcs-clean
 
 MY_P="PTlink${PV}"
 


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-02-12 18:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-12 18:06 [gentoo-commits] repo/gentoo:master commit in: net-irc/ptlink-ircd/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2016-05-03  0:02 Austin English

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