diff options
-rw-r--r-- | graphics/aalib/DESCR | 13 | ||||
-rw-r--r-- | graphics/aalib/MESSAGE | 7 | ||||
-rw-r--r-- | graphics/aalib/Makefile | 8 |
3 files changed, 21 insertions, 7 deletions
diff --git a/graphics/aalib/DESCR b/graphics/aalib/DESCR index e47db4e8f4d..8281a07bded 100644 --- a/graphics/aalib/DESCR +++ b/graphics/aalib/DESCR @@ -1,5 +1,8 @@ -AAlib is a portable ASCII Art library. From the AA project documentation: -"There are many problems of various kinds with video cards, low frequency -monitors, crashing graphical apps... AA-lib IS the solution. It works on a -terminal of any kind, it is fast and portable, it gives to you standard API. -It gives to your old hardware more power! " +AAlib is a portable ASCII Art library. From the AA project +documentation: "There are many problems of various kinds with +video cards, low frequency monitors, crashing graphical apps... +AA-lib IS the solution. It works on a terminal of any kind, it is +fast and portable, it gives to you standard API. It gives to your +old hardware more power! " + +This package is built without X11 support. diff --git a/graphics/aalib/MESSAGE b/graphics/aalib/MESSAGE new file mode 100644 index 00000000000..63986c774c3 --- /dev/null +++ b/graphics/aalib/MESSAGE @@ -0,0 +1,7 @@ +====================================================================== +$NetBSD: MESSAGE,v 1.1 2002/01/30 11:56:08 agc Exp $ + +This package is built without X11 support. If you want X11 support +included, use the graphics/aalib-x11 package instead. + +====================================================================== diff --git a/graphics/aalib/Makefile b/graphics/aalib/Makefile index e12dd816668..ea42a4e8c3a 100644 --- a/graphics/aalib/Makefile +++ b/graphics/aalib/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.3 2002/01/08 20:56:20 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2002/01/30 11:56:08 agc Exp $ # DISTNAME= aalib-1.4rc4 PKGNAME= aalib-1.4.0.4 +PKGREVISION= 1 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=aa-project/} @@ -10,10 +11,13 @@ MAINTAINER= manu@netbsd.org HOMEPAGE= http://aa-project.sourceforge.net/aalib/ COMMENT= ASCII Art library +CONFLICTS+= aalib-x11-[0-9]* + WRKSRC= ${WRKDIR}/aalib-1.4.0 GNU_CONFIGURE= YES USE_LIBTOOL= yes LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig -USE_X11= yes + +CONFIGURE_ARGS+= --with-x11-driver=no .include "../../mk/bsd.pkg.mk" |