diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-05-28 23:03:15 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-05-28 23:03:15 +0000 |
commit | 23d26ab86e4deca51fcae3a4e177ebf8f94c5255 (patch) | |
tree | b2dbe560bcccbf7fc7fc332b2dfc27b8ad78b22f /misc | |
parent | 9cdfaba84df6442928846a64130d01d8e58e2d77 (diff) | |
download | ports-23d26ab86e4deca51fcae3a4e177ebf8f94c5255.tar.gz ports-23d26ab86e4deca51fcae3a4e177ebf8f94c5255.zip |
Notes
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/sonytv/Makefile | 37 | ||||
-rw-r--r-- | misc/sonytv/distinfo | 3 | ||||
-rw-r--r-- | misc/sonytv/pkg-descr | 8 | ||||
-rw-r--r-- | misc/sonytv/pkg-plist | 2 | ||||
-rw-r--r-- | misc/sonytv/scripts/configure | 22 |
6 files changed, 0 insertions, 73 deletions
diff --git a/misc/Makefile b/misc/Makefile index 5acb27ca16bc..d99959d3bb96 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -526,7 +526,6 @@ SUBDIR += sls SUBDIR += smssend SUBDIR += snowflake - SUBDIR += sonytv SUBDIR += spamcalc SUBDIR += splitvt SUBDIR += sshbuddy diff --git a/misc/sonytv/Makefile b/misc/sonytv/Makefile deleted file mode 100644 index 48347dc613ba..000000000000 --- a/misc/sonytv/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: sonytv -# Date created: 21 June 2003 -# Whom: Eric P. Scott <eps+sonytv@ana.com> -# -# $FreeBSD$ -# - -PORTNAME= sonytv -PORTVERSION= 1.0 -PORTREVISION= 2 -CATEGORIES= misc tk -MASTER_SITES= http://tools.ana.com/demos/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Sony-compatible TV remote - -RUN_DEPENDS= wish8.3:${PORTSDIR}/x11-toolkits/tk83 - -DEPRECATED= tcl8.3 support is going to be dropped -EXPIRATION_DATE= 2009-05-22 - -NO_BUILD= yes - -IS_INTERACTIVE= yes -NO_PACKAGE= Hardcoded IR device name - -SCRIPTS_ENV= CP="${CP}" RM="${RM}" SED="${SED}" - -MAN1= sonytv.1 -MLINKS= sonytv.1 sonytv+.1 - -do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/sonytv ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/sonytv+ ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/sonytv.1 ${MANPREFIX}/man/man1 - -.include <bsd.port.mk> diff --git a/misc/sonytv/distinfo b/misc/sonytv/distinfo deleted file mode 100644 index 65fcb3a119dd..000000000000 --- a/misc/sonytv/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (sonytv-1.0.tar.gz) = 57cbf9e497c419f0b1fecf6b020c5309 -SHA256 (sonytv-1.0.tar.gz) = 8c04546d68056c3ad6a086973856862dc6ae16f61d39b46584264e6cb8fd3282 -SIZE (sonytv-1.0.tar.gz) = 10538 diff --git a/misc/sonytv/pkg-descr b/misc/sonytv/pkg-descr deleted file mode 100644 index 74c2aaad3c9c..000000000000 --- a/misc/sonytv/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -This is a Sony-compatible TV remote control implemented in Tcl/Tk. -It should work on laptops/notebooks with a built-in serial IR port. -The range isn't as good as a "real" remote; 2m, if you're lucky. - -WWW: http://tools.ana.com/demos/ - ---Eric -eps+sonytv@ana.com diff --git a/misc/sonytv/pkg-plist b/misc/sonytv/pkg-plist deleted file mode 100644 index 792e44dc6ab1..000000000000 --- a/misc/sonytv/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -bin/sonytv -bin/sonytv+ diff --git a/misc/sonytv/scripts/configure b/misc/sonytv/scripts/configure deleted file mode 100644 index 4b94f0cf1fa1..000000000000 --- a/misc/sonytv/scripts/configure +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -cd ${WRKSRC:?Uh-oh.}||exit 1 -umask 022 -/usr/bin/dialog \ ---title "Where's your IR device?" \ ---radiolist "Select a serial port:" 12 48 4 \ -/dev/cuaa0 "" off \ -/dev/cuaa1 "e.g. Toshiba Libretto" off \ -/dev/cuaa2 "e.g. Sony VAIO F-series" on \ -/dev/cuaa3 "" off \ -2>.portstmp.$$ -case $? in -0) read device <.portstmp.$$ - for f in sonytv sonytv+ - do - ${SED} -e "/set device {/s;{.*};{${device}};" $f >.portstmp.$$ - /usr/bin/cmp -s .portstmp.$$ $f||${CP} .portstmp.$$ $f - done - ${RM} -f .portstmp.$$ ;; -*) ${RM} -f .portstmp.$$ - exit 1 ;; -esac |