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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/redis-1.2.6.ebuild,v 1.2 2011/01/26 02:25:32 robbat2 Exp $
EAPI=2
inherit autotools eutils
DESCRIPTION="Persistent distributed key-value data caching system."
HOMEPAGE="http://code.google.com/p/redis/"
SRC_URI="http://redis.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86"
IUSE="test"
SLOT="0"
RDEPEND=""
DEPEND="test? ( dev-lang/tcl )"
REDIS_PIDDIR=/var/run/redis/
REDIS_PIDFILE=${REDIS_PIDDIR}/redis.pid
REDIS_DATAPATH=/var/lib/redis
REDIS_LOGPATH=/var/log/redis
REDIS_LOGFILE=${REDIS_LOGPATH}/redis.log
pkg_setup() {
enewgroup redis 75 || die "problem adding 'redis' group"
enewuser redis 75 -1 ${REDIS_DATAPATH} redis || die "problem adding 'redis' user"
}
src_prepare() {
# Borrowed from debian
epatch "${FILESDIR}"/01-dont-print-pid-on-startup.diff
# Now autotoolize this
cp "${FILESDIR}"/configure.ac-1.02 configure.ac
mv Makefile Makefile.in
sed -i \
-e 's:$(CC):@CC@:g' \
-e 's:$(CFLAGS):@AM_CFLAGS@:g' \
-e 's: $(DEBUG)::g' \
-e 's:ARCH:GCC_ARCH_FLAG:g' \
-e 's:PROF:GCC_PROF_FLAG:g' \
-e '/^CCOPT=/s:$: $(LDFLAGS):g' \
Makefile.in \
|| die "sed failed!"
eautoreconf
}
src_install() {
# configuration file rewrites
insinto /etc/
sed -r \
-e "/^pidfile\>/s,/var.*,${REDIS_PIDFILE}," \
-e '/^daemonize\>/s,no,yes,' \
-e '/^# bind/s,^# ,,' \
-e '/^# maxmemory\>/s,^# ,,' \
-e '/^maxmemory\>/s,<bytes>,67108864,' \
-e "/^dbfilename\>/s,dump.rdb,${REDIS_DATAPATH}/dump.rdb," \
-e "/^dir\>/s, .*, ${REDIS_DATAPATH}/," \
-e '/^loglevel\>/s:debug:notice:' \
-e "/^logfile\>/s:stdout:${REDIS_LOGFILE}:" \
<redis.conf \
>redis.conf.gentoo
newins redis.conf.gentoo redis.conf
fowners root:redis /etc/redis.conf
fperms 0640 /etc/redis.conf
newconfd "${FILESDIR}/redis.confd" redis
newinitd "${FILESDIR}/redis.initd" redis
dodoc 00-RELEASENOTES BETATESTING.txt BUGS Changelog README TODO
newdoc client-libraries/README README.client-libraries
dohtml doc/*
dobin redis-benchmark redis-cli
dosbin redis-server
diropts -m0750 -o redis -g redis
keepdir ${REDIS_DATAPATH} ${REDIS_LOGPATH} ${REDIS_PIDDIR}
}
src_test() {
local PORT=$(((RANDOM % 32767)+32768))
local PIDFILE=redis-test.pid
einfo "Preparing redis test config"
# The port number is hardcoded in lots of places
sed -r <redis.conf >redis-test.conf \
-e "/^pidfile/s~ .*~ ${PIDFILE}~" \
-e '/^daemonize/s~ no~ yes~' \
-e "/^port/s~ [0-9]+~ ${PORT}~" \
-e '/^(# )?bind/s,^,#,g' \
-e '/\<bind\>/abind 127.0.0.1' \
|| die "Failed to build test server config"
# The port number is hardcoded in lots of places
for i in test-redis.tcl redis.tcl ; do
sed -r <$i >${i/.tcl/-${PORT}.tcl} \
-e "/^source redis.tcl/s,redis.tcl,redis-${PORT}.tcl,g" \
-e "/6379/s~6379~${PORT}~" \
|| die "Failed to build test client config ($i)"
done
einfo "Starting test server"
./redis-server redis-test.conf
rc1=$?
sleep 2
[[ $rc1 -ne 0 ]] && die "Failed to start redis server!"
pidof redis-server | fgrep -f ${PIDFILE}
rc1=$?
[[ $rc1 -ne 0 ]] && die "Could not find started redis server!"
unset rc1
einfo "Starting redis tests"
tclsh test-redis-$PORT.tcl
rc1=$?
kill -9 $(<${PIDFILE})
rc2=$?
[[ $rc1 -ne 0 ]] && die "Failed testsuite"
[[ $rc2 -ne 0 ]] && die "Failed to shut down redis server"
}
|