summaryrefslogtreecommitdiff
path: root/textproc/unroff/scripts/configure
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/unroff/scripts/configure')
-rw-r--r--textproc/unroff/scripts/configure30
1 files changed, 0 insertions, 30 deletions
diff --git a/textproc/unroff/scripts/configure b/textproc/unroff/scripts/configure
deleted file mode 100644
index b8e8927ecb8..00000000000
--- a/textproc/unroff/scripts/configure
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-#
-# $NetBSD: configure,v 1.4 1999/01/09 20:49:27 kleink Exp $
-#
-
-# write a small makefile to ${WRKSRC}
-
-cat >${WRKSRC}/Makefile <<EOF
-CFLAGS+= -DBSD
-BINDIR= \${PREFIX}/bin
-LIBDIR= \${PREFIX}/share/unroff
-MANDIR= \${PREFIX}/man/man1
-
-all:
- (cd src; make 'CFLAGS=\${CFLAGS}' 'PREFIX=\${PREFIX}' all)
-
-install:
- @mkdir -p \${BINDIR} \${LIBDIR} \${MANDIR}
- install -c -o bin -g bin src/unroff \${PREFIX}/bin/unroff
- cp -R scm \${LIBDIR}
- @mkdir -p \${LIBDIR}/doc
- cp doc/manual.ms \${LIBDIR}/doc
- @mkdir -p \${LIBDIR}/misc
- cp doc/tmac.hyper misc/sample.unroff \${LIBDIR}/misc
- @chown -R bin:bin \${LIBDIR}
- install -c -m 644 -o bin -g bin doc/*.1 \${MANDIR}
-
-EOF
-
-exit 0