ports/textproc/rman/Makefile
Rene Ladan 4485bd8221 all: drop support for expired FreeBSD 14.0
Simplify expressions for FreeBSD 13.X

Reviewed by:	many

Differential Revision:	https://reviews.freebsd.org/D46601
2024-10-01 20:56:20 +02:00

24 lines
566 B
Makefile

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>