mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
7b9028d0d5
implementing most of the functions available in System V R4 curses. It supports most compilers for these platforms. The X11 port allows existing text-mode curses programs to be re-compiled and linked with PDCurses to produce native X11 applications. WWW: http://pdcurses.sourceforge.net/
46 lines
1003 B
Makefile
46 lines
1003 B
Makefile
# New ports collection makefile for: pdcurses
|
|
# Date created: 1 Jul 2006
|
|
# Whom: alepulver
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pdcurses
|
|
PORTVERSION= 2.8
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= PDCurses-${PORTVERSION}
|
|
|
|
MAINTAINER= alepulver@FreeBSD.org
|
|
COMMENT= Curses library implementation for Win32, DOS, OS/2 and X11
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_XLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS= DEBUG "Enable debugging support" off \
|
|
LATIN1 "Enable support for Latin1 keys" off \
|
|
NEXTAW "Link with NeXtaw" off \
|
|
XAW3D "Link with Xaw3d" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.for opt in DEBUG LATIN1
|
|
. if defined(WITH_${opt})
|
|
CONFIGURE_ARGS+=--enable-${opt:L}
|
|
. endif
|
|
.endfor
|
|
|
|
.if defined(WITH_NEXTAW)
|
|
LIB_DEPENDS+= neXtaw.${XAWVER}:${PORTSDIR}/x11-toolkits/neXtaw
|
|
CONFIGURE_ARGS+=--with-nextaw
|
|
.endif
|
|
|
|
.if defined(WITH_XAW3D)
|
|
LIB_DEPENDS+= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d
|
|
CONFIGURE_ARGS+=--with-xaw3d
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|