5f75110ebe
When displaying 'rows of -', stop at 77 rather than 79 to avoid pine wrapping the lines.
30 lines
754 B
Makefile
30 lines
754 B
Makefile
# $NetBSD: Makefile,v 1.3 2005/02/07 15:54:04 abs Exp $
|
|
#
|
|
|
|
DISTNAME= pine-pgp-filters-1.1
|
|
PKGREVISION= 2
|
|
CATEGORIES= security mail
|
|
MASTER_SITES= http://dougbarton.net/FreeBSD/Downloads/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://dougbarton.net/FreeBSD/Downloads/
|
|
COMMENT= Filters to integrate Pine with gnupg or pgp
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/pine-pgp-filters
|
|
DOCFILES= BUGS CHANGES INSTALL LICENSE README
|
|
|
|
do-build:
|
|
.for f in ${DOCFILES}
|
|
${SED} 's:/usr/local:${PREFIX}:g' ${WRKSRC}/${f} > ${WRKSRC}/${f}.gen
|
|
.endfor
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
.for f in ${DOCFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${f}.gen ${DOCDIR}/${f}
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|