blob: b6ff4a943daeb2ed69d321e8d5ce4f69d0b76f55 (
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
|
# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
# $FreeBSD$
PORTNAME= ucpp
PORTVERSION= 1.3.2
CATEGORIES= devel
MASTER_SITES= GOOGLE_CODE
MAINTAINER= crees@FreeBSD.org
COMMENT= C preprocessor and lexer
LICENSE= BSD3CLAUSE
BROKEN= Unfetchable (google code has gone away)
PLIST_FILES= bin/ucpp man/man1/ucpp.1.gz
USES= gmake
WRKSRC= ${WRKDIR}/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1/
.include <bsd.port.mk>
|