Module Name: src
Committed By: tron
Date: Sun Jul 6 20:09:26 UTC 2014
Modified Files:
src/external/ibm-public/postfix/man/man1: Makefile
src/external/ibm-public/postfix/sbin: Makefile
Added Files:
src/external/ibm-public/postfix/sbin/posttls-finger: Makefile
Log Message:
Build and install posttls-finger(1).
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/ibm-public/postfix/man/man1/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/ibm-public/postfix/sbin/Makefile
cvs rdiff -u -r0 -r1.1 \
src/external/ibm-public/postfix/sbin/posttls-finger/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/ibm-public/postfix/man/man1/Makefile
diff -u src/external/ibm-public/postfix/man/man1/Makefile:1.1 src/external/ibm-public/postfix/man/man1/Makefile:1.2
--- src/external/ibm-public/postfix/man/man1/Makefile:1.1 Tue Jun 23 15:02:52 2009
+++ src/external/ibm-public/postfix/man/man1/Makefile Sun Jul 6 20:09:26 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2009/06/23 15:02:52 tron Exp $
+# $NetBSD: Makefile,v 1.2 2014/07/06 20:09:26 tron Exp $
.include <bsd.own.mk>
@@ -9,7 +9,7 @@ DIST= ${NETBSDSRCDIR}/external/ibm-publi
MAN= postalias.1 postcat.1 postconf.1 postfix.1 \
postkick.1 postlock.1 postlog.1 postdrop.1 \
postmap.1 sendmail.1 \
- postqueue.1 postsuper.1 postmulti.1
+ postqueue.1 postsuper.1 postmulti.1 posttls-finger.1
MLINKS= sendmail.1 mailq.1 sendmail.1 newaliases.1
Index: src/external/ibm-public/postfix/sbin/Makefile
diff -u src/external/ibm-public/postfix/sbin/Makefile:1.1 src/external/ibm-public/postfix/sbin/Makefile:1.2
--- src/external/ibm-public/postfix/sbin/Makefile:1.1 Thu Jun 25 18:21:59 2009
+++ src/external/ibm-public/postfix/sbin/Makefile Sun Jul 6 20:09:26 2014
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.1 2009/06/25 18:21:59 tron Exp $
+# $NetBSD: Makefile,v 1.2 2014/07/06 20:09:26 tron Exp $
.include <bsd.own.mk>
SUBDIR= postalias postcat postconf postdrop postfix postkick postlock postlog \
- postmap postmulti postqueue postsuper
+ postmap postmulti postqueue postsuper posttls-finger
.include <bsd.subdir.mk>
Added files:
Index: src/external/ibm-public/postfix/sbin/posttls-finger/Makefile
diff -u /dev/null src/external/ibm-public/postfix/sbin/posttls-finger/Makefile:1.1
--- /dev/null Sun Jul 6 20:09:26 2014
+++ src/external/ibm-public/postfix/sbin/posttls-finger/Makefile Sun Jul 6 20:09:26 2014
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1 2014/07/06 20:09:26 tron Exp $
+
+NOMAN= # defined
+
+.include <bsd.own.mk>
+
+PROG= posttls-finger
+SRCS= posttls-finger.c tlsmgrmem.c
+
+DIST= ${NETBSDSRCDIR}/external/ibm-public/postfix/dist/src/${PROG}
+.PATH: ${DIST}
+
+DPADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL}
+LDADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL}
+
+.include <bsd.prog.mk>