diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
commit | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch) | |
tree | e1a018208ceade04ca56a70c5184978cac51853e /graphics/aalib | |
parent | d12f14432cc492205cefb505a3c1320dd0f4e31a (diff) | |
download | ports-877b8a533b44bb6324ebbaf65cd80a60d1572003.tar.gz ports-877b8a533b44bb6324ebbaf65cd80a60d1572003.zip |
Notes
Diffstat (limited to 'graphics/aalib')
-rw-r--r-- | graphics/aalib/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/graphics/aalib/Makefile b/graphics/aalib/Makefile index 1b82b377b7ca..41c6bd9a38c8 100644 --- a/graphics/aalib/Makefile +++ b/graphics/aalib/Makefile @@ -15,14 +15,14 @@ MAINTAINER= ports@FreeBSD.org USE_AUTOCONF= yes USE_LIBTOOL= yes +.include <bsd.port.pre.mk> + # # Support for X11 is compiled in by default only if X11 is installed. # -.if !exists(${X11BASE}) -NO_X11?= yes -.endif -.if !defined(NO_X11) -USE_XLIB=YES +.if defined(WITH_X11) || (exists(${X11BASE}/lib/libX11.a) \ + && !defined(WITHOUT_X11)) +USE_XLIB= yes CONFIGURE_ARGS= --with-x --x-includes="${X11BASE}/include" \ --x-libraries="${X11BASE}/lib" .else @@ -32,7 +32,4 @@ CONFIGURE_ARGS= --with-x11-driver=no post-patch: @${PERL} -pi -e "s:/usr/local:${LOCALBASE}:g;" ${WRKSRC}/configure.in -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib - -.include <bsd.port.mk> +.include <bsd.port.post.mk> |