summaryrefslogtreecommitdiff
path: root/devel/cdoc/Makefile
blob: 4bbf0ce0c1cf6017bad76cdf05b1775b629b5cd1 (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
26
27
28
29
30
31
32
33
34
35
36
# 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=	alane@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