diff options
author | drochner <drochner@pkgsrc.org> | 2011-03-02 10:14:31 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2011-03-02 10:14:31 +0000 |
commit | bb64ab99919ec3f764eb48bf53f03fe4cc46cf88 (patch) | |
tree | 24076d0e65845e60c06f5e3a586cc43b377234d8 /www/aws/Makefile | |
parent | 61266585025ae5c9f2f97f4e972edce3b72cf5ac (diff) | |
download | pkgsrc-bb64ab99919ec3f764eb48bf53f03fe4cc46cf88.tar.gz |
-disable the "pre-configure" step which turned out to be unnecessary
and could cause problems when building as non-root, from John Marino
-put the build of demo programs (which was optionally, not switched
on per default) into its own pkg, to avoid builds in the "install"
phase and conditional PLIST entries
-misc cleanup, fix a DESTDIR glitch
Diffstat (limited to 'www/aws/Makefile')
-rw-r--r-- | www/aws/Makefile | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/www/aws/Makefile b/www/aws/Makefile index 0d4034873cb..511af3826d7 100644 --- a/www/aws/Makefile +++ b/www/aws/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2011/02/11 16:48:52 drochner Exp $ +# $NetBSD: Makefile,v 1.2 2011/03/02 10:14:31 drochner Exp $ # DISTNAME= aws-${AWS_VERSION} @@ -26,9 +26,6 @@ post-wrapper: # avoid potential linkage problems ${RM} ${WRKDIR}/.wrapper/bin/* -pre-configure: - gprconfig --batch --config=Ada --config=C --config="Project File" - do-configure: cd ${WRKSRC} && ${SETENV} CC=gnatgcc \ ${GMAKE} setup ${CONFIGURE_ARGS} @@ -42,24 +39,6 @@ do-test: install do-install: cd ${WRKSRC} && ${SETENV} ${INSTALL_ENV} ${GMAKE} install ${TOUCH} ${DESTDIR}${PREFIX}/share/examples/aws/bin/IGNORE.ME -.if !empty (BUILD_DEMOS) - ${MAKE} demos - ${MAKE} demos-install -.endif - -demos: -.for dd in ${DEMO_DIRS} - cd ${WRKSRC}/demos/${dd} && ${GMAKE} -.endfor - -demos-install: -.if !empty (BUILD_DEMOS) - ${MKDIR} ${DESTDIR}${PREFIX}/share/examples/aws/demos -.for dd in ${DEMO_DIRS} - ${FIND} ${WRKSRC}/demos/${dd} -type f -perm -0001 \ - -exec ${INSTALL} {} ${DESTDIR}${PREFIX}/share/examples/aws/demos/ \; -.endfor -.endif .include "../../devel/zlib/buildlink3.mk" .include "../../devel/gnatpython/buildlink3.mk" |