mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
8ab4750b21
/etc/pam.d/passwd, the passwd program's prompts are changed yet again thus breaking poppassd. This patch fixes that, it is made against the version of poppassd.c that results from the FreeBSD patches already included in ports being applied. Also pass maintainer-ship to submitter and bump PORTREVISION. PR: 101680 Submitted by: tedm@ipinc.net
32 lines
825 B
Makefile
32 lines
825 B
Makefile
# New ports collection makefile for: poppassd
|
|
# Date Created: 21 August 1996
|
|
# Whom: Andrew Stevenson <andrew@ugh.net.au> based heavily on the changes by Stephen Melvin <melvin@zytek.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= poppassd
|
|
PORTVERSION= 4.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.qualcomm.com/eudora/servers/unix/password/
|
|
DISTNAME= pwserve-4
|
|
EXTRACT_SUFX=
|
|
|
|
MAINTAINER= tedm@ipinc.net
|
|
COMMENT= A server to allow users to change their password from within Eudora
|
|
|
|
EXTRACT_CMD= ${CAT}
|
|
EXTRACT_BEFORE_ARGS=
|
|
EXTRACT_AFTER_ARGS= | ${SED} -e '1,16d' | ${SH}
|
|
WRKSRC= ${WRKDIR}/poppassd
|
|
ALL_TARGET= poppassd
|
|
MAN8= poppassd.8
|
|
PLIST_FILES= libexec/poppassd
|
|
|
|
do-install:
|
|
@ ${INSTALL_PROGRAM} ${WRKSRC}/poppassd ${PREFIX}/libexec
|
|
@ ${INSTALL_MAN} ${FILESDIR}/poppassd.8 ${PREFIX}/man/man8/
|
|
|
|
.include <bsd.port.mk>
|