mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
23 lines
480 B
Makefile
23 lines
480 B
Makefile
# Created by: Thomas Gellekum <tg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rman
|
|
PORTVERSION= 3.2
|
|
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="${MAN1PREFIX}/man/man1"
|
|
|
|
MAN1= rman.1
|
|
PLIST_FILES= bin/rman
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
@${STRIP_CMD} ${PREFIX}/bin/rman
|
|
|
|
.include <bsd.port.mk>
|