summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-05-19 22:54:46 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2020-05-19 22:55:12 +0200
commit717931db3df1c33c9304893f430708accb138608 (patch)
tree0a001d5d2c820d5c635f9cc183609862cceb190f /net-vpn/vpncwatch
parentnet-print/cups-pdf: Drop 2.6.1 (EAPI4--), 3.0.0 (diff)
downloadgentoo-717931db3df1c33c9304893f430708accb138608.tar.gz
gentoo-717931db3df1c33c9304893f430708accb138608.tar.bz2
gentoo-717931db3df1c33c9304893f430708accb138608.zip
net-vpn/vpncwatch: Drop 1.8, EAPI4--
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-vpn/vpncwatch')
-rw-r--r--net-vpn/vpncwatch/Manifest1
-rw-r--r--net-vpn/vpncwatch/files/vpncwatch-1.8-Makefile.patch23
-rw-r--r--net-vpn/vpncwatch/vpncwatch-1.8.ebuild28
3 files changed, 0 insertions, 52 deletions
diff --git a/net-vpn/vpncwatch/Manifest b/net-vpn/vpncwatch/Manifest
index 89df1f8b8baa..6536700c185b 100644
--- a/net-vpn/vpncwatch/Manifest
+++ b/net-vpn/vpncwatch/Manifest
@@ -1,2 +1 @@
DIST vpncwatch-1.8.1.tar.gz 17420 BLAKE2B 3055121017b0a8af17efd14055d62c1cd11eacdefbdfee26b374bc538dc06a13c8a16b4162876ec6993175d1b66a8312f124d2cac896382c4be861e711bf037e SHA512 f5f5f68e2644ee3748a811505025155e77a7d3e345ddfc2f847674aa5d7e9e8be86d10708aeefc521ac747744e4f7edc3853ff230022aee7b098e8d0a35db5c2
-DIST vpncwatch-1.8.tar.gz 16356 BLAKE2B 73245fd15f20df1e7af485b467c40da93163a5c475c6be2ee5739e3252b6a60516e0f2370f5dfb7c20aa0b7bbaf0821b7ae126b718094356e6de5e18b88a858b SHA512 33771af327995be170e98169e4f5594a8298a613b865f1fb3157b0bccb8218e81a4bb26c7d9783d2f7d0963dafa04d21100889c5c710166b4a1e1487f945dceb
diff --git a/net-vpn/vpncwatch/files/vpncwatch-1.8-Makefile.patch b/net-vpn/vpncwatch/files/vpncwatch-1.8-Makefile.patch
deleted file mode 100644
index cab556c95352..000000000000
--- a/net-vpn/vpncwatch/files/vpncwatch-1.8-Makefile.patch
+++ /dev/null
@@ -1,23 +0,0 @@
- Makefile | 4 ++--
- 1 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 901e0ae..599499a 100644
---- a/Makefile
-+++ b/Makefile
-@@ -10,13 +10,13 @@ OBJS = vpncwatch.o proc.o net.o
- DISTFILES = AUTHORS COPYING README Makefile $(SRCS) $(HDRS) vpnc-watch.py
-
- CC ?= gcc
--CFLAGS = -D_GNU_SOURCE -O2 -Wall -Werror
-+CFLAGS += -D_GNU_SOURCE -Wall
-
- # Update version in vpncwatch.h as well
- TAG = vpncwatch-1.8
-
- vpncwatch: $(OBJS)
-- $(CC) $(CFLAGS) -o $@ $(OBJS)
-+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS)
-
- .c.o:
- $(CC) $(CFLAGS) -c -o $@ $<
diff --git a/net-vpn/vpncwatch/vpncwatch-1.8.ebuild b/net-vpn/vpncwatch/vpncwatch-1.8.ebuild
deleted file mode 100644
index d758a74b4f85..000000000000
--- a/net-vpn/vpncwatch/vpncwatch-1.8.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A keepalive daemon for vpnc on Linux systems"
-HOMEPAGE="https://github.com/dcantrell/vpncwatch/"
-SRC_URI="https://github.com/downloads/dcantrell/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="net-vpn/vpnc"
-
-src_prepare() {
- epatch \
- "${FILESDIR}/${P}-Makefile.patch"
- tc-export CC
-}
-
-src_install() {
- dobin ${PN}
- dodoc README ChangeLog AUTHORS
-}