diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-03-11 12:02:45 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-03-11 12:05:10 +0100 |
commit | b522124233e90a84963ca9512f1bb5166983a6ab (patch) | |
tree | 0e1ce170481b3a4600b3e3b5bca31303d3e1202d /net-vpn | |
parent | Remove masked for removal packages (diff) | |
download | gentoo-b522124233e90a84963ca9512f1bb5166983a6ab.tar.gz gentoo-b522124233e90a84963ca9512f1bb5166983a6ab.tar.bz2 gentoo-b522124233e90a84963ca9512f1bb5166983a6ab.zip |
Remove masked for removal packages
Diffstat (limited to 'net-vpn')
-rw-r--r-- | net-vpn/htun/Manifest | 1 | ||||
-rw-r--r-- | net-vpn/htun/files/README.gentoo | 3 | ||||
-rw-r--r-- | net-vpn/htun/files/htun-0.9.6-glibc.patch | 14 | ||||
-rw-r--r-- | net-vpn/htun/files/htun-0.9.6-makefile.patch | 34 | ||||
-rw-r--r-- | net-vpn/htun/htun-0.9.6.ebuild | 45 | ||||
-rw-r--r-- | net-vpn/htun/metadata.xml | 5 |
6 files changed, 0 insertions, 102 deletions
diff --git a/net-vpn/htun/Manifest b/net-vpn/htun/Manifest deleted file mode 100644 index e8f5a0fa9bf6..000000000000 --- a/net-vpn/htun/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST htun-0.9.6.tar.gz 63745 BLAKE2B 54f7c8b01b12e49325af6a1fc85687c5117c3f4f015ee9f4cbdad25a56544f23f66caf456a406e239999fcf8e08aae9f4d394080d7176421b3f41b40b43edcd0 SHA512 d709e9b6a809df5711b3c3c61c207a0ce72a054904fbe0a39bb9c60f174b19eb5fe183e3218100f45941035f72c5212fcbd716858631d1f117e6f88608f8ea0d diff --git a/net-vpn/htun/files/README.gentoo b/net-vpn/htun/files/README.gentoo deleted file mode 100644 index 1710c726723a..000000000000 --- a/net-vpn/htun/files/README.gentoo +++ /dev/null @@ -1,3 +0,0 @@ -NOTE: HTun requires the Universal TUN/TAP module -available in the Linux kernel. Make sure you have -compiled the tun.o driver as a module! diff --git a/net-vpn/htun/files/htun-0.9.6-glibc.patch b/net-vpn/htun/files/htun-0.9.6-glibc.patch deleted file mode 100644 index 3f281c526388..000000000000 --- a/net-vpn/htun/files/htun-0.9.6-glibc.patch +++ /dev/null @@ -1,14 +0,0 @@ -get things building with glibc-2.8 - -http://bugs.gentoo.org/248100 - ---- a/include/common.h -+++ b/include/common.h -@@ -23,6 +23,7 @@ - #ifndef __COMMON_H - #define __COMMON_H - -+#include <limits.h> - #include <netinet/in.h> - #include <time.h> - #include "queue.h" diff --git a/net-vpn/htun/files/htun-0.9.6-makefile.patch b/net-vpn/htun/files/htun-0.9.6-makefile.patch deleted file mode 100644 index c1f0b76bfa14..000000000000 --- a/net-vpn/htun/files/htun-0.9.6-makefile.patch +++ /dev/null @@ -1,34 +0,0 @@ -* Fix build system to not hardcode CC -* Fix build system to respect user flags - ---- a/src/Makefile -+++ b/src/Makefile -@@ -20,16 +20,14 @@ - - # $Id: Makefile,v 2.16 2002/08/11 15:57:07 jehsom Exp $ - -- --CFLAGS = -I../include -I. -O -W -Wall -g -D_REENTRANT #-pg -a --LDFLAGS = -lfl -lpthread # -flex for linux, solaris ? --LEX_CFLAGS = -I../include -I. -g -D_REENTRANT #-pg -a -+CFLAGS := $(CFLAGS) -I../include -I. -O -W -Wall -D_REENTRANT -+LDFLAGS := $(LDFLAGS) -lfl -lpthread -+LEX_CFLAGS = -I../include -I. -D_REENTRANT - - # in Linux, LFLAGS is empty. In Solaris, LFLAGS = -lnsl -lsocket - #LFLAGS = -lnsl -lsocket - - VPATH = .:../include --CC := gcc - LEX = flex - YACC = yacc - INCLUDE := $(wildcard ../include/*.h) -@@ -52,7 +50,7 @@ - $(OBJS): $(INCLUDE) - - $(CONFOBS): $(CONFSRC) -- $(CC) $(LEX_CFLAGS) -c $(@:.o=.c) -+ $(CC) $(CFLAGS) $(LEX_CFLAGS) -c $(@:.o=.c) - - lex.yy.c: parse.l - $(LEX) $^ diff --git a/net-vpn/htun/htun-0.9.6.ebuild b/net-vpn/htun/htun-0.9.6.ebuild deleted file mode 100644 index a04679b6af39..000000000000 --- a/net-vpn/htun/htun-0.9.6.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic readme.gentoo-r1 toolchain-funcs - -DESCRIPTION="Project to tunnel IP traffic over HTTP" -HOMEPAGE="http://linux.softpedia.com/get/System/Networking/HTun-14751.shtml" -SRC_URI="http://www.sourcefiles.org/Networking/Tools/Proxy/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -# should not be replaced by virtual/yacc -# at least failed with dev-util/bison -DEPEND="dev-util/yacc" -RDEPEND="" - -PATCHES=( - "${FILESDIR}"/${P}-glibc.patch #248100 - "${FILESDIR}"/${P}-makefile.patch -) - -src_configure() { - # Fix multiple symbol definitions due to - # C99/C11 inline semantics, bug 571458 - append-cflags -std=gnu89 -} - -src_compile() { - emake -C src CC="$(tc-getCC)" -} - -src_install() { - dosbin src/htund - - insinto /etc - doins doc/htund.conf - - local DOCS=( doc/. README ) - einstalldocs - readme.gentoo_create_doc -} diff --git a/net-vpn/htun/metadata.xml b/net-vpn/htun/metadata.xml deleted file mode 100644 index 6f49eba8f496..000000000000 --- a/net-vpn/htun/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<!-- maintainer-needed --> -</pkgmetadata> |