mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
net-im/silc-server: Remove last-rited pkg, #522916
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST silc-server-1.1.18.tar.bz2 908188 SHA256 1a0d4efb5683b3148b3ba91d5b56fff60875bc8bb97e854330714d927986205b SHA512 bf457a5f75037c56138154cfdba62d7ec27a91bc3606c84760a2103c90dff1ea9beb09c6e86e25074142610c6e14d7dffc24956debfa8355b37a4a1fb5e68e47 WHIRLPOOL 297b5a8b673597ea41b45bf46efd746ce49dd7bb514965529b1a8f97bf7765bb668b9ee16383579325fa81eb7e8ddf954e6333c4ff3d2c103f4dbf4ea3677a9b
|
||||
@@ -1,25 +0,0 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
description="Server for Secure Internet Live Conferencing"
|
||||
pidfile="/run/silcd.pid"
|
||||
command="/usr/sbin/silcd"
|
||||
command_args="-f /etc/silc/silcd.conf >/dev/null 2>&1"
|
||||
start_stop_daemon_args="-w 2000"
|
||||
|
||||
depend() {
|
||||
need net
|
||||
use dns
|
||||
}
|
||||
|
||||
start_pre() {
|
||||
local silcdconf="/etc/silc/silcd.conf"
|
||||
|
||||
if [ ! -f "${silcdconf}" ] ; then
|
||||
eerror "You need to set up a ${silcdconf} file in order to start the server."
|
||||
eerror "You can find an example config in /usr/share/doc/silc-server*"
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
</pkgmetadata>
|
||||
@@ -1,78 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit eutils flag-o-matic user
|
||||
|
||||
DESCRIPTION="Server for Secure Internet Live Conferencing"
|
||||
SRC_URI="http://www.silcnet.org/download/server/sources/${P}.tar.bz2"
|
||||
HOMEPAGE="http://silcnet.org/"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
|
||||
IUSE="gmp ipv6 debug"
|
||||
|
||||
RDEPEND="!<=net-im/silc-toolkit-0.9.12-r1
|
||||
!<=net-im/silc-client-1.0.1
|
||||
gmp? ( dev-libs/gmp )"
|
||||
|
||||
pkg_setup() {
|
||||
enewuser silcd
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--datadir=/usr/share/${PN} \
|
||||
--datarootdir=/usr/share/${PN} \
|
||||
--mandir=/usr/share/man \
|
||||
--sysconfdir=/etc/silc \
|
||||
--libdir=/usr/$(get_libdir)/${PN} \
|
||||
--docdir=/usr/share/doc/${PF} \
|
||||
--disable-optimizations \
|
||||
--with-logsdir=/var/log/${PN} \
|
||||
--with-silcd-pid-file=/var/run/silcd.pid \
|
||||
$(use_with gmp) \
|
||||
$(use_enable ipv6) \
|
||||
$(use_enable debug)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
|
||||
insinto /etc/silc
|
||||
doins doc/silcalgs.conf
|
||||
|
||||
insinto /usr/share/doc/${PF}/examples
|
||||
doins doc/examples/*.conf
|
||||
|
||||
fperms 600 /etc/silc
|
||||
keepdir /var/log/${PN}
|
||||
|
||||
rm -rf \
|
||||
"${D}"/usr/libsilc* \
|
||||
"${D}"/usr/include \
|
||||
"${D}"/etc/silc/silcd.{pub,prv}
|
||||
|
||||
newinitd "${FILESDIR}/silcd.initd-r1" silcd
|
||||
doman doc/silcd.8 doc/silcd.conf.5
|
||||
|
||||
sed -i \
|
||||
-e 's:10.2.1.6:0.0.0.0:' \
|
||||
-e 's:User = "nobody";:User = "silcd";:' \
|
||||
-e 's:/var/run:/run:' \
|
||||
-e 's:lassi.kuo.fi.ssh.com:localhost:' \
|
||||
doc/example_silcd.conf \
|
||||
|| die
|
||||
dodoc doc/example_silcd.conf
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [ ! -f "${ROOT}"/etc/silc/silcd.prv ] ; then
|
||||
einfo "Creating key pair in /etc/silc"
|
||||
silcd -C "${ROOT}"/etc/silc
|
||||
chmod 600 "${ROOT}"/etc/silc/silcd.{prv,pub}
|
||||
fi
|
||||
}
|
||||
@@ -876,10 +876,6 @@ x11-plugins/echievements
|
||||
# Errorneously added. Is already in perl-core. Please uninstall.
|
||||
dev-perl/ExtUtils-Constant
|
||||
|
||||
# Pacho Ramos <pacho@gentoo.org> (06 Jan 2016)
|
||||
# Unbuildable for a long time, bug #522916. Removal in a month.
|
||||
net-im/silc-server
|
||||
|
||||
# Andrey Grozin <grozin@gentoo.org> (04 Jan 2016)
|
||||
# Needs a bump and substantial ebuild rewrite
|
||||
=sci-mathematics/reduce-20110414-r1
|
||||
|
||||
@@ -2,3 +2,4 @@ DIST xfce4-terminal-0.6.3.tar.bz2 815207 SHA256 912f4716c2395a14a80620ef982b4af1
|
||||
DIST xfce4-terminal-0.6.90.tar.bz2 838790 SHA256 ec540579d2d85111f322ffa08a4c3690c26612699af1b22c8d4f3480e38e70d1 SHA512 85bacf2184240356f698d9cc0c1f5c4a8b2502abb272a2293574b9cb0641bed3f4be42691f67acee3f6aa54a94a29e9d2304047bbad9435f94d7cad5a25429a5 WHIRLPOOL 4d656d2be87a0f36ff86f51ae350ae182c75fa4ee7761ef4bf258b33354afe803f5effbe01cb33ca55adfbc165bb85341fdf4ac61234ef7342c5102b4c4cb955
|
||||
DIST xfce4-terminal-0.6.92.tar.bz2 854899 SHA256 62140f8956d9c9aa4d483cf6cfbf6d76749b0f1feb47fa8413f0972e97461574 SHA512 79c65752b853f557a0e0a8bee7cef39438623aa5e982ce53a28a520b572a1c0b187010dba0cbc450ee4d10dceadfc32233ca5df7c5e521c0eaf74f6daad33af0 WHIRLPOOL 1508cda0139417a475abf0e14976ee18e526b6fd063f6482049a3c0aa9b6e51a61063f6191cf6ecd8dbee9d59da37664fadefaa727f9ef365afc0825a3b8b23b
|
||||
DIST xfce4-terminal-0.8.0.tar.bz2 868612 SHA256 e915c05a3d07b66d153e1ba8614f904f9c12b2dd8372b27d24c0d339743d5b0a SHA512 88083293a557c28289a0a21b3e52d25c769f9f3a09a0126d0913ab77c299b01bc6c58b685debf956b230344794f3664d6b824db91ea2375e1484801c9c353794 WHIRLPOOL 30121af280bf4dd40445c576fcca2b0bed2d9b47a86d5e33052e42d8bfc9fdc4392ca3c306e017feb690b3acf61c8eea5fc26b92be94cf6789507c814f439c74
|
||||
DIST xfce4-terminal-0.8.1.tar.bz2 871184 SHA256 ddfe53a89d315a4a9170ca6d2cee2d33145bd63630062b2e867fb3a5fcde5fdf SHA512 198f5008da1cee289aa4df7faae622eca5dfefcfc27415522fe4a0ec2d21c036e2bb2e1d0ea7790679085ce4fe013c349434cc2412a3a5773868409d74c12a2b WHIRLPOOL 1f87aa90775169b1c2702105804e7f56af68fb137ad9a13e08fa1462ffe17830f005ed4a71406c557ccdeb2463991f0cb39ad5abbd03397303c5f47d0fbb25f7
|
||||
|
||||
Reference in New Issue
Block a user