blob: 3d92568af264c0bec288d73e9f7e9b33efacefa3 (
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
25
|
# New ports collection makefile for: rman
# Date created: 27 Dec 1994
# Whom: 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
post-install:
@${STRIP_CMD} ${PREFIX}/bin/rman
.include <bsd.port.mk>
|