diff options
author | khorben <khorben@pkgsrc.org> | 2015-03-06 18:08:38 +0000 |
---|---|---|
committer | khorben <khorben@pkgsrc.org> | 2015-03-06 18:08:38 +0000 |
commit | 663b9894a4f8ccc7bd7bf272b89bf6f8c0e52751 (patch) | |
tree | 3ce7724c35adbf5c24dd1beccb883acb5240b138 /sysutils/estd | |
parent | ec566c3e37e1fb3b847eb0c27f0b7b5c227cede9 (diff) | |
download | pkgsrc-663b9894a4f8ccc7bd7bf272b89bf6f8c0e52751.tar.gz |
Removed the "estd: Forked" message
It seems useless to me, and it is inconsistent with the rest of the
initialization scripts.
Diffstat (limited to 'sysutils/estd')
-rw-r--r-- | sysutils/estd/Makefile | 3 | ||||
-rw-r--r-- | sysutils/estd/distinfo | 5 | ||||
-rw-r--r-- | sysutils/estd/patches/patch-aa | 4 | ||||
-rw-r--r-- | sysutils/estd/patches/patch-estd.c | 14 |
4 files changed, 21 insertions, 5 deletions
diff --git a/sysutils/estd/Makefile b/sysutils/estd/Makefile index 83cb656d03f..28c71ad3ec3 100644 --- a/sysutils/estd/Makefile +++ b/sysutils/estd/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.27 2015/02/19 00:08:15 wiz Exp $ +# $NetBSD: Makefile,v 1.28 2015/03/06 18:08:38 khorben Exp $ DISTNAME= estd-r11 PKGNAME= estd-0.11 +PKGREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.ecademix.com/JohannesHofmann/ diff --git a/sysutils/estd/distinfo b/sysutils/estd/distinfo index 501109a1b83..00317cd7825 100644 --- a/sysutils/estd/distinfo +++ b/sysutils/estd/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.20 2015/02/19 00:08:15 wiz Exp $ +$NetBSD: distinfo,v 1.21 2015/03/06 18:08:38 khorben Exp $ SHA1 (estd-r11.tar.gz) = 6c1148d66ff93b2e45af0411f1234fcccd1a2407 RMD160 (estd-r11.tar.gz) = 261a6a79e54f2502a50aad79e336259604376f3c Size (estd-r11.tar.gz) = 9361 bytes -SHA1 (patch-aa) = 0d263f929c700bc14f16a968e330b103cdeea07e +SHA1 (patch-aa) = d377a38dacee5e93feaf67747d5bf2a7a32c036b +SHA1 (patch-estd.c) = e813e795a18fa16ced0070fe7485dff3f3de61ac diff --git a/sysutils/estd/patches/patch-aa b/sysutils/estd/patches/patch-aa index 5c99c5c4557..8c20228dad2 100644 --- a/sysutils/estd/patches/patch-aa +++ b/sysutils/estd/patches/patch-aa @@ -1,9 +1,9 @@ -$NetBSD: patch-aa,v 1.9 2015/02/18 10:34:57 wiz Exp $ +$NetBSD: patch-aa,v 1.10 2015/03/06 18:08:38 khorben Exp $ Use BSD_INSTALL_* instead of directly invoking install(1), add DESTDIR support and install all the files in the proper locations. ---- Makefile.orig 2015-02-15 21:12:10.000000000 +0000 +--- Makefile.orig 2015-02-18 21:38:03.000000000 +0000 +++ Makefile @@ -19,7 +19,8 @@ estd: estd.c all: estd diff --git a/sysutils/estd/patches/patch-estd.c b/sysutils/estd/patches/patch-estd.c new file mode 100644 index 00000000000..cbef47a4d86 --- /dev/null +++ b/sysutils/estd/patches/patch-estd.c @@ -0,0 +1,14 @@ +$NetBSD: patch-estd.c,v 1.1 2015/03/06 18:08:38 khorben Exp $ + +Removed useless "estd: Forked" message + +--- estd.c.orig 2015-02-18 21:38:03.000000000 +0000 ++++ estd.c +@@ -626,7 +626,6 @@ main(int argc, char *argv[]) + /* all ok, here we go */ + if (daemonize) { + if (fork()) { +- printf("estd: Forked\n"); + exit(0); + } + } else { |