blob: 4f7ab8bd2f25eef065c97bebee0ace8731965451 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
PORTNAME= rman
PORTVERSION= 3.2
PORTREVISION= 1
CATEGORIES= textproc
MASTER_SITES= SF/polyglotman/polyglotman/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Reverse compile man pages from formatted form
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" \
BINDIR="${PREFIX}/bin" MANDIR="${PREFIX}/share/man/man1"
PLIST_FILES= bin/rman share/man/man1/rman.1.gz
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD
CFLAGS+= -Wno-error=incompatible-function-pointer-types
.endif
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/rman
.include <bsd.port.mk>
|