mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
87498a4551
- Use PLIST_* - Respect CC & CFLAGS - Doesn't need gmake - Don't create unsafe log file, print post-install message instead. PR: ports/62787 ports/62691 Submitted by: maintainer, Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
31 lines
748 B
Makefile
31 lines
748 B
Makefile
# New ports collection makefile for: chpasswd
|
|
# Date created: 18 December 2003
|
|
# Whom: Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= chpasswd
|
|
PORTVERSION= 2.2.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://web.onda.com.br/orso/ \
|
|
http://fresh.t-systems-sfr.com/unix/src/privat2/
|
|
|
|
MAINTAINER= jmelo@freebsdbrasil.com.br
|
|
COMMENT= Allow users to change their Squid or Web password using the browser
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX}/etc/chpasswd \
|
|
--enable-language=English \
|
|
--enable-cgidir=${PREFIX}/www/cgi-bin
|
|
|
|
pre-install:
|
|
@${MKDIR} ${PREFIX}/www/cgi-bin
|
|
|
|
post-install:
|
|
@${ECHO} 'Remember, passwd and log file must be owned by httpd user, or chmod 777'
|
|
|
|
.include <bsd.port.mk>
|