blob: e2d2ea91b6f5d7e76480b258053a6a25a1ad48df (
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ruby
pkgver=2.0.0_p0
_pkgver=${pkgver/_/-}
pkgrel=0
_abi=2.0.0
pkgdesc="An object-oriented language for quick and easy programming"
url="http://www.ruby-lang.org/en/"
arch="all"
license="Ruby"
depends=""
makedepends="zlib-dev openssl-dev libiconv-dev gdbm-dev db-dev readline-dev
libffi-dev coreutils yaml-dev autoconf"
subpackages="$pkgname-doc $pkgname-dev $pkgname-irb $pkgname-gems \
$pkgname-rdoc $pkgname-rake $pkgname-bigdecimal
$pkgname-io-console:io_console $pkgname-minitest
$pkgname-libs
"
patches="
ruby-1.9.3-always-use-i386.patch
"
source="ftp://ftp.ruby-lang.org/pub/ruby/${pkgver%.*}/${pkgname}-${_pkgver}.tar.bz2
$patches"
options="!fhs"
#
# maybe its a good idea to split dep libs to seperate pkg's.
#
_builddir="$srcdir/$pkgname-${_pkgver}"
_gemdir="/usr/lib/ruby/gems/$_abi"
_rubydir="/usr/lib/ruby/$_abi"
[ "$ALPINE_LIBC" != "eglibc" ] && _libc="-uclibc"
_arch=$CARCH
case $CARCH in
x86) _arch=i386;;
esac
prepare() {
cd "$_builddir"
for i in $patches; do
msg $i
patch -p1 -i "$srcdir"/$i || return 1
done
autoconf
}
build() {
cd "$_builddir"
# -fomit-frame-pointer makes ruby segfault, see gentoo bug #150413
# In many places aliasing rules are broken; play it safe
# as it's risky with newer compilers to leave it as it is.
export CFLAGS="$CFLAGS -fno-omit-frame-pointer -fno-strict-aliasing"
# turn off distcc/ccache
# http://bugs.alpinelinux.org/issues/show/1
# export CC=gcc
# ruby saves path to install. we want use $PATH
export INSTALL=install
# the configure script does not detect isnan/isinf as macros
ac_cv_func_isnan=yes \
ac_cv_func_isinf=yes \
./configure \
--build=${CHOST:-i486-alpine-linux-uclibc} \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-sitedir='/usr/local/lib/site_ruby' \
--with-search-path="/usr/lib/site_ruby/\$(ruby_ver)/$_arch-linux" \
--enable-pthread \
--disable-rpath \
--enable-shared \
--with-mantype=man \
|| return 1
make || return 1
make test || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
if [ -d "$pkgdir"/usr/local ]; then
local f=$(cd "$pkgdir" ; find usr/local -type f)
if [ -n "$f" ]; then
error "Found files in /usr/local:"
echo "$f"
return 1
fi
fi
install -Dm644 COPYING \
"${pkgdir}/usr/share/licenses/${pkgname}"/COPYING || return 1
# unbundle
_rmgem json
}
_mv() {
local i
for i in "$@"; do
mkdir -p "$subpkgdir"/${i%/*}
mv "$pkgdir"/${i} "$subpkgdir"/${i%/*}/ || return 1
done
}
_mvgem() {
cd "$pkgdir"
for i in ./$_rubydir/${1}.rb \
./$_rubydir/${1} \
./$_rubydir/$_arch-linux${_libc}/${1} \
./$_gemdir/gems/${1}-* \
./$_gemdir/specifications/${1}-* ; do
[ -e "$pkgdir"/$i ] || continue
_mv "$i"
done
}
_rmgem() {
cd "$pkgdir"
for i in ./$_rubydir/${1}.rb \
./$_rubydir/${1} \
./$_rubydir/$_arch-linux${_libc}/${1} \
./$_gemdir/gems/${1}-* \
./$_gemdir/specifications/${1}-* ; do
[ -e "$pkgdir"/$i ] && rm -r "$pkgdir/$i"
done
return 0
}
gems() {
pkgdesc="The Ruby standard for packaging ruby libraries"
replaces="rubygems"
depends="ruby"
_mv usr/bin/gem \
$_rubydir/rubygems \
|| return 1
}
rake() {
pkgdesc="Ruby based make-like utility"
depends="ruby"
_mvgem rake || return 1
_mv usr/bin/rake
}
irb() {
pkgdesc="The Interactive Ruby"
replaces="ruby"
depends="ruby"
cd "$pkgdir"
_mv usr/bin/irb \
usr/lib/ruby/$_abi/irb*
}
rdoc() {
pkgdesc="Ruby documentation tool"
depends="ruby"
_mvgem rdoc || return 1
_mv usr/bin/ri \
usr/bin/rdoc
}
bigdecimal() {
pkgdesc="Ruby arbitrary-precision floating point decimal arithmetic"
depends="ruby"
_mvgem bigdecimal
}
io_console() {
pkgdesc="Ruby simple console IO library"
depends="ruby"
_mvgem io-console
_mv $_rubydir/io \
$_rubydir/$_arch-linux${_libc}/io/console.so
}
minitest() {
pkgdesc="Ruby suite of testing facilities"
depends="ruby"
_mvgem minitest
}
libs() {
pkgdesc="Libraries necessary to run Ruby"
depends="ruby"
mkdir -p "$subpkgdir"/usr
mv "$pkgdir"/usr/lib "$subpkgdir"/usr/
}
md5sums="895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p0.tar.bz2
8395693c99415532780605af203a102b ruby-1.9.3-always-use-i386.patch"
sha256sums="c680d392ccc4901c32067576f5b474ee186def2fcd3fcbfa485739168093295f ruby-2.0.0-p0.tar.bz2
bce3b741537f7b86e4578c5420a1a8bea87e7c8b94fc3c42cd34eecf8503eb92 ruby-1.9.3-always-use-i386.patch"
sha512sums="2e7a2f8aaff66bb33b0ed122332c873ee7c26a088a33a1de849b9ef97283476cd4ffd0748755b1d3f56f85cbb10dc8ec020a55b100c45e47a8ccca8809eaf732 ruby-2.0.0-p0.tar.bz2
1531a8d056cca385401bdf56523127d3ce405cc2703c24069a5fb3d803dee35122e9274022a2891a32fdb229280bf50918d91b67e9a5f2ad951fe11e49bd3c1c ruby-1.9.3-always-use-i386.patch"
|