aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/doconfig
diff options
context:
space:
mode:
authorlawrance <lawrance@FreeBSD.org>2005-06-25 14:18:35 +0800
committerlawrance <lawrance@FreeBSD.org>2005-06-25 14:18:35 +0800
commitf91b0ae6c2e6ddf44610ba0f246e5fda7f3b029f (patch)
tree7327c8a27f37d2245057deb6a316fc3949438864 /sysutils/doconfig
parent75258f8bb124629daabaf989101c6a2992e0e704 (diff)
downloadfreebsd-ports-gnome-f91b0ae6c2e6ddf44610ba0f246e5fda7f3b029f.tar.gz
freebsd-ports-gnome-f91b0ae6c2e6ddf44610ba0f246e5fda7f3b029f.tar.zst
freebsd-ports-gnome-f91b0ae6c2e6ddf44610ba0f246e5fda7f3b029f.zip
Remove expired port.
Diffstat (limited to 'sysutils/doconfig')
-rw-r--r--sysutils/doconfig/Makefile39
-rw-r--r--sysutils/doconfig/distinfo2
-rw-r--r--sysutils/doconfig/files/patch-aa20
-rw-r--r--sysutils/doconfig/pkg-descr12
4 files changed, 0 insertions, 73 deletions
diff --git a/sysutils/doconfig/Makefile b/sysutils/doconfig/Makefile
deleted file mode 100644
index 1992a68b7cc3..000000000000
--- a/sysutils/doconfig/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# Ports collection Makefile for: doconfig
-# Date created: 7/27/1998
-# Whom: nectar@FreeBSD.org
-#
-# $FreeBSD$
-#
-
-PORTNAME= doconfig
-PORTVERSION= 1.1
-CATEGORIES= sysutils
-MASTER_SITES= # ftp://ftp.cold.org/pub/brandon/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Kernel "config" wrapper ala Digital Unix's doconfig
-
-DEPRECATED= "master site disappeared"
-EXPIRATION_DATE= 2005-06-01
-
-MAN8= autokernconf.8 doconfig.8
-
-WRKSRC= ${WRKDIR}/doconfig
-
-PLIST_FILES= sbin/autokernconf sbin/doconfig
-
-do-build:
- @ ${MV} ${WRKSRC}/doconfig ${WRKSRC}/_doconfig
- @ ${SED} 's#%%PREFIX%%#${PREFIX}#g' <${WRKSRC}/_doconfig \
- >${WRKSRC}/doconfig
- @ ${RM} ${WRKSRC}/_doconfig
-
-do-install:
-.for f in autokernconf doconfig
- ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${PREFIX}/sbin/${f}
-.endfor
-.for f in ${MAN8}
- ${INSTALL_MAN} ${WRKSRC}/${f} ${MANPREFIX}/man/man8/${f}
-.endfor
-
-.include <bsd.port.mk>
diff --git a/sysutils/doconfig/distinfo b/sysutils/doconfig/distinfo
deleted file mode 100644
index 48cc35e3454b..000000000000
--- a/sysutils/doconfig/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (doconfig-1.1.tar.gz) = 3e7f6e43f480618e332eb5a6832bf734
-SIZE (doconfig-1.1.tar.gz) = 7734
diff --git a/sysutils/doconfig/files/patch-aa b/sysutils/doconfig/files/patch-aa
deleted file mode 100644
index 23b42be85c16..000000000000
--- a/sysutils/doconfig/files/patch-aa
+++ /dev/null
@@ -1,20 +0,0 @@
---- doconfig.orig Tue Jul 28 02:35:51 1998
-+++ doconfig Mon Aug 3 01:23:20 1998
-@@ -8,7 +8,7 @@
- $log = "$sys_base/$sys_conf/kernelbuild.log";
-
- ## we dont actually need anything here
--$ENV{PATH} = "/bin:/sbin:/usr/bin:/usr/sbin";
-+$ENV{PATH} = "/bin:/sbin:/usr/bin:/usr/sbin:%%PREFIX%%/bin";
-
- # basic verification stuff
- if ($< || $>) {
-@@ -44,7 +44,7 @@
- }
-
- $version = "1.1";
--$autokernconf = "/usr/sbin/autokernconf";
-+$autokernconf = "%%PREFIX%%/sbin/autokernconf";
- $autokernconf_args = "";
- $autoinstall = 0;
- $autoreboot = 0;
diff --git a/sysutils/doconfig/pkg-descr b/sysutils/doconfig/pkg-descr
deleted file mode 100644
index 01ed182e6953..000000000000
--- a/sysutils/doconfig/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-The author wrote:
-
- This is a kernel 'config' wrapper for the simple people, based off the
- 'doconfig' command in Digital Unix. It is actually composed of two
- commands written in perl4: doconfig and autokernconf. doconfig calls
- autokernconf if no config file is specified--in the future it is intended
- that autokernconf can be crufted up to chew on the output of dmesg and
- other sources to give a somewhat intelligently defaulted kernel config
- template, based off the GENERIC template. For now it just copies GENERIC
- and changes ident as appropriate.
-
-Jacques Vidrine <nectar@FreeBSD.ORG>