mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 19:36:28 -04:00
Simplify expressions for FreeBSD 13.X Reviewed by: many Differential Revision: https://reviews.freebsd.org/D46601
24 lines
566 B
Makefile
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>
|