1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/x11/rxvt/Makefile
Mario Sergio Fujikawa Ferreira c4e85efd6f typo clean up police: \s -> \t
2001-02-14 04:12:50 +00:00

69 lines
1.6 KiB
Makefile

# New ports collection Makefile for: rxvt
# Date created: 5th December 1994
# Whom: gpalmer@FreeBSD.org
#
# $FreeBSD$
#
# If possible, please consider updating the simple ports/x11-clocks/rclock
# (and maybe ports/chinese/rxvt) when you upgrade rxvt. These ports all use
# the same distfile.
PORTNAME= rxvt
PORTVERSION= 2.6.3
CATEGORIES= x11
MASTER_SITES= ftp://ftp.rxvt.org/pub/rxvt/ \
ftp://mason.primenet.com.au/pub/rxvt/ \
ftp://ftp.ics.es.osaka-u.ac.jp/pub/mirrors/rxvt/ \
ftp://ftp.fu-berlin.de/unix/X11/terms/rxvt/
MAINTAINER= lioux@FreeBSD.org
USE_X_PREFIX= yes
USE_XPM= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-utmp --enable-wtmp \
--with-xpm --enable-xpm-background --enable-transparency
USE_BZIP2= yes
MAN1= rxvt.1
# enable big5 support
.if defined(WITH_BIG5)
CONFIGURE_ARGS+= --enable-big5
.endif # WITH_BIG5
#
# enable gb support
.if defined(WITH_GB)
CONFIGURE_ARGS+= --enable-gb
.endif # WITH_GB
#
# enable greek keyboard support
.if defined(WITH_GREEK_KEYBOARD)
CONFIGURE_ARGS+= --enable-greek
.endif # WITH_GREEK_KEYBOARD
#
# enable kanji support
.if defined(WITH_KANJI)
CONFIGURE_ARGS+= --enable-kanji
.endif # WITH_KANJI
#
# enable menubar
.if defined(WITH_MENUBAR)
CONFIGURE_ARGS+= --enable-menubar
.endif # WITH_MENUBAR
#
# XIM (X Input Method) protocol support
.if defined(WITH_XIM)
CONFIGURE_ARGS+= --enable-xim
.endif # WITH_XIM
#
# enable Xterm style scrollbar
.if defined(WITH_XTERM_SCROLLBAR)
CONFIGURE_ARGS+= --enable-xterm-scroll
.endif # WITH_XTERM_SCROLLBAR
#
post-install:
@${CHMOD} 4711 ${PREFIX}/bin/rxvt
.include <bsd.port.mk>