summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Beierlein <tomjbe@gentoo.org>2018-02-24 18:24:14 +0100
committerThomas Beierlein <tomjbe@gentoo.org>2018-02-24 18:24:14 +0100
commitbb08c1bf8bad4b37d7ee6ccf13f1e15d77952a3b (patch)
tree57f5d590b3ea8a5ed360da3654a15de6733cb42d /media-radio/svxlink/svxlink-15.11.ebuild
parentmedia-libs/babl: 0.1.44 (diff)
downloadgentoo-bb08c1bf8bad4b37d7ee6ccf13f1e15d77952a3b.tar.gz
gentoo-bb08c1bf8bad4b37d7ee6ccf13f1e15d77952a3b.tar.bz2
gentoo-bb08c1bf8bad4b37d7ee6ccf13f1e15d77952a3b.zip
media-radio/svxlink: Drop old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'media-radio/svxlink/svxlink-15.11.ebuild')
-rw-r--r--media-radio/svxlink/svxlink-15.11.ebuild74
1 files changed, 0 insertions, 74 deletions
diff --git a/media-radio/svxlink/svxlink-15.11.ebuild b/media-radio/svxlink/svxlink-15.11.ebuild
deleted file mode 100644
index 0eac5fc40fef..000000000000
--- a/media-radio/svxlink/svxlink-15.11.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils eutils 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() {
- # fix compilation problem with newer gcc bug #639592
- epatch "${FILESDIR}"/${P}-gcc72.patch
-
- cmake-utils_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
-
-}