diff options
author | danfe <danfe@FreeBSD.org> | 2011-04-09 00:41:01 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2011-04-09 00:41:01 +0800 |
commit | 857a07f97d967a627c1beed8fe89aa4df125d56d (patch) | |
tree | fd5c283167cb98ed495a15f1c33866b21b2ba349 /lang/harbour | |
parent | 9a518d53f1503070799ace8d2ede86e874dc7774 (diff) | |
download | freebsd-ports-gnome-857a07f97d967a627c1beed8fe89aa4df125d56d.tar.gz freebsd-ports-gnome-857a07f97d967a627c1beed8fe89aa4df125d56d.tar.zst freebsd-ports-gnome-857a07f97d967a627c1beed8fe89aa4df125d56d.zip |
Style fixes, no functional changes.
Diffstat (limited to 'lang/harbour')
-rw-r--r-- | lang/harbour/Makefile | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/lang/harbour/Makefile b/lang/harbour/Makefile index fbc6d624ea2f..9027c2f660b8 100644 --- a/lang/harbour/Makefile +++ b/lang/harbour/Makefile @@ -1,6 +1,6 @@ -# New ports collection makefile for: harbour -# Date created: 9 May 2003 -# Whom: David G. Holm <harbour@netfang.net> +# New ports collection makefile for: Harbour +# Date created: 9 May 2003 +# Whom: David G. Holm <harbour@netfang.net> # # $FreeBSD$ # @@ -16,51 +16,51 @@ COMMENT= An open source Clipper-compatible compiler LIB_DEPENDS= slang.2:${PORTSDIR}/devel/libslang2 BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash -RUN_DEPENDS= bash:${PORTSDIR}/shells/bash +RUN_DEPENDS:= ${BUILD_DEPENDS} -MAKE_JOBS_SAFE= yes +MAKE_JOBS_SAFE= yes USE_BISON= build USE_GMAKE= yes HB_WITHOUT_X11= yes -HB_ARCHITECTURE= bsd -HB_COMPILER= gcc -HB_GT_LIB= gtsln +HB_ARCH= bsd +HB_COMPILER= gcc +HB_GT_LIB= gtsln HB_BIN_INSTALL= ${LOCALBASE}/bin HB_DOC_INSTALL= ${DOCSDIR} HB_LIB_INSTALL= ${LOCALBASE}/lib -HB_INC_INSTALL= ${LOCALBASE}/include +HB_INC_INSTALL= ${LOCALBASE}/include -MAKE_ENV+= HB_ARCHITECTURE=${HB_ARCHITECTURE} \ - HB_COMPILER=${HB_COMPILER} \ - HB_GT_LIB=${HB_GT_LIB} \ - HB_BIN_INSTALL=${HB_BIN_INSTALL} \ - HB_LIB_INSTALL=${HB_LIB_INSTALL} \ - HB_INC_INSTALL=${HB_INC_INSTALL} \ - HB_WITHOUT_X11=${HB_WITHOUT_X11} +MAKE_ENV= HB_ARCHITECTURE=${HB_ARCH} \ + HB_COMPILER=${HB_COMPILER} \ + HB_GT_LIB=${HB_GT_LIB} \ + HB_BIN_INSTALL=${HB_BIN_INSTALL} \ + HB_LIB_INSTALL=${HB_LIB_INSTALL} \ + HB_INC_INSTALL=${HB_INC_INSTALL} \ + HB_WITHOUT_X11=${HB_WITHOUT_X11} .if !defined(NOPORTDOCS) -MAKE_ENV+= HB_DOC_INSTALL=${HB_DOC_INSTALL} +MAKE_ENV+= HB_DOC_INSTALL=${HB_DOC_INSTALL} .endif -PORTDOCS= *.txt genhtm.bat genhtm.lnk genhtm.rsp +PORTDOCS= *.txt genhtm.bat genhtm.lnk genhtm.rsp do-build: - (cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} ${SH} ./make_gnu.sh) + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${SH} make_gnu.sh pre-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR}/ + @${MKDIR} ${DOCSDIR} .endif .include <bsd.port.pre.mk> .if ${ARCH} == "amd64" -BROKEN= Leaves files behind on deinstall +BROKEN= leaves files behind on deinstall .elif ${ARCH} == "sparc64" -BROKEN= Does not compile on sparc64: assertion failed +BROKEN= does not compile on sparc64: assertion failed .elif ${OSVERSION} > 900007 BROKEN= fails to build with new utmpx .endif |