mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
4cc48499fb
- Take advantage of macro name 'SF' for MASTER_SITES - Use PORTDOCS & PLIST_FILES instead PR: 128967 Submitted by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw> Approved by: maintainer timeout
37 lines
806 B
Makefile
37 lines
806 B
Makefile
# New ports collection makefile for: pwman
|
|
# Date created: 23 June 2002
|
|
# Whom: Anders Nordby <anders@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pwman
|
|
PORTVERSION= 0.3.9
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= anders@FreeBSD.org
|
|
COMMENT= Console password management application based on gpg(me)
|
|
|
|
LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2
|
|
RUN_DEPENDS= gpgv:${PORTSDIR}/security/gnupg1
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= pwman.1
|
|
|
|
PLIST_FILES= bin/convert_pwdb bin/pwdb2csv bin/pwman
|
|
|
|
PORTDOCS= AUTHORS COPYING ChangeLog README TODO
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/bin/gpg|${LOCALBASE}/bin/gpg|g' ${WRKSRC}/src/options.c
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${INSTALL} -d -m 0755 ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|