summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conrad@kostecki.com>2018-10-28 14:07:23 +0100
committerPatrice Clement <monsieurp@gentoo.org>2018-11-08 23:28:03 +0100
commita0688a112bd2094c1821d73980eff241174babf1 (patch)
treec6ae76f10b30ef11983d69ece299aafc8509a05f /net-misc/mcproxy
parentnet-misc/mcproxy: bump to EAPI=7. (diff)
downloadgentoo-a0688a112bd2094c1821d73980eff241174babf1.tar.gz
gentoo-a0688a112bd2094c1821d73980eff241174babf1.tar.bz2
gentoo-a0688a112bd2094c1821d73980eff241174babf1.zip
net-misc/mcproxy: drop old version.
Signed-off-by: Conrad Kostecki <conrad@kostecki.com> Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'net-misc/mcproxy')
-rw-r--r--net-misc/mcproxy/mcproxy-1.1.1.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/net-misc/mcproxy/mcproxy-1.1.1.ebuild b/net-misc/mcproxy/mcproxy-1.1.1.ebuild
deleted file mode 100644
index 463944737b3b..000000000000
--- a/net-misc/mcproxy/mcproxy-1.1.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit linux-info qmake-utils systemd
-
-DESCRIPTION="A multicast proxy for IGMP/MLD"
-HOMEPAGE="https://mcproxy.realmv6.org/ https://github.com/mcproxy/mcproxy"
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-KEYWORDS="~amd64 ~x86"
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="doc"
-
-DEPEND="dev-qt/qtcore:5
- doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${P}/${PN}"
-
-PATCHES=( "${FILESDIR}/fix_checksum_calculation.patch" )
-
-CONFIG_CHECK="~IP_MULTICAST ~IP_MROUTE"
-
-src_prepare() {
- # Change install path from '/usr/local/bin' to '/usr/bin'
- sed -e 's/local//' -i mcproxy.pro || die
-
- default
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- default
-
- use doc && emake doc
-}
-
-src_install() {
- emake INSTALL_ROOT="${ED%/}" install
-
- insinto /etc
- doins mcproxy.conf
-
- newinitd "${FILESDIR}"/mcproxy.initd mcproxy
- systemd_dounit "${FILESDIR}"/mcproxy.service
-
- newconfd "${FILESDIR}"/mcproxy.confd mcproxy
-
- use doc && dodoc -r ../docs/.
-}