aboutsummaryrefslogtreecommitdiffstats
path: root/x11/rxvt/Makefile
blob: 21bc27afb37e22dc195cf8372bc028632948b043 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# 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>