blob: 210822b7105ef314d743e97b72c88e334411f10c (
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
|
# New ports collection makefile for: ucc
# Date created: 15 August 2008
# Whom: Wen Heping <wenheping@gmail.com>
#
# $FreeBSD$
#
PORTNAME= ucc
PORTVERSION= 1.6.0
CATEGORIES= lang
MASTER_SITES= SF/${PORTNAME}/OldFiles
DISTNAME= ucc160
MAINTAINER= wenheping@gmail.com
COMMENT= C Compiler Which Implements the ANSI C89 Standard
USE_ZIP= yes
USE_DOS2UNIX= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_LDCONFIG= yes
post-patch: .SILENT
${REINPLACE_CMD} 's/make/$$(MAKE)/' \
${WRKSRC}/Makefile
${REINPLACE_CMD} -e '/^CC[[:blank:]]*=/d' \
-e '/^CFLAGS/ { s/=/+=/; s/-g//; }' \
-e '/:[[:blank:]]/s/\.c/.o/g' \
-e 's/$$^/$$>/g' \
${WRKSRC}/driver/Makefile \
${WRKSRC}/ucl/Makefile
.include <bsd.port.mk>
|