diff options
author | zuntum <zuntum@pkgsrc.org> | 2001-07-09 22:17:12 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2001-07-09 22:17:12 +0000 |
commit | 53d4373842a683d87c284995a022bc11f754582c (patch) | |
tree | b9dd8e0b8dd11ae6d7a3750ccdbcfd3743cfb321 /x11/aterm | |
parent | c4b3694b3136e71f79c596c3478a3392ad42c04d (diff) | |
download | pkgsrc-53d4373842a683d87c284995a022bc11f754582c.tar.gz |
Converted to use buildlink.mk files
Diffstat (limited to 'x11/aterm')
-rw-r--r-- | x11/aterm/Makefile | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/x11/aterm/Makefile b/x11/aterm/Makefile index 1848e1b242b..56c01db8ccc 100644 --- a/x11/aterm/Makefile +++ b/x11/aterm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/02/17 17:06:15 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2001/07/09 22:17:12 zuntum Exp $ # DISTNAME= aterm-0.4.0 @@ -9,7 +9,7 @@ MAINTAINER= hubertf@netbsd.org HOMEPAGE= http://aterm.sourceforge.net/ COMMENT= aterm (Afterstep XVT) - a VT102 emulator for the X window system -USE_XPM= YES +USE_BUILDLINK_ONLY= YES GNU_CONFIGURE= YES CONFIGURE_ARGS+=--enable-background-image \ --enable-transparency \ @@ -20,15 +20,18 @@ CONFIGURE_ARGS+=--enable-background-image \ --enable-big5 \ --enable-greek \ --with-xpm \ - --with-xpm-includes=${X11BASE}/include \ - --with-xpm-library=${X11BASE}/lib \ + --with-xpm-includes=${BUILDLINK_DIR}/include \ + --with-xpm-library=${BUILDLINK_DIR}/lib \ --with-jpeg \ - --with-jpeg-includes=${LOCALBASE}/include \ - --with-jpeg-library=${LOCALBASE}/lib \ + --with-jpeg-includes=${BUILDLINK_DIR}/include \ + --with-jpeg-library=${BUILDLINK_DIR}/lib \ --with-png \ - --with-png-library=${LOCALBASE}/lib \ - --with-png-includes=${LOCALBASE}/include \ + --with-png-library=${BUILDLINK_DIR}/lib \ + --with-png-includes=${BUILDLINK_DIR}/include \ --enable-utmp \ --enable-wtmp +.include "../../graphics/jpeg/buildlink.mk" +.include "../../graphics/png/buildlink.mk" +.include "../../graphics/xpm/buildlink.mk" .include "../../mk/bsd.pkg.mk" |