diff options
author | jlam <jlam@pkgsrc.org> | 2001-07-14 16:19:08 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-07-14 16:19:08 +0000 |
commit | 4406fa2e10f494fa8f87c1291f132e505a5e1a6d (patch) | |
tree | 3029c587a1ac77ffc6b3ca165a5848a1181aeea8 | |
parent | a79eaeebdae708ddbb6586b90a00564a7f804f8b (diff) | |
download | pkgsrc-4406fa2e10f494fa8f87c1291f132e505a5e1a6d.tar.gz |
Move inclusion of buildlink.mk files to end of Makefile.
-rw-r--r-- | graphics/netpbm/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/graphics/netpbm/Makefile b/graphics/netpbm/Makefile index ba85612f854..d0459c53ddb 100644 --- a/graphics/netpbm/Makefile +++ b/graphics/netpbm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.57 2001/06/19 04:22:08 jlam Exp $ +# $NetBSD: Makefile,v 1.58 2001/07/14 16:19:08 jlam Exp $ DISTNAME= netpbm-9.7 CATEGORIES= graphics @@ -9,8 +9,9 @@ MAINTAINER= tron@netbsd.org HOMEPAGE= http://netpbm.sourceforge.net/ COMMENT= toolkit for conversion of images between different formats -USE_GMAKE= yes -USE_LIBTOOL= yes +USE_BUILDLINK_ONLY= yes +USE_GMAKE= yes +USE_LIBTOOL= yes INSTALL_TARGET= install-dev install MAKE_ENV+= CC="${CC}" INSTALL="${INSTALL}" @@ -22,11 +23,6 @@ MAKEFILE= GNUmakefile CFLAGS= .endif -USE_BUILDLINK_ONLY= yes - -.include "../../graphics/png/buildlink.mk" -.include "../../graphics/tiff/buildlink.mk" - .if (${OPSYS} == SunOS) MAKE_ENV+= NETWORKLD="-lsocket -lnsl" .else @@ -40,4 +36,6 @@ post-patch: post-install: ${INSTALL_DATA} ${WRKSRC}/shhopt/shhopt.h ${PREFIX}/include +.include "../../graphics/png/buildlink.mk" +.include "../../graphics/tiff/buildlink.mk" .include "../../mk/bsd.pkg.mk" |