blob: aa98e43eb8e95f87b45e572323db21adad338dca (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-www/oops/oops-1.5.6.ebuild,v 1.7 2002/07/11 06:30:49 drobbins Exp $
S=${WORKDIR}/${P}
SRC_URI="http://zipper.paco.net/~igor/oops/oops-1.5.6.tar.gz"
HOMEPAGE="http://zipper.paco.net/~igor/oops.eng/"
DESCRIPTION="An advanced multithreaded caching web proxy"
DEPEND="virtual/glibc sys-devel/gcc
dev-libs/libpcre
sys-devel/flex"
RDEPEND="virtual/glibc sys-devel/gcc"
src_unpack() {
unpack ${A}
cd ${S}
cp configure configure.orig
sed -e 's:/usr/local/lib/libpcre:/usr/lib/libpcre:g' configure.orig > configure
cd ${S}/src/modules
}
src_compile() {
try ./configure --prefix=/usr --libdir=/usr/lib/oops --enable-oops-user=squid \
--sysconfdir=/etc/oops --sbindir=/usr/sbin --with-regexp=pcre --localstatedir=/var/run/oops
cd src
cp config.h.in config.h.in.orig
sed -e '/STRERROR_R/d' config.h.in.orig > config.h.in
cp Makefile Makefile.orig
sed -e 's:${OOPS:${DESTDIR}/${OOPS:g' Makefile.orig > Makefile
cd ..
try make
}
src_install() {
dodir /usr/sbin
chown squid.squid ${D}
try make DESTDIR=${D} install
chmod -R g+srw ${D}/etc/oops
chmod -R g+rw ${D}/etc/oops/*
insinto /etc/oops
doins ${FILESDIR}/oops.cfg
cd ${D}
#cleanups
rm -rf ${D}/usr/oops
rm -rf ${D}/usr/lib/oops/modules
#config files
cd ${D}/etc/oops
local x
local y
for y in . tables
do
for x in ${y}/*
do
if [ -f $x ]
then
mv $x $x.eg
fi
done
done
}
pkg_postinst() {
local x
local y
local mylen
local newf
cd ${ROOT}/etc/oops
for y in . tables
do
for x in ${y}/*.eg
do
realf=`echo $x | sed -e 's/.eg$//'`
if [ ! -e ${realf} ]
then
cp ${x} ${realf}
fi
done
done
if [ ! -e ${ROOT}/var/log/oops ]
then
install -d -o squid -g squid -m0770 ${ROOT}/var/log/oops
chmod g+s ${ROOT}/var/log/oops
fi
if [ ! -e ${ROOT}/var/lib/oops/storage ]
then
install -d -o squid -g squid -m0770 ${ROOT}/var/lib/oops/storage
fi
if [ ! -e ${ROOT}/var/lib/oops/db ]
then
install -d -o squid -g squid -m0770 ${ROOT}/var/lib/oops/db
fi
if [ ! -e ${ROOT}/var/run/oops ]
then
install -d -o squid -g squid -m0775 ${ROOT}/var/run/oops
chmod g+s ${ROOT}/var/run/oops
fi
}
|