blob: e9830c055a55c482fe7d06457a7aba6cc540a194 (
plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
# 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
# when you upgrade rxvt. These ports all use the same distfile.
PORTNAME= rxvt
PORTVERSION= 2.7.10
PORTREVISION= 5
CATEGORIES+= x11
MASTER_SITES= SF
PKGNAMESUFFIX= -devel
MAINTAINER= akosela@andykosela.com
COMMENT= A low memory usage xterm replacement that supports color
USE_AUTOTOOLS= libtool:22
USE_PERL5_BUILD=yes
USE_XORG= xpm
GNU_CONFIGURE= yes
OPTIONS= 256_COLOR "Build with 256-color support" off \
BIG5 "Build with BIG5 support" off \
EUCJ "Build with EUC Japanese support" off \
GB "Build with GB support" off \
GREEK "Build with greek keyboard support" off \
KR "Build with EUC Korean support" off \
LINESPACE "Build with linespace support" off \
MENUBAR "Build with menubar support" off \
NEXT "Build with NeXT scrollbar" off \
RXVT "Build with rxvt scrollbar" off \
SJIS "Build with Shift JIS support" off \
SMART "Build with smart resize support" off \
TRANSPARENCY "Build with transparency support" off \
XGETDEFAULT "Build with XGetDefault() support" off \
XIM "Build with XIM support" off \
XTERM "Build with Xterm scrollbar" off
CONFIGURE_ARGS= --enable-utmp --enable-wtmp --enable-languages \
--with-xpm --enable-xpm-background --enable-shared \
--enable-mousewheel --disable-languages
USE_LDCONFIG= yes
MAN1= rxvt.1
.include <bsd.port.pre.mk>
# enable 256 color
.if defined(WITH_256_COLOR)
CONFIGURE_ARGS+= --enable-256-color
.endif
# enable big5 support
.if defined(WITH_BIG5)
CONFIGURE_ARGS+= --with-encoding=big5 --enable-languages
.endif
# enable euc japanese support
.if defined(WITH_EUCJ)
CONFIGURE_ARGS+= --with-encoding=eucj --enable-languages
.endif
# enable gb support
.if defined(WITH_GB)
CONFIGURE_ARGS+= --with-encoding=gb --enable-languages
.endif
# enable greek keyboard support
.if defined(WITH_GREEK)
CONFIGURE_ARGS+= --enable-greek
.endif
# enable euc korean support
.if defined(WITH_KR)
CONFIGURE_ARGS+= --with-encoding=kr --enable-languages
.endif
# enable line-spacing
.if defined(WITH_LINESPACE)
CONFIGURE_ARGS+= --enable-linespace
.endif
# enable menubar
.if defined(WITH_MENUBAR)
CONFIGURE_ARGS+= --enable-menubar
.endif
# enable NeXT style scrollbar
.if defined(WITH_NEXT)
CONFIGURE_ARGS+= --enable-next-scroll
.endif
# enable rxvt style scrollbar
.if defined(WITH_RXVT)
CONFIGURE_ARGS+= --enable-rxvt-scroll
.endif
# enable shift jis support
.if defined(WITH_SJIS)
CONFIGURE_ARGS+= --with-encoding=sjis --enable-languages
.endif
# enable smart resize
.if defined(WITH_SMART)
CONFIGURE_ARGS+= --enable-smart-resize
.endif
# enable transparency support
.if defined(WITH_TRANSPARENCY)
CONFIGURE_ARGS+= --enable-transparency
.endif
# make resources checking via XGetDefault()
.if defined(WITH_XGETDEFAULT)
CONFIGURE_ARGS+= --enable-xgetdefault
.endif
# XIM (X Input Method) protocol support
.if defined(WITH_XIM)
CONFIGURE_ARGS+= --enable-xim
.endif
# enable Xterm style scrollbar
.if defined(WITH_XTERM)
CONFIGURE_ARGS+= --enable-xterm-scroll
.endif
CONFIGURE_ENV+= LIBS="-lutil"
post-patch:
@${PERL} -pi -e 's|(PTYCHAR2\s+"[^"]+)"|\1ghijklmnopqrstuv"|' \
${WRKSRC}/src/ptytty.c
@${REINPLACE_CMD} -e 's|--mode=compile|& --tag=CC|' \
-e 's|--mode=link|& --tag=CC|' \
${WRKSRC}/src/Makefile.in
post-install:
@${CHMOD} 4711 ${PREFIX}/bin/rxvt
.include <bsd.port.post.mk>
|