mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-im/coturn: bump to 4.5.0.8
Package-Manager: Portage-2.3.49, Repoman-2.3.11 Signed-off-by: Andreas Schuerch <nativemad@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST coturn-4.5.0.7.tar.gz 396579 BLAKE2B ac66fbac772ad4b182f0c4b64178a780bfb364e4c1cf105fc340ac60da0a4c2e2b186c3ce08cade347a5d1a4b233bfed604db74eacd81967c3090e00bc1e36e8 SHA512 4e6e4efb456449752b2cd242c9be7c5dc2298472e338293d3de21c3a9da968f2f304625663372bb4d857c092c694aa4681630773a46e4928b9c60c69378adacc
|
||||
DIST coturn-4.5.0.8.tar.gz 403711 BLAKE2B 1bc6a145117ffb3a5ea7d6730524d0ad8857755a3d8a59588ec61df9fcf21c1c68a15efb588c73f659c4e855cb7fdce145a83a8a0e10c0bfae2d0a54d1120475 SHA512 2bf32f72223bcb1ee57254def423a6f6d385df8e20661f79a789b08324d432269eeeb4a6a551769f1f9147447bcf1b4471fc634e9d91ca979947119ae76cec9e
|
||||
|
||||
71
net-im/coturn/coturn-4.5.0.8.ebuild
Normal file
71
net-im/coturn/coturn-4.5.0.8.ebuild
Normal file
@@ -0,0 +1,71 @@
|
||||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
inherit eutils user systemd tmpfiles
|
||||
DESCRIPTION="coturn TURN server project"
|
||||
HOMEPAGE="https://github.com/${PN}/${PN}"
|
||||
|
||||
if [ ${PV} = 9999 ]; then
|
||||
KEYWORDS=""
|
||||
EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
|
||||
inherit git-r3
|
||||
DEPEND="dev-vcs/git"
|
||||
# S="${WORKDIR}/${PN}-master"
|
||||
else
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
fi
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
IUSE="mongodb mysql postgres redis sqlite"
|
||||
RDEPEND="|| ( dev-libs/libevent[-ssl,libressl] dev-libs/libevent[ssl,-libressl] >dev-libs/libevent-2.1.8[ssl,libressl] )
|
||||
mongodb? ( dev-libs/mongo-c-driver )
|
||||
mysql? ( dev-db/mysql-connector-c )
|
||||
postgres? ( dev-db/postgresql:* )
|
||||
redis? ( dev-libs/hiredis )
|
||||
sqlite? ( dev-db/sqlite )"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_configure() {
|
||||
sed 's:#log-file=/var/tmp/turn.log:log-file=/var/log/turnserver.log:' \
|
||||
-i "${S}/examples/etc/turnserver.conf" || die "sed for logdir failed"
|
||||
sed 's:#simple-log:simple-log:' -i "${S}/examples/etc/turnserver.conf" \
|
||||
|| die "sed for simple-log failed"
|
||||
if ! use mongodb; then
|
||||
export TURN_NO_MONGO=yes
|
||||
fi
|
||||
if ! use mysql; then
|
||||
export TURN_NO_MYSQL=yes
|
||||
fi
|
||||
if ! use postgres; then
|
||||
export TURN_NO_PQ=yes
|
||||
fi
|
||||
if ! use redis; then
|
||||
export TURN_NO_HIREDIS=yes
|
||||
fi
|
||||
if ! use sqlite; then
|
||||
export TURN_NO_SQLITE=yes
|
||||
fi
|
||||
|
||||
econf $(use_with sqlite)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
newinitd "${FILESDIR}/turnserver.init" turnserver
|
||||
insinto /etc/logrotate.d
|
||||
newins "${FILESDIR}/logrotate.${PN}" "${PN}"
|
||||
systemd_dounit "${FILESDIR}/${PN}.service"
|
||||
dotmpfiles "${FILESDIR}/${PN}.conf"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
tmpfiles_process "${PN}.conf"
|
||||
enewgroup turnserver
|
||||
enewuser turnserver -1 -1 -1 turnserver
|
||||
elog "You need to copy /etc/turnserver.conf.default to"
|
||||
elog "/etc/turnserver.conf and do your settings there."
|
||||
}
|
||||
Reference in New Issue
Block a user