mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
31 lines
646 B
Makefile
31 lines
646 B
Makefile
# Created by: Andreas Kohn <andreas@syndrom23.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pas2dox
|
|
DISTVERSION= 0.50rc1
|
|
CATEGORIES= devel converters
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-0.50rc1
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Preprocessor to use doxygen with Pascal sources
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/pas2dox
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
${REINPLACE_CMD} 's,^CC=.*$$,CC=$${CXX} $${CPPFLAGS} $${CXXFLAGS},' ${WRKSRC}/Makefile
|
|
|
|
pre-build:
|
|
${MAKE} -C ${WRKSRC} clean
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pas2dox ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|