blob: c08e798f5abc1fecfd07517a4b142a7a58284db1 (
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
144
145
146
147
148
149
150
151
|
# vim: ts=2 sw=2 et tw=120:
#
# Maintainer: Tilman BLUMENBACH <tilman+aur@ax86.net>
# Contributor: Adriaan Zonnenberg <amz@adriaan.xyz>
# Contributor: Florian Bruhin (The-Compiler) <archlinux.org@the-compiler.org>
# Contributor: Daniel Micay <danielmicay@gmail.com>
# Contributor: George Rawlinson <grawlinson@archlinux.org>
# Contributor: Levente Polyak <anthraxx[at]archlinux[dot]org>
# Contributor: Sébastien Luttringer
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: tobias <tobias@archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
pkgbase=rxvt-unicode-cvs
pkgname=('rxvt-unicode-cvs' 'rxvt-unicode-terminfo-cvs')
pkgver=9.31.r20240204164417
pkgrel=1
epoch=2
arch=('x86_64')
url='http://software.schmorp.de/pkg/rxvt-unicode.html'
license=('GPL')
makedepends=(
'libxft'
'libxt'
'libxext'
'libxmu'
'perl'
'startup-notification'
'libnsl'
'libptytty'
'cvs'
)
_cvsurl=':pserver:anonymous:@cvs.schmorp.de/schmorpforge'
_cvsmod='rxvt-unicode'
source=('urxvt.desktop'
'urxvtc.desktop'
'urxvt-tabbed.desktop')
prepare() {
if [[ ! -d ${_cvsmod?} ]]; then
cvs -z3 -d "${_cvsurl?}" checkout "${_cvsmod?}"
else
cd "${_cvsmod?}"
cvs -z3 update -d -C -P
fi
}
pkgver() (
set -o pipefail
cd "${_cvsmod?}"
# First, we get the actual release version number:
vers=$(awk '$1 == "#define" && $2 == "VERSION" { gsub(/"/, ""); print $3 }' src/version.h)
# Let's make sure it's not empty.
[[ ${vers?} ]]
# OK, print it!
printf '%s' "${vers?}"
# Now comes the CVS "revision". There are no per-module revisions in CVS, so just use the newest commit date.
#
# NB: "cvs log" prints UTC time.
#
# The format I came up with is (with inspiration from the Arch wiki):
# - ".r" followed by the UTC timestamp of the newest commit, in YYYYmmddHHMMSS format
# - Optionally: "." followed by the number of commits with the same timestamp. Omitted if there is only a single
# commit with the timestamp.
rev_cnt=$(cvs -Q log -r -s Exp -S | grep -o '^date: [^;]*' | LC_ALL=C sort | LC_ALL=C uniq -c | tail -n 1)
read -r cnt rev <<<"${rev_cnt?}"
printf '.r%s' "$(cut -d ' ' -f 2-3 <<<"${rev?}" | tr -d ' :-')"
if [[ ${cnt?} -gt 1 ]]; then
echo ".${cnt?}"
fi
)
build() {
cd "${_cvsmod?}"
# we disable smart-resize (FS#34807)
# do not specify --with-terminfo (FS#46424)
# do not specify --disable-frills (FS#77474)
# workaround ncurses --disable-root-access (FS#79143)
export TIC="/usr/bin/tic -o${srcdir}/terminfo"
./configure \
--prefix=/usr \
--enable-256-color \
--enable-combining \
--enable-fading \
--enable-font-styles \
--enable-iso14755 \
--enable-keepscrolling \
--enable-lastlog \
--enable-mousewheel \
--enable-next-scroll \
--enable-perl \
--enable-pointer-blank \
--enable-rxvt-scroll \
--enable-selectionscrolling \
--enable-slipwheeling \
--disable-smart-resize \
--enable-startup-notification \
--enable-transparency \
--enable-unicode3 \
--enable-utmp \
--enable-wtmp \
--enable-xft \
--enable-xim \
--enable-xterm-scroll \
--disable-pixbuf
make
}
package_rxvt-unicode-cvs() {
pkgdesc='Unicode enabled rxvt-clone terminal emulator (urxvt), CVS version'
conflicts=(rxvt-unicode)
provides=(rxvt-unicode)
depends=(
'rxvt-unicode-terminfo-cvs'
'libxft'
'perl'
'startup-notification'
'libnsl'
'libptytty'
'libxext'
'libxmu'
)
optdepends=('gtk2-perl: to use urxvt-tabbed')
# install freedesktop menu
for _f in urxvt urxvtc urxvt-tabbed; do
install -Dm 644 ${_f}.desktop "${pkgdir}/usr/share/applications/${_f}.desktop"
done
cd "${_cvsmod?}"
make DESTDIR="${pkgdir}" install
# install the tabbing wrapper ( requires gtk2-perl! )
sed -i 's/\"rxvt\"/"urxvt"/' doc/rxvt-tabbed
install -Dm 755 doc/rxvt-tabbed "${pkgdir}/usr/bin/urxvt-tabbed"
}
package_rxvt-unicode-terminfo-cvs() {
pkgdesc='Terminfo files for urxvt, CVS version'
conflicts=('rxvt-unicode<=9.18-6' 'rxvt-unicode-terminfo')
provides=('rxvt-unicode-terminfo')
install -dm 755 "${pkgdir}/usr/share/"
mv terminfo "${pkgdir}/usr/share/"
}
sha256sums=('5f9c435d559371216d1c5b49c6ec44bfdb786b12d925d543c286b0764dea0319'
'91536bb27c6504d6cb0d33775a0c4709a4b439670b900f0c278c25037f19ad66'
'ccd7c436e959bdc9ab4f15801a67c695b382565b31d8c352254362e67412afcb')
|