aboutsummaryrefslogtreecommitdiffstats
path: root/comms
diff options
context:
space:
mode:
authorrene <rene@FreeBSD.org>2013-08-26 20:02:30 +0800
committerrene <rene@FreeBSD.org>2013-08-26 20:02:30 +0800
commit2305ab40379ea2434a1abc20ea90cdc1e0a7ec0a (patch)
tree7769e553023e1ac822f07986a36a9fa3ce26ef84 /comms
parent5e578cc3d5e0d0bdc3f2659c31ee0b1d9acf9d97 (diff)
downloadfreebsd-ports-gnome-2305ab40379ea2434a1abc20ea90cdc1e0a7ec0a.tar.gz
freebsd-ports-gnome-2305ab40379ea2434a1abc20ea90cdc1e0a7ec0a.tar.zst
freebsd-ports-gnome-2305ab40379ea2434a1abc20ea90cdc1e0a7ec0a.zip
Remove expired ports:
2013-08-24 mail/p5-Mail-CClient: Broken for more than 6 month 2013-08-24 net/slbd: Broken on FreeBSD 8 and newer 2013-08-24 comms/hso-kmod: Broken on FreeBSD 8 and newer
Diffstat (limited to 'comms')
-rw-r--r--comms/Makefile1
-rw-r--r--comms/hso-kmod/Makefile96
-rw-r--r--comms/hso-kmod/distinfo4
-rw-r--r--comms/hso-kmod/files/HSO-NODEBUG-patch-Makefile11
-rw-r--r--comms/hso-kmod/files/HSOCTL-NODEBUG-patch-Makefile10
-rw-r--r--comms/hso-kmod/files/option-icon.conf.sample7
-rw-r--r--comms/hso-kmod/files/pkg-message.in20
-rw-r--r--comms/hso-kmod/pkg-descr13
-rw-r--r--comms/hso-kmod/pkg-plist8
9 files changed, 0 insertions, 170 deletions
diff --git a/comms/Makefile b/comms/Makefile
index 6dced03e891f..ffa489b9d084 100644
--- a/comms/Makefile
+++ b/comms/Makefile
@@ -63,7 +63,6 @@
SUBDIR += hamlib
SUBDIR += hcidump
SUBDIR += hf
- SUBDIR += hso-kmod
SUBDIR += hylafax
SUBDIR += ib-kmod
SUBDIR += ibp
diff --git a/comms/hso-kmod/Makefile b/comms/hso-kmod/Makefile
deleted file mode 100644
index 772801c1bfe0..000000000000
--- a/comms/hso-kmod/Makefile
+++ /dev/null
@@ -1,96 +0,0 @@
-# New ports collection makefile for: hso-kmod
-# Date created: 12 May 2008
-# Whom: Ganael Laplanche <ganael.laplanche@martymac.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= hso
-PORTVERSION= 20081023
-PORTREVISION= 3
-CATEGORIES= comms kld
-MASTER_SITES= http://www.shapeshifter.se/pub/hso/
-PKGNAMESUFFIX= -kmod
-DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
-
-MAINTAINER= martymac@FreeBSD.org
-COMMENT= Driver for Option HSDPA modem
-
-LICENSE= BSD
-
-DEPRECATED= Broken on FreeBSD 8 and newer
-EXPIRATION_DATE=2013-08-24
-
-CONFLICTS= uhso-kmod-[0-9]*
-
-NO_PACKAGE= should be recompiled for a particular FreeBSD kernel
-
-OPTIONS_DEFINE= HSOCTL DEVD DEBUG
-OPTIONS_DEFAULT= HSOCTL DEVD
-
-HSOCTL_DESC= Build hsoctl tool
-
-SUB_FILES= pkg-message
-KMODDIR?= /boot/modules
-PLIST_SUB+= KMODDIR=${KMODDIR}
-MAKE_ENV+= KMODDIR=${KMODDIR}
-
-MAN4= hso.4
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} > 800063
-BROKEN= does not build with USB2, please try comms/uhso-kmod instead
-.endif
-
-.if ${PORT_OPTIONS:MHSOCTL}
-HSOCTL_VERSION= 20081023
-DISTFILES+= hsoctl-${HSOCTL_VERSION}${EXTRACT_SUFX}
-WRKSRC_HSOCTL= ${WRKDIR}/hsoctl-${HSOCTL_VERSION}
-PLIST_SUB+= PL_HSOCTL=""
-MAN1= hsoctl.1
-.else
-PLIST_SUB+= PL_HSOCTL="@comment "
-.endif
-.if ${PORT_OPTIONS:MDEVD}
-PLIST_SUB+= PL_DEVD=""
-.else
-PLIST_SUB+= PL_DEVD="@comment "
-.endif
-.if empty(PORT_OPTIONS:MDEBUG)
-EXTRA_PATCHES+= ${PATCHDIR}/HSO-NODEBUG-patch-Makefile
-.endif
-
-.if !exists(${SRC_BASE}/sys/Makefile)
-IGNORE= requires kernel source files
-.elif ${OSVERSION} < 700055
-IGNORE= requires FreeBSD 7.0 or superior
-.endif
-
-post-patch:
-.if !empty(PORT_OPTIONS:MHSOCTL) && empty(PORT_OPTIONS:MDEBUG)
- @${PATCH} -d ${WRKSRC_HSOCTL} < ${PATCHDIR}/HSOCTL-NODEBUG-patch-Makefile
-.endif
-
-post-build:
-.if ${PORT_OPTIONS:MHSOCTL}
- @cd ${WRKSRC_HSOCTL} && ${SETENV} NO_MANCOMPRESS= ${MAKE} all
-.endif
-
-post-install:
- ${INSTALL_MAN} ${MAN4:S|^|${WRKSRC}/|} ${PREFIX}/man/man4
-.if ${PORT_OPTIONS:MHSOCTL}
- @cd ${WRKSRC_HSOCTL} && \
- ${SETENV} DESTDIR=${PREFIX}/ BINDIR=bin MANDIR=man/man NO_MANCOMPRESS= \
- ${MAKE} install
-.endif
-.if ${PORT_OPTIONS:MDEVD}
- ${MKDIR} ${PREFIX}/etc/devd
- ${INSTALL_DATA} ${FILESDIR}/option-icon.conf.sample ${PREFIX}/etc/devd/
- @if [ ! -f ${PREFIX}/etc/devd/option-icon.conf ]; then \
- ${CP} -p ${PREFIX}/etc/devd/option-icon.conf.sample ${PREFIX}/etc/devd/option-icon.conf; \
- fi
-.endif
- @${CAT} ${PKGMESSAGE}
-
-.include <bsd.port.post.mk>
diff --git a/comms/hso-kmod/distinfo b/comms/hso-kmod/distinfo
deleted file mode 100644
index 84ae43f91647..000000000000
--- a/comms/hso-kmod/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-SHA256 (hso-20081023.tar.gz) = 8ab6cf4bc0208dbe76cdf41422b573afb811e6075c99e97f38f5377f47bc648c
-SIZE (hso-20081023.tar.gz) = 12326
-SHA256 (hsoctl-20081023.tar.gz) = fe20461852c72ed554c5f1cf7dd98f9dd2a5217fc4b4a2ca3e1e7ade301ba8fe
-SIZE (hsoctl-20081023.tar.gz) = 8360
diff --git a/comms/hso-kmod/files/HSO-NODEBUG-patch-Makefile b/comms/hso-kmod/files/HSO-NODEBUG-patch-Makefile
deleted file mode 100644
index 9cf82162c477..000000000000
--- a/comms/hso-kmod/files/HSO-NODEBUG-patch-Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.orig 2008-05-14 14:18:19.880920578 +0200
-+++ Makefile 2008-05-14 14:18:29.051785451 +0200
-@@ -2,7 +2,7 @@
- S= ${.CURDIR}/../..
- .PATH: $S/dev/usb
-
--CFLAGS+= -DUSB_DEBUG=1 -DHSO_DEBUG=-1 -g
-+#CFLAGS+= -DUSB_DEBUG=1 -DHSO_DEBUG=-1 -g
- KMOD= hso
- SRCS= if_hso.c opt_usb.h device_if.h bus_if.h usbdevs.h
-
diff --git a/comms/hso-kmod/files/HSOCTL-NODEBUG-patch-Makefile b/comms/hso-kmod/files/HSOCTL-NODEBUG-patch-Makefile
deleted file mode 100644
index c87686f43e44..000000000000
--- a/comms/hso-kmod/files/HSOCTL-NODEBUG-patch-Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
---- Makefile.orig 2008-10-23 15:45:28.158855941 +0200
-+++ Makefile 2008-10-23 15:45:53.171672654 +0200
-@@ -1,6 +1,6 @@
- SRCS= hsoctl.c
- PROG= hsoctl
--CFLAGS+= -g
-+#CFLAGS+= -g
- LDFLAGS+= -lutil
- DESTDIR?= /usr/local
-
diff --git a/comms/hso-kmod/files/option-icon.conf.sample b/comms/hso-kmod/files/option-icon.conf.sample
deleted file mode 100644
index d32ba783b7ac..000000000000
--- a/comms/hso-kmod/files/option-icon.conf.sample
+++ /dev/null
@@ -1,7 +0,0 @@
-attach 100 {
-match "device-name" "umass[0-9]+";
-match "vendor" "0x0af0";
-match "product" "0x6911|0x6971|0x7251|0x7401|0x7011|0x7501";
-match "devclass" "0x00";
-action "sleep 1; /sbin/camcontrol cmd `/sbin/camcontrol devlist | /usr/bin/grep ZCOPTION | /usr/bin/awk '{match($11, /pass[0-9]+/); print substr($11, RSTART, RLENGTH) }'` -c '01 00 00 00 00 00' -i 1 i1 > /dev/null";
-};
diff --git a/comms/hso-kmod/files/pkg-message.in b/comms/hso-kmod/files/pkg-message.in
deleted file mode 100644
index 40fcc68195de..000000000000
--- a/comms/hso-kmod/files/pkg-message.in
+++ /dev/null
@@ -1,20 +0,0 @@
-
-===============================================================================
-
-This port has installed the hso kernel module.
-
-1) To load the kernel module at boot time,
-add the following line to /boot/loader.conf:
-
-hso_load="YES"
-
-2) If you have installed devd files, restart devd :
-/etc/rc.d/devd restart
-
-3) If you have built the hsoctl utility, use it to connect :
-e.g. : hsoctl -a bredband.tre.se -p 1234 hso0
-
-4) Enjoy !
-
-===============================================================================
-
diff --git a/comms/hso-kmod/pkg-descr b/comms/hso-kmod/pkg-descr
deleted file mode 100644
index d547a3691b3f..000000000000
--- a/comms/hso-kmod/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-FreeBSD driver for newer Option HSDPA USB dongles.
-
-The driver have been tested with the following devices
-
- * Option GlobeSurfer iCON 7.2 (2.4.6Hd firmware)
- * Option GlobeSurfer iCON 225
-
-Older cards should work just fine with ubsa(4) or any similar
-USB-over-serial driver.
-
-Note that this driver should be considered beta.
-
-WWW: http://www.shapeshifter.se/code/hso/
diff --git a/comms/hso-kmod/pkg-plist b/comms/hso-kmod/pkg-plist
deleted file mode 100644
index 38ad1e553d24..000000000000
--- a/comms/hso-kmod/pkg-plist
+++ /dev/null
@@ -1,8 +0,0 @@
-%%PL_DEVD%%@unexec if cmp -s %D/etc/devd/option-icon.conf.sample %D/etc/devd/option-icon.conf; then rm -f %D/etc/devd/option-icon.conf; fi
-%%PL_DEVD%%etc/devd/option-icon.conf.sample
-%%PL_DEVD%%@exec if [ ! -f %D/etc/devd/option-icon.conf ]; then mkdir -p %B; cp -p %D/%F %B/option-icon.conf; fi
-%%PL_HSOCTL%%bin/hsoctl
-@cwd /boot/modules
-hso.ko
-@exec kldxref %D
-@unexec kldxref %D