2003-09-30 12:10:05 +00:00
|
|
|
# New ports collection makefile for: userneu
|
|
|
|
# Date created: 7 August 2003
|
|
|
|
# Whom: Andreas Fehlner (fehlner@gmx.de)
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= userneu
|
2003-10-23 20:37:08 +00:00
|
|
|
PORTVERSION= 1.38
|
2010-09-21 16:08:11 +00:00
|
|
|
PORTREVISION= 1
|
2003-09-30 12:10:05 +00:00
|
|
|
CATEGORIES= sysutils
|
2005-04-03 16:30:13 +00:00
|
|
|
MASTER_SITES= http://btw23.de/johannes/userneu/ \
|
2006-08-18 20:17:59 +00:00
|
|
|
http://home.arcor.de/fehlner/fbsd_ports/ \
|
|
|
|
http://home.arcor.de/teambushido/fbsd_ports/
|
2003-10-23 20:37:08 +00:00
|
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}_1
|
2003-09-30 12:10:05 +00:00
|
|
|
|
|
|
|
MAINTAINER= fehlner@gmx.de
|
|
|
|
COMMENT= Account management and creation tool
|
|
|
|
|
|
|
|
RUN_DEPENDS= \
|
2012-06-30 12:25:05 +00:00
|
|
|
p5-Crypt-PasswdMD5>=0:${PORTSDIR}/security/p5-Crypt-PasswdMD5 \
|
|
|
|
p5-Crypt-RandPasswd>=0:${PORTSDIR}/security/p5-Crypt-RandPasswd
|
2003-11-03 03:56:42 +00:00
|
|
|
|
2004-08-11 21:32:03 +00:00
|
|
|
USE_PERL5_RUN= yes
|
2003-09-30 12:10:05 +00:00
|
|
|
NO_BUILD= yes
|
|
|
|
|
2004-10-18 21:38:02 +00:00
|
|
|
CONFLICTS= userneu-devel-[0-9]*
|
2004-01-16 01:30:04 +00:00
|
|
|
|
2003-10-23 20:37:08 +00:00
|
|
|
SCRIPTS= userneu.pl userquick.pl smbrepair.pl
|
|
|
|
MAN8= userneu.8 userquick.8
|
|
|
|
DOCS= BUGS CHANGES CREDITS REQUIREMENTS TODO \
|
|
|
|
doc/README doc/INSTALL doc/userneu.pod doc/userquick.pod
|
2003-09-30 12:10:05 +00:00
|
|
|
EXAMPLES= list-sample
|
|
|
|
|
2010-09-21 16:08:11 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${PERL_LEVEL} < 500703
|
|
|
|
RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5
|
|
|
|
.endif
|
|
|
|
|
2003-09-30 12:10:05 +00:00
|
|
|
do-install:
|
2003-10-23 20:37:08 +00:00
|
|
|
cd ${WRKSRC}/doc && ${INSTALL_MAN} ${MAN8} ${MANPREFIX}/man/man8
|
|
|
|
cd ${WRKSRC} && ${INSTALL_SCRIPT} ${SCRIPTS} ${PREFIX}/sbin
|
2003-09-30 12:10:05 +00:00
|
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
|
2003-10-23 20:37:08 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
2003-09-30 12:10:05 +00:00
|
|
|
@${MKDIR} ${DOCSDIR}
|
|
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
2003-10-23 20:37:08 +00:00
|
|
|
.endif
|
2003-09-30 12:10:05 +00:00
|
|
|
|
2010-09-21 16:08:11 +00:00
|
|
|
.include <bsd.port.post.mk>
|