diff options
author | jlam <jlam@pkgsrc.org> | 2005-11-28 06:41:20 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-11-28 06:41:20 +0000 |
commit | 05ab21844987bee0d64a5ec6d1650396a1de0f39 (patch) | |
tree | 97d106419153be05872243d53d0c35426e7d6dc6 /cad | |
parent | f356535f712b7d01932488b006ed64c163b73005 (diff) | |
download | pkgsrc-05ab21844987bee0d64a5ec6d1650396a1de0f39.tar.gz |
Change all instances of including mk/ghostscript.mk into asking for
the appropriate tool via USE_TOOLS (usually "gs:run"), and remove
ghostscript.mk. This change removes a rather out-dated file from
pkgsrc and switches packages to use the more compact implementation
of the Ghostcript-handling inside the tools framework.
Diffstat (limited to 'cad')
-rw-r--r-- | cad/xcircuit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cad/xcircuit/Makefile b/cad/xcircuit/Makefile index a321f6692c2..9f5e5f664be 100644 --- a/cad/xcircuit/Makefile +++ b/cad/xcircuit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2005/04/11 21:45:03 tv Exp $ +# $NetBSD: Makefile,v 1.25 2005/11/28 06:41:20 jlam Exp $ DISTNAME= xcircuit-3.3.0 CATEGORIES= cad graphics @@ -10,6 +10,7 @@ HOMEPAGE= http://xcircuit.ece.jhu.edu/ COMMENT= Drawing program for X11 (especially for circuits) WRKSRC= ${WRKDIR}/${DISTNAME} +USE_TOOLS+= gs:run GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-tcl CONFIGURE_ARGS+=--with-tclincls=${BUILDLINK_PREFIX.tcl}/include @@ -32,5 +33,4 @@ post-install: .include "../../graphics/xpm/buildlink3.mk" .include "../../lang/tcl/buildlink3.mk" .include "../../x11/tk/buildlink3.mk" -.include "../../mk/ghostscript.mk" .include "../../mk/bsd.pkg.mk" |