diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 2004-05-03 12:07:19 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 2004-05-03 12:07:19 +0000 |
commit | 4b98c484143d663d7f6125ee48308aa5a95046df (patch) | |
tree | 306d00b404cdfbeb6429c5e04a72df8e387d6f9b /devel/cweb | |
parent | 94e179924039408a525d2f1c4f277425346de2ab (diff) |
Respect $CC.
PR: 65018
Submitted by: michael johnson <ahze@ahze.net>
Notes
Notes:
svn path=/head/; revision=108263
Diffstat (limited to 'devel/cweb')
-rw-r--r-- | devel/cweb/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/devel/cweb/Makefile b/devel/cweb/Makefile index 2ce8e96126d3..1de87a523af7 100644 --- a/devel/cweb/Makefile +++ b/devel/cweb/Makefile @@ -11,12 +11,16 @@ CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_TEX_CTAN} MASTER_SITE_SUBDIR= web/c_cpp/cweb -MAINTAINER= tg@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Literate programming tools for the C language +USE_REINPLACE= yes NO_WRKSUBDIR= yes MAN1= cweb.1 +post-patch: + @${REINPLACE_CMD} -e 's|cc|${CC}|' ${WRKSRC}/${MAKEFILE} + pre-install: @${MKDIR} ${PREFIX}/share/cweb @${MKDIR} ${PREFIX}/share/texmf/tex/generic/misc |