diff options
author | drochner <drochner@pkgsrc.org> | 2005-08-19 15:49:52 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2005-08-19 15:49:52 +0000 |
commit | 5f7902d92d33ab9a15dce86c133fea640f8dd159 (patch) | |
tree | fea03816ed309691630b113e6d3f366a63395f77 /graphics/pstoedit | |
parent | 36d44c0a34144e4dba734f4d6c5588609ecc689a (diff) | |
download | pkgsrc-5f7902d92d33ab9a15dce86c133fea640f8dd159.tar.gz |
fix the environment variable which tells the path to ghostscript.
this way, configure will continue, even with no ghostscript installed
at build time. I realli don't want a hard dependency on a specific version.
Should fix build error seen in bulk build.
Diffstat (limited to 'graphics/pstoedit')
-rw-r--r-- | graphics/pstoedit/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/pstoedit/Makefile b/graphics/pstoedit/Makefile index bb5cc840dad..8babaa11b5d 100644 --- a/graphics/pstoedit/Makefile +++ b/graphics/pstoedit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2005/08/12 19:29:29 drochner Exp $ +# $NetBSD: Makefile,v 1.30 2005/08/19 15:49:52 drochner Exp $ DISTNAME= pstoedit-3.41 CATEGORIES= converters graphics print @@ -16,7 +16,7 @@ USE_LIBTOOL= yes USE_LANGUAGES= c++ GNU_CONFIGURE= yes CONFIGURE_ENV+= CXXFLAGS="${CFLAGS} -Dunix" -CONFIGURE_ENV+= GS=${LOCALBASE}/bin/gs +CONFIGURE_ENV+= ac_cv_path_GS=${LOCALBASE}/bin/gs CONFIGURE_ARGS+=--datadir=${PREFIX}/share CONFIGURE_ARGS+=--libdir=${PREFIX}/lib/pstoedit # plugin dir -- unused for now BUILD_TARGET= @@ -37,5 +37,6 @@ post-install: .include "../../graphics/plotutils/buildlink3.mk" .include "../../mk/x11.buildlink3.mk" +# XXX avoid hard dependency #.include "../../mk/ghostscript.mk" .include "../../mk/bsd.pkg.mk" |