571f5e595a
kpoppassd is a kerberos password changing daemon that behaves like poppassd. It allows a user to change his/her password remotely without having to login. This is particularly useful for webmail systems that use imap (i.e. horde/imp). The daemon works exactly like the original poppassd. The only difference being that this poppassd changes a user's Kerberos 5 password. From Antoine Jacoutot <ajacoutot@lphp.org>
30 lines
694 B
Makefile
Executable File
30 lines
694 B
Makefile
Executable File
# $OpenBSD: Makefile,v 1.1.1.1 2005/06/11 09:46:08 alek Exp $
|
|
|
|
COMMENT= "pop password changing daemon using KerberosV"
|
|
|
|
DISTNAME= kpoppassd-0.5
|
|
CATEGORIES= mail
|
|
|
|
HOMEPAGE= http://kpoppassd.sourceforge.net/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@lphp.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP=Y es
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=kpoppassd/}
|
|
|
|
WANTLIB= c com_err crypto krb5
|
|
|
|
WRKDIST= ${WRKDIR}/kpoppassd
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/kpoppassd ${PREFIX}/libexec
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/kpoppassd
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/kpoppassd
|
|
|
|
.include <bsd.port.mk>
|