openbsd-ports/x11/aterm/Makefile
uwe d3dbbe9d36 Don't forget to initialize the VSTATUS control character for the new pty
when stdin is not a terminal; Ok sturm@ for a similar diff
2006-03-22 20:17:40 +00:00

60 lines
1.4 KiB
Makefile

# $OpenBSD: Makefile,v 1.38 2006/03/22 20:17:40 uwe Exp $
DISTNAME= aterm-0.4.2
PKGNAME= ${DISTNAME}p0
CATEGORIES= x11
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= ICE SM X11 c util
COMMENT= "color vt102 terminal emulator with transparency support"
HOMEPAGE= http://aterm.sourceforge.net/
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=aterm/}
USE_X11= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --enable-xgetdefault --enable-ttygid --enable-utmp
CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" LIBS="-lutil"
FLAVORS= big5 lite
FLAVOR?=
PATCH_LIST+= patch-src_command_c
.if ${FLAVOR:L:Mbig5}
RUN_DEPENDS= ${LOCALBASE}/lib/X11/fonts/chinese/taipei16.pcf.gz::chinese/taipeifonts
PATCH_LIST+= patch-src_Makefile_in
CONFIGURE_ARGS+= --enable-big5
post-patch:
@cd ${FILESDIR}; cp -f {cli_xcin.c,protocol.h,state.h} \
${WRKSRC}/src
.endif
.if ${FLAVOR:L:Mlite}
CONFIGURE_ARGS+= --without-xpm --disable-transparency \
--disable-background-image --disable-fading \
--without-jpeg --without-png
.else
LIB_DEPENDS= jpeg.62::graphics/jpeg \
png.2::graphics/png
CONFIGURE_ARGS+= --with-xpm --enable-transparency \
--enable-background-image --enable-fading \
--with-jpeg --with-png
WANTLIB+= Xpm
.endif
NO_REGRESS= Yes
post-install:
chgrp utmp ${PREFIX}/bin/aterm
chmod 2755 ${PREFIX}/bin/aterm
.include <bsd.port.mk>