diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-09-16 13:01:41 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-09-16 13:01:41 +0000 |
commit | adc91f7a303b7c85034abbbc1de693ce2d39155e (patch) | |
tree | 8eac314cc89d688fc1d254bdc9f1bc6a3e6cf241 /sysutils/daemontools53 | |
parent | 7749afe89cc4af72348e6a1b964bafcc26729d86 (diff) |
Notes
Diffstat (limited to 'sysutils/daemontools53')
-rw-r--r-- | sysutils/daemontools53/Makefile | 25 | ||||
-rw-r--r-- | sysutils/daemontools53/distinfo | 2 | ||||
-rw-r--r-- | sysutils/daemontools53/pkg-descr | 5 | ||||
-rw-r--r-- | sysutils/daemontools53/pkg-plist | 11 | ||||
-rw-r--r-- | sysutils/daemontools53/scripts/configure | 56 |
5 files changed, 0 insertions, 99 deletions
diff --git a/sysutils/daemontools53/Makefile b/sysutils/daemontools53/Makefile deleted file mode 100644 index 4f06949b71ee..000000000000 --- a/sysutils/daemontools53/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# Created by: Dom Mitchell <dom@happygiraffe.net> -# $FreeBSD$ - -PORTNAME= daemontools -PORTVERSION= 0.53 -CATEGORIES= sysutils -MASTER_SITES= http://cr.yp.to/daemontools/ \ - ftp://cr.yp.to/daemontools/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Service monitoring and logging utilities by djb - -RESTRICTED= Unsure of djb's license -NO_LATEST_LINK= yes - -ALL_TARGET= it man -INSTALL_TARGET= setup - -SCRIPTS_ENV= BINOWN="${BINOWN}" BINGRP="${BINGRP}" BINMODE="${BINMODE}" \ - MANMODE="${MANMODE}" CFLAGS="${CFLAGS}" - -MAN1= accustamp.1 cyclog.1 errorsto.1 fifo.1 setuser.1 supervise.1 \ - svc.1 svstat.1 tailocal.1 testfilelock.1 usually.1 - -.include <bsd.port.mk> diff --git a/sysutils/daemontools53/distinfo b/sysutils/daemontools53/distinfo deleted file mode 100644 index b48c819f9654..000000000000 --- a/sysutils/daemontools53/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (daemontools-0.53.tar.gz) = 89e650f3559938ea740bada7b0ddce3725ad106a4227923bd68d2eb5e26e6ac1 -SIZE (daemontools-0.53.tar.gz) = 39693 diff --git a/sysutils/daemontools53/pkg-descr b/sysutils/daemontools53/pkg-descr deleted file mode 100644 index b7d06433995a..000000000000 --- a/sysutils/daemontools53/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Daemontools is a small set of /very/ useful utilities, from Dan -Bernstein. They are mainly used for controlling processes, and -maintaining logfiles. - -WWW: http://pobox.com/~djb/daemontools.html diff --git a/sysutils/daemontools53/pkg-plist b/sysutils/daemontools53/pkg-plist deleted file mode 100644 index a297cebde8e2..000000000000 --- a/sysutils/daemontools53/pkg-plist +++ /dev/null @@ -1,11 +0,0 @@ -bin/supervise -bin/svc -bin/svstat -bin/testfilelock -bin/fifo -bin/cyclog -bin/errorsto -bin/usually -bin/accustamp -bin/tailocal -bin/setuser diff --git a/sysutils/daemontools53/scripts/configure b/sysutils/daemontools53/scripts/configure deleted file mode 100644 index 7a1467fd9dc0..000000000000 --- a/sysutils/daemontools53/scripts/configure +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh -# -# Set up daemontools for the *BSD environment... -# -# @(#) $FreeBSD: /tmp/pcvs/ports/sysutils/daemontools53/scripts/configure,v 1.1.1.1 2000-04-27 21:25:36 nbm Exp $ -# - -# Tune the options we're given. -echo ${PREFIX}/bin > ${WRKSRC}/conf-bin -echo ${PREFIX}/man > ${WRKSRC}/conf-man -echo cc ${CFLAGS} > ${WRKSRC}/conf-cc - -# Set up binaries correctly. -awk 'BEGIN { - FS=":" - OFS=":" -} -$1 == "c" { - if ($6 == "setuser") { - $2 = "0" - $3 = "0" - } else { - $2 = bu - $3 = bg - $4 = bm - } - print - next -} -{ - print -}' bu=`id -u ${BINOWN}` bg=`id -g ${BINGRP}` bm=${BINMODE} \ - ${WRKSRC}/BIN > ${WRKSRC}/BIN.tmp -mv ${WRKSRC}/BIN.tmp ${WRKSRC}/BIN - -# Set up man pages correctly. -awk 'BEGIN { - FS=":" - OFS=":" -} -# Dispose of preformatted man pages. -$5 ~ "cat" { - next -} -$1 == "c" { - $2 = bu - $3 = bg - $4 = mm - print - next -} -{ - print -}' bu=`id -u ${BINOWN}` bg=`id -g ${BINGRP}` mm=${MANMODE} \ - ${WRKSRC}/MAN > ${WRKSRC}/MAN.tmp -mv ${WRKSRC}/MAN.tmp ${WRKSRC}/MAN |