diff options
author | jlam <jlam> | 2001-06-29 04:54:49 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-06-29 04:54:49 +0000 |
commit | 248e653126f88e8826180e58af0f27de58c1fc01 (patch) | |
tree | 0f7f2aeb7ecca34d147342f726930d3cafaae39e /editors/abiword/Makefile | |
parent | aaf80c5bfdf5ecb0c919823c1b2442451e1dec77 (diff) | |
download | pkgsrc-248e653126f88e8826180e58af0f27de58c1fc01.tar.gz |
USE_CONFIG_WRAPPER is automatically set if USE_BUILDLINK_ONLY is defined,
so remove it from package Makefiles. Also move the inclusion of the
buildlink.mk files to the end of the Makefile to just before bsd.pkg.mk
to ensure that any Makefile settings occur before the buildlink.mk files.
Diffstat (limited to 'editors/abiword/Makefile')
-rw-r--r-- | editors/abiword/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/editors/abiword/Makefile b/editors/abiword/Makefile index 6d9dea019ef..dc504a3d2f1 100644 --- a/editors/abiword/Makefile +++ b/editors/abiword/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2001/06/11 06:34:30 jlam Exp $ +# $NetBSD: Makefile,v 1.31 2001/06/29 04:54:52 jlam Exp $ # # According to AbiSource's explanation of their trademark rights, # compilations/distributions of AbiWord not provided by AbiSource must @@ -24,16 +24,14 @@ COMMENT= Open Source cross-platform word processor BUILD_DEPENDS+= unzip-*:../../archivers/unzip DEPENDS+= ispell-base-*:../../textproc/ispell-base -DEPENDS+= gtk+-1.2.*:../../x11/gtk + +USE_BUILDLINK_ONLY= # defined USE_X11= # defined USE_XPM= # defined USE_GMAKE= # defined ALL_TARGET= compile canonical -.include "../../converters/libiconv/buildlink.mk" -.include "../../graphics/png/buildlink.mk" - OS_CFLAGS= ${CFLAGS} .if exists(/usr/include/inttypes.h) @@ -62,4 +60,7 @@ post-install: ${LN} -sf ../../../lib/american.hash \ ${PREFIX}/share/AbiSuite/dictionary/american.hash +.include "../../converters/libiconv/buildlink.mk" +.include "../../graphics/png/buildlink.mk" +.include "../../x11/gtk/buildlink.mk" .include "../../mk/bsd.pkg.mk" |