mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
3b3a233a6d
command.c:2:20: error: WMaker.h: No such file or directory command.c:289: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token command.c:290: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token command.c: In function 'cmd_getc': command.c:1913: error: 'app' undeclared (first use in this function) command.c:1913: error: (Each undeclared identifier is reported only once command.c:1913: error: for each function it appears in.) *** Error code 1 Reported by: pointyhat
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# New ports collection makefile for: wterm
|
|
# Date created: 25 February 1999
|
|
# Whom: Chris Piazza <cpiazza@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wterm
|
|
PORTVERSION= 6.2.9
|
|
PORTREVISION= 6
|
|
CATEGORIES= x11
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}.tar.gz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A color vt102 terminal emulator with transparency support
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libWINGs.a:${PORTSDIR}/x11-wm/windowmaker
|
|
|
|
BROKEN= does not compile
|
|
|
|
USE_XORG= xpm
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-transparency --enable-xpm-background \
|
|
--disable-delete-key --disable-backspace-key \
|
|
--enable-next-scrollbar --enable-utmp --enable-wtmp \
|
|
--enable-menubar --enable-graphics --with-term=xterm-color \
|
|
--with-xpm-includes=${LOCALBASE} --with-xpm-library=${LOCALBASE}
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/WINGs
|
|
|
|
MAN1= wterm.1
|
|
PLIST_FILES= bin/wterm
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} > 900007
|
|
BROKEN= fails to build with new utmpx
|
|
.endif
|
|
|
|
post-extract:
|
|
${RM} -f ${WRKSRC}/config.cache
|
|
${RM} -f ${WRKSRC}/src/*.o
|
|
|
|
post-install:
|
|
@${CHMOD} 4711 ${PREFIX}/bin/wterm
|
|
|
|
.include <bsd.port.post.mk>
|