diff options
author | rillig <rillig@pkgsrc.org> | 2006-07-27 13:18:32 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-07-27 13:18:32 +0000 |
commit | 14f43b469a60b9f3d60221c69145d51c64fb60d6 (patch) | |
tree | c92ed250e27cf30f950ae4ea4cdecc595c5a9704 /cad/qcad | |
parent | 7e26996c6268ca46f42bb1f6d3e41c3187a39a7d (diff) | |
download | pkgsrc-14f43b469a60b9f3d60221c69145d51c64fb60d6.tar.gz |
Fixed pkglint warnings.
Diffstat (limited to 'cad/qcad')
-rw-r--r-- | cad/qcad/Makefile | 52 |
1 files changed, 19 insertions, 33 deletions
diff --git a/cad/qcad/Makefile b/cad/qcad/Makefile index 3b2aff735e9..4e9c8454752 100644 --- a/cad/qcad/Makefile +++ b/cad/qcad/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2006/07/10 22:59:26 jlam Exp $ +# $NetBSD: Makefile,v 1.41 2006/07/27 13:18:32 rillig Exp $ # DISTNAME= qcad-2.0.5.0-1-community.src @@ -12,16 +12,13 @@ PKGNAME= qcad-2.0.5.0 COMMENT= 2D CAD system GNU_CONFIGURE= yes -USE_TOOLS+= gmake -USE_LANGUAGES+= c c++ +USE_TOOLS+= gmake +USE_LANGUAGES= c c++ -CONFIGURE_DIRS= ${WRKSRC}/fparser ${WRKSRC}/dxflib +CONFIGURE_DIRS= fparser dxflib BUILD_DIRS= ${CONFIGURE_DIRS} -.for _sfx_ in lib cmd actions guiqt - BUILD_DIRS+= ${WRKSRC}/qcad${_sfx_} -.endfor -BUILD_DIRS+= ${WRKSRC}/qcad +BUILD_DIRS+= qcadlib qcadcmd qcadactions qcadguiqt qcad MAKE_ENV+= QMAKESPEC=${QTDIR}/mkspecs/default PREPEND_PATH+= ${QTDIR}/bin @@ -31,27 +28,14 @@ PREPEND_PATH+= ${QTDIR}/bin # BUILDLINK_PREFIX.qt3-libs, which buildlink3 sets. Nothing is easy. :) The # patches have replaced old hardcoded paths with fixed cookies @PREFIX@ and # @QTDIR@. The SUBST framework will replace the cookies with the proper -# values. Quoting invariants: the SUBST framework adds no quoting to the -# SUBST_SED value (not documented but can be gleaned from mk/subst.mk); quoting -# is provided here as follows: the escaped-newline real-newline escaped-newline -# sequence separating individual sed commands is enclosed in ""s so it is not a -# word separator for the shell; sed sees a single trailing blank on the first -# command and a single leading blank on the second, neither of which matters. -# The constant portions of the sed commands are (by inspection) free of shell -# metacharacters; the variable portions ${PREFIX} and ${QTDIR} are subject to -# two layers of quoting: S/=/\=/g ensures that any = in their values will be -# \-escaped (because = has been chosen for the delimiter in the sed s command), -# and then Q ensures that all of that is quoted as necessary to survive the -# shell. - -SUBST_CLASSES+= paths -SUBST_STAGE.paths= post-wrapper +# values. +SUBST_CLASSES+= paths +SUBST_STAGE.paths= pre-configure SUBST_MESSAGE.paths= Attending to hard-coded paths. SUBST_FILES.paths+= qcadlib/src/engine/rs_system.cpp SUBST_FILES.paths+= qcad/src/qc_applicationwindow.cpp -SUBST_SED.paths= s=@PREFIX@=${PREFIX:S/=/\=/g:Q}=g"\ - ${.newline}\ - "s=@QTDIR@=${QTDIR:S/=/\=/g:Q}=g +SUBST_SED.paths= -e 's,@PREFIX@,${PREFIX},g' +SUBST_SED.paths+= -e 's,@QTDIR@,${QTDIR},g' # Just setting BUILD_DIRS would be adequate if qcad could be built with # "prepare all" in each module, one by one. But qcad needs all modules to @@ -59,21 +43,23 @@ SUBST_SED.paths= s=@PREFIX@=${PREFIX:S/=/\=/g:Q}=g"\ # loop duplicated from do-build. The unmodified do-build then takes care # of the "all". I didn't see an easier way. pre-build: - ${_PKG_SILENT}${_PKG_DEBUG}${_ULIMIT_CMD}for DIR in ${BUILD_DIRS} ; do \ - ( cd $${DIR} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} \ - -f ${MAKEFILE} prepare ) || exit 1 ; done + ${_PKG_SILENT}${_PKG_DEBUG}set -e; ${_ULIMIT_CMD} \ + for d in ${BUILD_DIRS}; do \ + cd ${WRKSRC}; cd "$$d"; \ + env ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} \ + -f ${MAKEFILE} prepare; \ + done do-install: ${INSTALL_PROGRAM} ${WRKSRC}/qcad/qcad ${PREFIX}/bin ${INSTALL_DATA_DIR} ${PREFIX}/share/qcad cd ${WRKSRC}/qcad && umask 022 && \ - ${PAX} -rwpm data fonts patterns qm ${PREFIX}/share/qcad + pax -rwpm data fonts patterns qm ${PREFIX}/share/qcad .include "../../x11/qt3-libs/buildlink3.mk" -BUILDLINK_DEPENDS.qt3-libs+= qt3-libs>=3.3.4 +BUILDLINK_API_DEPENDS.qt3-libs+= qt3-libs>=3.3.4 .include "../../x11/qt3-tools/buildlink3.mk" -BUILDLINK_DEPENDS.qt3-tools+= qt3-tools>=3.3.4 +BUILDLINK_API_DEPENDS.qt3-tools+= qt3-tools>=3.3.4 BUILDLINK_DEPMETHOD.qt3-tools= full # uses assistant for help .include "../../mk/x11.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |