1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/devel/cdoc/Makefile
Will Andrews f9be1a26da REST IN PEACE
Alan Eldridge
Born December 15, 1961 in Iowa
Died June 6, 2003 in Denver, Colorado

Thank you for your contributions, you
will be greatly missed.
2003-06-08 21:06:22 +00:00

37 lines
652 B
Makefile

# ex:ts=8 -*-mode: makefile-*-
#
# New ports collection makefile for: cdoc
# Date created: 2002-12-22
# Whom: Alan Eldridge <alane@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= cdoc
PORTVERSION= 0.9.6
PORTREVISION= 1
PORTEPOCH= 0
CATEGORIES= devel
MASTER_SITES= http://www.annexia.org/freeware/${PORTNAME}/
MAINTAINER= ports@FreeBSD.org
COMMENT= Extracts documentation from C source code comments
BUILD_DEPENDS+= make+:${.CURDIR}/../makeplus
USE_GMAKE= yes
USE_PERL5_RUN= yes
PREFIX?= ${LOCALBASE}
.include <bsd.port.pre.mk>
do-build:
cd ${WRKSRC}; make+
do-install:
cd ${WRKSRC}; make+ install prefix=${PREFIX}
.include <bsd.port.post.mk>
#EOF