diff options
author | Rene Ladan <rene@FreeBSD.org> | 2019-04-04 16:44:51 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2019-04-04 16:44:51 +0000 |
commit | 3ee06217f1b7fb4f579294691f12ca948dabda25 (patch) | |
tree | 1946bb579e44430e6889c21136f03896c51ecbc5 | |
parent | cc5fe2dd620082c6185b6968505daa180908270f (diff) |
Remove expired port and two leaf ports that depend on it:
2019-03-31 devel/msrc0: No longer required as comms/conserver is being retired.
devel/mkcmd
sysutils/curly
Notes
Notes:
svn path=/head/; revision=497853
-rw-r--r-- | MOVED | 3 | ||||
-rw-r--r-- | devel/Makefile | 2 | ||||
-rw-r--r-- | devel/mkcmd/Makefile | 45 | ||||
-rw-r--r-- | devel/mkcmd/distinfo | 2 | ||||
-rw-r--r-- | devel/mkcmd/files/patch-bin_mkcmd_Make.host | 24 | ||||
-rw-r--r-- | devel/mkcmd/files/patch-bin_mkcmd_machine.h | 20 | ||||
-rw-r--r-- | devel/mkcmd/files/patch-bin_mkcmd_mkcmd.man | 11 | ||||
-rw-r--r-- | devel/mkcmd/files/patch-lib_mkcmd_Make.host | 20 | ||||
-rw-r--r-- | devel/mkcmd/files/patch-lib_mkcmd_mkcmd.man | 11 | ||||
-rw-r--r-- | devel/mkcmd/pkg-descr | 3 | ||||
-rw-r--r-- | devel/mkcmd/pkg-plist | 224 | ||||
-rw-r--r-- | devel/msrc0/Makefile | 26 | ||||
-rw-r--r-- | devel/msrc0/distinfo | 2 | ||||
-rw-r--r-- | devel/msrc0/files/patch-makeme | 13 | ||||
-rw-r--r-- | devel/msrc0/pkg-descr | 3 | ||||
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/curly/Makefile | 38 | ||||
-rw-r--r-- | sysutils/curly/distinfo | 2 | ||||
-rw-r--r-- | sysutils/curly/files/patch-machine.h | 11 | ||||
-rw-r--r-- | sysutils/curly/pkg-descr | 2 | ||||
-rw-r--r-- | sysutils/curly/pkg-plist | 4 |
21 files changed, 3 insertions, 464 deletions
@@ -12172,3 +12172,6 @@ net/rubygem-fog-google17|net/rubygem-fog-google|2019-04-04|Has expired: Use net/ ports-mgmt/bsdadminscripts|ports-mgmt/bsdadminscripts2|2019-04-04|Has expired: Upstream stale nearly 10 years, no longer works properly, use ports-mgmt/bsdadminscripts2 instead www/mod_md-devel||2019-04-04|Has expired: Use the module that is shipped with Apache 2.4 x11/xbelld||2019-04-04|Has expired: Depends on audio/esound +devel/mkcmd||2019-04-04|Removed, depends on expired devel/msrc0 +devel/msrc0||2019-04-04|Has expired: No longer required as comms/conserver is being retired. +sysutils/curly||2019-04-04|Removed, depends on expired devel/msrc0 diff --git a/devel/Makefile b/devel/Makefile index 7effdddf7eb8..72f40896b6e0 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1762,7 +1762,6 @@ SUBDIR += mips64-xtoolchain-gcc SUBDIR += mir-core SUBDIR += mk-configure - SUBDIR += mkcmd SUBDIR += mm SUBDIR += mm-common SUBDIR += mongo-c-driver @@ -1781,7 +1780,6 @@ SUBDIR += msgpuck SUBDIR += msp430-debug-stack SUBDIR += mspdebug - SUBDIR += msrc0 SUBDIR += mtbl SUBDIR += myrepos SUBDIR += nana diff --git a/devel/mkcmd/Makefile b/devel/mkcmd/Makefile deleted file mode 100644 index 710b31f48c59..000000000000 --- a/devel/mkcmd/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# Created by: ajk@waterspout.com -# $FreeBSD$ - -PORTNAME= mkcmd -PORTVERSION= 8.14 -PORTREVISION= 1 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.physics.purdue.edu/pub/pundits/ \ - http://www.komquats.com/distfiles/ \ - http://people.freebsd.org/~cy/distfiles/ - -MAINTAINER= cy@FreeBSD.org -COMMENT= Command-line parser and manual page generator - -BUILD_DEPENDS= makeme:devel/msrc0 - -MAKE_FLAGS= -MAKEFILE= -USES= desthack shebangfix tar:tgz -SHEBANG_LANG= mkcmd -mkcmd_OLD_CMD= mkcmd -mkcmd_CMD= ${PREFIX}/bin/mkcmd -SHEBANG_FILES= ${WRKSRC}/lib/mkcmd/*.m - -post-patch: -.for f in bin/mkcmd/machine.h bin/mkcmd/mkcmd.man lib/mkcmd/mkcmd.man - @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/${f} -.endfor - @${REINPLACE_CMD} -e "1s|/mkcmd|${mkcmd_CMD}|" ${WRKSRC}/lib/mkcmd/std_filter.m - -do-build: - @(cd ${WRKSRC}/bin/mkcmd && ${SETENV} ${MAKE_ENV} makeme \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) - -do-install: -.for d in bin/mkcmd lib/mkcmd - @(cd ${WRKSRC}/${d} && ${SETENV} ${MAKE_ENV} makeme \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) -.endfor - ${INSTALL_MAN} ${WRKSRC}/bin/mkcmd/mkcmd.man \ - ${STAGEDIR}${PREFIX}/man/man1/mkcmd.1 - ${INSTALL_MAN} ${WRKSRC}/lib/mkcmd/mkcmd.man \ - ${STAGEDIR}${PREFIX}/man/man5/mkcmd.5 - -.include <bsd.port.mk> diff --git a/devel/mkcmd/distinfo b/devel/mkcmd/distinfo deleted file mode 100644 index f53832de3a17..000000000000 --- a/devel/mkcmd/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (mkcmd-8.14.tgz) = 6288ff060a9090a80a8de884ac253a2ec6b1d2e1d1f98c79d01ffe817d21fa0a -SIZE (mkcmd-8.14.tgz) = 295120 diff --git a/devel/mkcmd/files/patch-bin_mkcmd_Make.host b/devel/mkcmd/files/patch-bin_mkcmd_Make.host deleted file mode 100644 index f6fbddaa7ced..000000000000 --- a/devel/mkcmd/files/patch-bin_mkcmd_Make.host +++ /dev/null @@ -1,24 +0,0 @@ ---- bin/mkcmd/Make.host.orig Mon Jul 31 06:56:23 2000 -+++ bin/mkcmd/Make.host Fri Aug 11 19:44:39 2000 -@@ -5,7 +5,7 @@ - SHELL=/bin/sh - 'ifelse(HOSTTYPE,`PTX', - `BIN= ${ROOT}/bin', --`BIN= ${DESTDIR}/usr/local/bin')` -+`BIN= ${DESTDIR}${PREFIX}/bin')` - PROG= mkcmd - - I=/usr/include -@@ -17,10 +17,10 @@ - # -D in CDEFS. See notes in machine.h. Change LIB (if you move DEFDIR) - # in the lib source Makefile. - INCLUDE= --DEBUG='ifelse(HOSTTYPE,`V386',`',`-O')` -+DEBUG='ifelse(HOSTTYPE,`V386',`',`')` - CDEFS= -D'HOSTTYPE`'ifdef(`CPP_FIX',` CPP_FIX')`'ifelse( - HOSTTYPE,`IBMR2',` -D_AIX')` --CFLAGS= ${DEBUG} ${CDEFS} ${INCLUDE} -+CFLAGS+= ${DEBUG} ${CDEFS} ${INCLUDE} - INSTALL= install - - HDR= main.h mkcmd.h check.h emit.h key.h list.h parser.h stracc.h option.h \ diff --git a/devel/mkcmd/files/patch-bin_mkcmd_machine.h b/devel/mkcmd/files/patch-bin_mkcmd_machine.h deleted file mode 100644 index 3dd6aeaae1b7..000000000000 --- a/devel/mkcmd/files/patch-bin_mkcmd_machine.h +++ /dev/null @@ -1,20 +0,0 @@ ---- bin/mkcmd/machine.h.orig Sun Jul 30 14:56:23 2000 -+++ bin/mkcmd/machine.h Thu Sep 5 00:58:57 2002 -@@ -13,7 +13,7 @@ - #endif - - #if !defined(DEFDIR) --#define DEFDIR "/usr/local/lib/mkcmd:/usr/local/lib/mkcmd/type" -+#define DEFDIR "/usr/local/share/mkcmd:/usr/local/share/mkcmd/type" - #endif - - #if !defined(TILDEDIR) -@@ -105,7 +105,7 @@ - #endif - - #if !defined(NEED_MALLOC_EXTERN) --#define NEED_MALLOC_EXTERN (!USE_MALLOC_H && !defined(NEXT2) && !defined(IRIX) && !defined(BSDI)) -+#define NEED_MALLOC_EXTERN (!USE_MALLOC_H && !defined(NEXT2) && !defined(IRIX) && !defined(BSDI) && !defined(FREEBSD)) - #endif - - #if !defined(NEED_OFFSET_TYPE) diff --git a/devel/mkcmd/files/patch-bin_mkcmd_mkcmd.man b/devel/mkcmd/files/patch-bin_mkcmd_mkcmd.man deleted file mode 100644 index 376e9361554c..000000000000 --- a/devel/mkcmd/files/patch-bin_mkcmd_mkcmd.man +++ /dev/null @@ -1,11 +0,0 @@ ---- bin/mkcmd/mkcmd.man.orig Wed Nov 17 12:24:52 1999 -+++ bin/mkcmd/mkcmd.man Wed Nov 17 12:24:56 1999 -@@ -43,7 +43,7 @@ - .TP - .BI \-I directory - \fBMkcmd\fP searches for the files on the command line first in the --current directory, then in a standard place (\*(lq/usr/local/lib/mkcmd\*(rq), -+current directory, then in a standard place (\*(lq%%PREFIX%%/share/mkcmd\*(rq), - then in any \fIdirectory\fP listed as parameters to this option. - .TP - .BI \-m manpage diff --git a/devel/mkcmd/files/patch-lib_mkcmd_Make.host b/devel/mkcmd/files/patch-lib_mkcmd_Make.host deleted file mode 100644 index c59d28c6bb04..000000000000 --- a/devel/mkcmd/files/patch-lib_mkcmd_Make.host +++ /dev/null @@ -1,20 +0,0 @@ ---- lib/mkcmd/Make.host.orig Sun Jul 30 16:56:24 2000 -+++ lib/mkcmd/Make.host Mon Aug 7 15:26:05 2000 -@@ -3,7 +3,7 @@ - # Kevin S Braunsdorf, PUCC - - SHELL=/bin/sh --LIB= ${DESTDIR}/usr/local/lib/mkcmd -+LIB= ${DESTDIR}${PREFIX}/share/mkcmd - - TEMPL= Template.m bytes.m bytes.mi client.m \ - bsd.m \ -@@ -90,7 +90,7 @@ - - install: all FRC - -[ -d ${LIB} ] || install -d ${LIB} -- ./ubinst.sh -d -t type ${LIB} ${TEMPL} -+ sh ./ubinst.sh -d -t type ${LIB} ${TEMPL} - - lint: FRC - diff --git a/devel/mkcmd/files/patch-lib_mkcmd_mkcmd.man b/devel/mkcmd/files/patch-lib_mkcmd_mkcmd.man deleted file mode 100644 index 654aba7dce98..000000000000 --- a/devel/mkcmd/files/patch-lib_mkcmd_mkcmd.man +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/mkcmd/mkcmd.man.orig Sat Jan 1 20:05:47 2000 -+++ lib/mkcmd/mkcmd.man Sat Jan 1 20:05:54 2000 -@@ -760,7 +760,7 @@ - .SH FILES - .TS - l l. --\fI/usr/local/lib/mkcmd\fP the default directory for template files -+\fI%%PREFIX%%/share/mkcmd\fP the default directory for template files - .TE - - .SH AUTHOR diff --git a/devel/mkcmd/pkg-descr b/devel/mkcmd/pkg-descr deleted file mode 100644 index c7e30bcbbb6a..000000000000 --- a/devel/mkcmd/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -mkcmd lets us build a nifty command line option parser and some -on-line documentation in a snap. It is a prerequisite for many of -Kevin Braunsdorf's tools. diff --git a/devel/mkcmd/pkg-plist b/devel/mkcmd/pkg-plist deleted file mode 100644 index 379f2148ba82..000000000000 --- a/devel/mkcmd/pkg-plist +++ /dev/null @@ -1,224 +0,0 @@ -bin/mkcmd -share/mkcmd/type/Template.m -share/mkcmd/type/bytes.m -share/mkcmd/type/bytes.mi -share/mkcmd/type/client.m -share/mkcmd/type/bsd.m -share/mkcmd/type/client.mi -share/mkcmd/type/cmd.m -share/mkcmd/type/cmd.mc -share/mkcmd/type/cmd.mi -share/mkcmd/type/date.m -share/mkcmd/type/dir.m -share/mkcmd/type/enum.m -share/mkcmd/type/enum.mc -share/mkcmd/type/enum.mh -share/mkcmd/type/enum.mi -share/mkcmd/type/filesystem.m -share/mkcmd/type/filesystem.mc -share/mkcmd/type/filesystem.mi -share/mkcmd/type/getopt.m -share/mkcmd/type/getopt.mc -share/mkcmd/type/getopt.mi -share/mkcmd/type/hosttype.m -share/mkcmd/type/hosttype.mh -share/mkcmd/type/inches.m -share/mkcmd/type/inches.mi -share/mkcmd/type/rc.m -share/mkcmd/type/seconds.m -share/mkcmd/type/seconds.mi -share/mkcmd/type/group.m -share/mkcmd/type/group.mc -share/mkcmd/type/login.m -share/mkcmd/type/login.mc -share/mkcmd/type/host.m -share/mkcmd/type/host.mc -share/mkcmd/type/host.mi -share/mkcmd/type/protocol.m -share/mkcmd/type/protocol.mc -share/mkcmd/type/service.m -share/mkcmd/type/service.mc -share/mkcmd/type/server.m -share/mkcmd/type/server.mi -share/mkcmd/type/shared.m -share/mkcmd/type/shared.mi -share/mkcmd/type/socket.m -share/mkcmd/type/socket.mh -share/mkcmd/type/socket.mi -share/mkcmd/type/time.m -share/mkcmd/type/timebox.m -share/mkcmd/cmd/add.m -share/mkcmd/cmd/add.mc -share/mkcmd/cmd/cd.m -share/mkcmd/cmd/cd.mc -share/mkcmd/cmd/dl.m -share/mkcmd/cmd/dl.mc -share/mkcmd/cmd/echo.m -share/mkcmd/cmd/exec.m -share/mkcmd/cmd/exec.mc -share/mkcmd/cmd/exit.m -share/mkcmd/cmd/help.m -share/mkcmd/cmd/help.mc -share/mkcmd/cmd/macro.m -share/mkcmd/cmd/merge.m -share/mkcmd/cmd/parse.m -share/mkcmd/cmd/parse.mc -share/mkcmd/cmd/shell.m -share/mkcmd/cmd/shell.mc -share/mkcmd/cmd/source.m -share/mkcmd/cmd/source.mc -share/mkcmd/cmd/umask.m -share/mkcmd/cmd/umask.mc -share/mkcmd/cmd/version.m -share/mkcmd/dir/check.m -share/mkcmd/dir/check.mc -share/mkcmd/example/cgi.m -share/mkcmd/example/cmd.m -share/mkcmd/example/date.m -share/mkcmd/example/dir.m -share/mkcmd/example/dl.m -share/mkcmd/example/dumpdates.m -share/mkcmd/example/enum.m -share/mkcmd/example/filter.m -share/mkcmd/example/fts.m -share/mkcmd/example/glob.m -share/mkcmd/example/lex.m -share/mkcmd/example/macro.m -share/mkcmd/example/mult.m -share/mkcmd/example/nettime.m -share/mkcmd/example/ppm.m -share/mkcmd/example/rc.m -share/mkcmd/example/rls.m -share/mkcmd/example/rls.x -share/mkcmd/example/rlsd.m -share/mkcmd/example/server.m -share/mkcmd/example/time.m -share/mkcmd/example/timebox.m -share/mkcmd/getopt/key.m -share/mkcmd/enum.info -share/mkcmd/glob/ieee.m -share/mkcmd/glob/ieee.mc -share/mkcmd/rpc/client.m -share/mkcmd/rpc/server.m -share/mkcmd/rpc/server.mc -share/mkcmd/std/control.m -share/mkcmd/std/datehdr.m -share/mkcmd/std/filter.m -share/mkcmd/std/fts.m -share/mkcmd/std/help.m -share/mkcmd/std/lex.m -share/mkcmd/std/lex.mc -share/mkcmd/std/macro.m -share/mkcmd/std/macro.mc -share/mkcmd/std/macro.mh -share/mkcmd/std/macro.mi -share/mkcmd/std/noargs.m -share/mkcmd/std/targets.m -share/mkcmd/std/version.m -share/mkcmd/std/xdev.m -share/mkcmd/time/tz.m -share/mkcmd/tftp/client.m -share/mkcmd/tftp/client.mc -share/mkcmd/tftp/client.mh -share/mkcmd/tftp/client.mi -share/mkcmd/tftp/server.m -share/mkcmd/tftp/server.mc -share/mkcmd/tftp/server.mh -share/mkcmd/tftp/server.mi -share/mkcmd/util/by.m -share/mkcmd/util/cgi.m -share/mkcmd/util/cgi.mc -share/mkcmd/util/client.m -share/mkcmd/util/client.mc -share/mkcmd/util/client.mi -share/mkcmd/util/daemon.m -share/mkcmd/util/daemon.mc -share/mkcmd/util/daemon.mh -share/mkcmd/util/date.m -share/mkcmd/util/date.mc -share/mkcmd/util/date.mi -share/mkcmd/util/fgetln.m -share/mkcmd/util/fgetln.mc -share/mkcmd/util/dl.m -share/mkcmd/util/dl.mc -share/mkcmd/util/errno.m -share/mkcmd/util/fts.m -share/mkcmd/util/fts.mc -share/mkcmd/util/glob.m -share/mkcmd/util/editor.m -share/mkcmd/util/editor.mc -share/mkcmd/util/editor.mh -share/mkcmd/util/editor.mi -share/mkcmd/util/fsearch.m -share/mkcmd/util/fsearch.mc -share/mkcmd/util/fsearch.mh -share/mkcmd/util/home.m -share/mkcmd/util/fsearch.mi -share/mkcmd/util/getlogingr.m -share/mkcmd/util/getlogingr.mi -share/mkcmd/util/getlogingr.mc -share/mkcmd/util/herror.m -share/mkcmd/util/home.mc -share/mkcmd/util/home.mh -share/mkcmd/util/home.mi -share/mkcmd/util/mult.m -share/mkcmd/util/mult.mc -share/mkcmd/util/mult.mi -share/mkcmd/util/ppm.m -share/mkcmd/util/rc.m -share/mkcmd/util/rc.mc -share/mkcmd/util/rc.mi -share/mkcmd/util/server.m -share/mkcmd/util/server.mc -share/mkcmd/util/socket.m -share/mkcmd/util/socket.mc -share/mkcmd/util/socket.mi -share/mkcmd/util/time.m -share/mkcmd/util/savehostent.m -share/mkcmd/util/savehostent.mc -share/mkcmd/util/savehostent.mi -share/mkcmd/util/savegrent.m -share/mkcmd/util/savegrent.mc -share/mkcmd/util/savegrent.mh -share/mkcmd/util/savegrent.mi -share/mkcmd/util/savepwent.m -share/mkcmd/util/savepwent.mc -share/mkcmd/util/savepwent.mh -share/mkcmd/util/savepwent.mi -share/mkcmd/util/saveservent.m -share/mkcmd/util/saveservent.mc -share/mkcmd/util/saveservent.mi -share/mkcmd/util/sigret.m -share/mkcmd/util/sigret.mi -share/mkcmd/util/tftp.m -share/mkcmd/util/tftp.mh -share/mkcmd/util/tftp.mi -share/mkcmd/util/tftp.mc -share/mkcmd/util/time.mc -share/mkcmd/util/time.mh -share/mkcmd/util/time.mi -share/mkcmd/util/timebox.m -share/mkcmd/util/timebox.mc -share/mkcmd/util/timebox.mi -share/mkcmd/util/tmp.m -share/mkcmd/util/username.m -share/mkcmd/util/username.mh -share/mkcmd/util/username.mi -share/mkcmd/util/username.mc -share/mkcmd/util/unity.m -share/mkcmd/util/unity.mh -share/mkcmd/util/unity.mi -share/mkcmd/util/unity.mc -share/mkcmd/util/whittle.m -share/mkcmd/util/zombie.m -share/mkcmd/util/zombie.mc -share/mkcmd/xdr/Cargv.m -share/mkcmd/xdr/Cargv.mc -share/mkcmd/xdr/Cargv.mh -share/mkcmd/xdr/Cargv.mi -share/mkcmd/xdr/Cstring.m -share/mkcmd/xdr/Cstring.mc -share/mkcmd/xdr/Cstring.mh -share/mkcmd/xdr/Cstring.mi -man/man1/mkcmd.1.gz -man/man5/mkcmd.5.gz diff --git a/devel/msrc0/Makefile b/devel/msrc0/Makefile deleted file mode 100644 index e2c9093edab3..000000000000 --- a/devel/msrc0/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# Created by: ajk@waterspout.com -# $FreeBSD$ - -PORTNAME= msrc0 -PORTVERSION= 0.7 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.physics.purdue.edu/pub/pundits/ \ - http://www.komquats.com/distfiles/ \ - http://people.freebsd.org/~cy/distfiles/ - -MAINTAINER= cy@FreeBSD.org -COMMENT= Meta source fake-out script for building ksb tools - -DEPRECATED= No longer required as comms/conserver is being retired. -EXPIRATION_DATE= 2019-03-31 - -USES= tar:tgz -NO_BUILD= yes -NO_ARCH= yes -PLIST_FILES= bin/makeme -WRKSRC= ${WRKDIR}/${PORTNAME}-0.6 - -do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/makeme ${STAGEDIR}${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/devel/msrc0/distinfo b/devel/msrc0/distinfo deleted file mode 100644 index 55e208df327d..000000000000 --- a/devel/msrc0/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (msrc0-0.7.tgz) = e09ccfeb8353f456f1bcb9726f2973ffe6977af8ab24e910a8f07a76b952b694 -SIZE (msrc0-0.7.tgz) = 10772 diff --git a/devel/msrc0/files/patch-makeme b/devel/msrc0/files/patch-makeme deleted file mode 100644 index 4148ecf40d5f..000000000000 --- a/devel/msrc0/files/patch-makeme +++ /dev/null @@ -1,13 +0,0 @@ ---- makeme.orig Tue Nov 9 23:26:11 1999 -+++ makeme Tue Nov 9 23:27:44 1999 -@@ -1,4 +1,10 @@ - #!/bin/sh -+ -+# Hardcode HOSTTYPE because the bash shell uses it, too. -+ -+HOSTTYPE=FREEBSD -+export HOSTTYPE -+ - # This hack won't work for every trick you can play with /usr/msrc. - # If the Distfile sends different files to the various platforms, or - # builds a file on the meta source machine with a special tool or diff --git a/devel/msrc0/pkg-descr b/devel/msrc0/pkg-descr deleted file mode 100644 index 3ac41bd8ebe1..000000000000 --- a/devel/msrc0/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -We fake having a meta source platform installed to build a ksb-meta-source -product on a machine that doesn't have ksb's tools installed yet. This is -the part you need to get all the nifty toys started. diff --git a/sysutils/Makefile b/sysutils/Makefile index 69c0f1221cf2..0da9ca1d14b2 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -214,7 +214,6 @@ SUBDIR += cronolog SUBDIR += cronolog-devel SUBDIR += ctop - SUBDIR += curly SUBDIR += currtime SUBDIR += cw SUBDIR += daa2iso diff --git a/sysutils/curly/Makefile b/sysutils/curly/Makefile deleted file mode 100644 index e77925f93efc..000000000000 --- a/sysutils/curly/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# Created by: Stephen Gunn <csg@fedex.com>, <csg@waterspout.com> -# $FreeBSD$ - -PORTNAME= curly -PORTVERSION= 3.4 -CATEGORIES= sysutils -MASTER_SITES= ftp://ftp.physics.purdue.edu/pub/pundits/ \ - http://www.komquats.com/distfiles/ \ - http://people.freebsd.org/~cy/distfiles/ -DISTNAME= xapply-${PORTVERSION} - -MAINTAINER= cy@FreeBSD.org -COMMENT= Generalize listed filenames to csh-extended glob patterns - -BUILD_DEPENDS= makeme:devel/msrc0 \ - mkcmd:devel/mkcmd - -USES= tar:tgz - -MAKE_FLAGS= -MAKEFILE= - -post-patch: - @${REINPLACE_CMD} -e 's,CFLAGS=,CFLAGS+=,' -e 's,^DEBUG,#DEBUG,'\ - -e 's,gcc,${CC},' ${WRKSRC}/bin/curly/Make.host - -do-build: - ( cd ${WRKSRC}/bin/${PORTNAME} && ${SETENV} ${MAKE_ENV} makeme \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} ) - -do-install: - ( cd ${WRKSRC}/bin/curly && ${SETENV} ${MAKENV} makeme \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET} ) - ${INSTALL_MAN} ${WRKSRC}/bin/${PORTNAME}/${PORTNAME}.man \ - ${STAGEDIR}${MANPREFIX}/man/man1/${PORTNAME}.1 - ${LN} -s ${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1/un${PORTNAME}.1 - -.include <bsd.port.mk> diff --git a/sysutils/curly/distinfo b/sysutils/curly/distinfo deleted file mode 100644 index 544a1d9cf4c8..000000000000 --- a/sysutils/curly/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (xapply-3.4.tgz) = 68b9408310da0270d763a2c1c2beeadbbccef857bf5d00312748a1de8a5ea445 -SIZE (xapply-3.4.tgz) = 31354 diff --git a/sysutils/curly/files/patch-machine.h b/sysutils/curly/files/patch-machine.h deleted file mode 100644 index 0558cb079301..000000000000 --- a/sysutils/curly/files/patch-machine.h +++ /dev/null @@ -1,11 +0,0 @@ ---- bin/curly/machine.h.orig Wed Nov 13 08:08:13 2002 -+++ bin/curly/machine.h Wed Nov 13 08:08:48 2002 -@@ -19,7 +19,7 @@ - #endif - - #if !defined(NEED_MALLOC_EXTERN) --#define NEED_MALLOC_EXTERN (!USE_MALLOC_H && !defined(NEXT2) && !defined(IRIX) && !defined(BSDI)) -+#define NEED_MALLOC_EXTERN (!USE_MALLOC_H && !defined(NEXT2) && !defined(IRIX) && !defined(BSDI) && !defined(FREEBSD)) - #endif - - #if !defined(USE_STDLIB) diff --git a/sysutils/curly/pkg-descr b/sysutils/curly/pkg-descr deleted file mode 100644 index 6077f44de4aa..000000000000 --- a/sysutils/curly/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -Curly filters a list of filenames to a greatest-common-denominator -glob pattern used by most shells. diff --git a/sysutils/curly/pkg-plist b/sysutils/curly/pkg-plist deleted file mode 100644 index d1f8d846c5b7..000000000000 --- a/sysutils/curly/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -bin/curly -bin/uncurly -man/man1/curly.1.gz -man/man1/uncurly.1.gz |