diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-05-02 11:57:10 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-05-02 11:57:10 +0000 |
commit | 8ec78d0c2ee1d5164fabd8b585d7257ce480584f (patch) | |
tree | d31bb76cffe852406a40e412f493e31cba321371 /devel/c2mdoc/files | |
parent | Let CATEGORIES be overwritten by slave ports (chinese/joe) (diff) |
Remove unmaintained expired ports from devel
2011-05-01 devel/a2dev: Upstream disapear and distfile is no more available
2011-05-01 devel/c2lib: Upstream disapear and distfile is no more available
2011-05-01 devel/c2man: Upstream disapear and distfile is no more available
2011-05-01 devel/c2mdoc: Upstream disapear and distfile is no more available
2011-05-01 devel/c_parser: Upstream disapear and distfile is no more available
2011-05-01 devel/cdoc: Upstream disapear and distfile is no more available
2011-05-01 devel/diffconvert: Upstream disapear and distfile is no more available
2011-05-01 devel/ecgi: Upstream disapear and distfile is no more available
2011-05-01 devel/error: Upstream disapear and distfile is no more available
2011-05-01 devel/excalibur-configuration: Upstream disapear and distfile is no more available
2011-05-01 devel/freelibiberty: Upstream disapear and distfile is no more available
2011-05-01 devel/gengameng: Upstream disapear and distfile is no more available
2011-05-01 devel/hptools: Upstream disapear and distfile is no more available
2011-05-01 devel/invitation_to_ruby: Upstream disapear and distfile is no more available
2011-05-01 devel/kimwitu++: Upstream disapear and distfile is no more available
2011-05-01 devel/libU77: Upstream disapear and distfile is no more available
2011-05-01 devel/libcoro: Upstream disapear and distfile is no more available
2011-05-01 devel/libpperl: Upstream disapear and distfile is no more available
2011-05-01 devel/lincvs: Upstream disapear and distfile is no more available
2011-05-01 devel/linux-runrev: Abandon upstream and distfile is no more available
2011-05-01 devel/makeplus: Upstream disapear and distfile is no more available
2011-05-01 devel/maketool: Upstream disapear and distfile is no more available
2011-05-01 devel/mob: Upstream disapear and distfile is no more available
2011-05-01 devel/mprof: Upstream disapear and distfile is no more available
2011-05-01 devel/ngpt: Upstream disapear and distfile is no more available
2011-05-01 devel/pedisassem: Upstream disapear and distfile is no more available
2011-05-01 devel/rinfo: Upstream disapear and distfile is no more available
2011-05-01 devel/templ: Upstream disapear and distfile is no more available
2011-05-01 devel/towitoko: Upstream disapear and distfile is no more available
Notes
Notes:
svn path=/head/; revision=273470
Diffstat (limited to 'devel/c2mdoc/files')
-rw-r--r-- | devel/c2mdoc/files/c2mdoc | 17 | ||||
-rw-r--r-- | devel/c2mdoc/files/c2mdoc.awk | 15 |
2 files changed, 0 insertions, 32 deletions
diff --git a/devel/c2mdoc/files/c2mdoc b/devel/c2mdoc/files/c2mdoc deleted file mode 100644 index e1b789998d04..000000000000 --- a/devel/c2mdoc/files/c2mdoc +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -# -# c2mdoc -- Front-end which abuses the cproto parser to spit out -# mdoc(7) format prototypes for use in FreeBSD documentation. -# -# $FreeBSD$ -# - -AWKSCRIPT="%%LIBEXECDIR%%/c2mdoc.awk" -CPROTO='-P"int\tf\t(\ta\t,\tb\t)" -pq -f3' -CPROTO_BIN=cproto -export CPROTO - -${CPROTO_BIN} $1 | \ - grep -v '/\*.*\*/' | \ - sed -e 's/[,();]//g' | \ - ${AWKSCRIPT} diff --git a/devel/c2mdoc/files/c2mdoc.awk b/devel/c2mdoc/files/c2mdoc.awk deleted file mode 100644 index ec7dfb9ab84a..000000000000 --- a/devel/c2mdoc/files/c2mdoc.awk +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/awk -f -# -# c2mdoc.awk -- Takes tabulated output from cproto(1) and turns it into -# mdoc(7) markup. -# -# $FreeBSD$ -# -BEGIN { FS="\t" } -{ - printf ".Ft %s\n", $1 ; - printf ".Fn %s", $2 ; - for (i = 4; i < NF; i++) - printf " \"%s\"", $i - printf "\n" ; -} |