forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
svxlink-15.11.ebuild
71 lines (56 loc) · 1.49 KB
/
svxlink-15.11.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit cmake-utils qt4-r2 user
CMAKE_USE_DIR="${S}/src"
DESCRIPTION="Multi Purpose Voice Services System, including Qtel for EchoLink"
HOMEPAGE="http://www.svxlink.org"
SRC_URI="https://github.com/sm0svx/${PN}/archive/15.11.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="dev-lang/tcl:0
dev-qt/qtcore:4
dev-qt/qtgui:4
media-libs/alsa-lib
media-sound/gsm
dev-libs/libgcrypt:0
media-libs/speex
media-libs/opus
dev-libs/libsigc++:2
dev-libs/popt"
DEPEND="${RDEPEND}
virtual/pkgconfig"
pkg_setup() {
enewgroup svxlink
enewuser svxlink -1 -1 -1 svxlink
}
src_prepare() {
# drop deprecated desktop category (bug #475730)
sed -i -e "s:Categories=Application;:Categories=:g" src/qtel/qtel.desktop || die
}
src_configure() {
local mycmakeargs=(
-DSYSCONF_INSTALL_DIR=/etc
-DLOCAL_STATE_DIR=/var
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
fowners -R svxlink.svxlink /var/spool/svxlink
rm -R "${D}"/usr/share/doc/svxlink || die
dodoc src/doc/README-${PV}.adoc
doman src/doc/man/*.1 src/doc/man/*.5
insinto /etc/logrotate.d
doins distributions/gentoo/etc/logrotate.d/*
newinitd "${FILESDIR}"/remotetrx.init remotetrx
newinitd "${FILESDIR}"/svxlink.init svxlink
newconfd "${FILESDIR}"/remotetrx.rc remotetrx
newconfd "${FILESDIR}"/svxlink.rc svxlink
}