diff options
author | seb <seb> | 2003-03-04 20:02:28 +0000 |
---|---|---|
committer | seb <seb> | 2003-03-04 20:02:28 +0000 |
commit | c22a68c65e8a73c4dc8cae7a5c6d8cb42857b006 (patch) | |
tree | 1f5065501f6ee496151b9a168f2b679b212b454e /graphics | |
parent | 5da95f2cdbb6af1a5ca6ca9eac69a7e10bc43b49 (diff) | |
download | pkgsrc-c22a68c65e8a73c4dc8cae7a5c6d8cb42857b006.tar.gz |
Fix build for all systems without pthread: the ast_common.h
included in the distribution tarball really should not be there.
Bump PKGREVISION
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/graphviz/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/graphics/graphviz/Makefile b/graphics/graphviz/Makefile index 4dd0b8bb2b6..5adb936af06 100644 --- a/graphics/graphviz/Makefile +++ b/graphics/graphviz/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.10 2003/03/03 11:34:57 seb Exp $ +# $NetBSD: Makefile,v 1.11 2003/03/04 20:02:28 seb Exp $ # DISTNAME= graphviz-1.9 +PKGREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://www.graphviz.org/pub/graphviz/ARCHIVE/ @@ -41,9 +42,11 @@ CONFIGURE_ARGS+= --with-expatlibdir=${BUILDLINK_PREFIX.expat}/lib CONFIGURE_ARGS+= --without-dynagraph # clean up a bit to help package maintainer produce patch files +# *And* remove this annoying ast_common.h! post-extract: ${_PKG_SILENT}${_PKG_DEBUG} \ - ${FIND} ${WRKSRC} -type f -name "*.orig" | ${XARGS} ${RM} + ${FIND} ${WRKSRC} -type f -name "*.orig" | ${XARGS} ${RM} -f + ${RM} -f ${WRKSRC}/ast_common.h post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/graphviz |