blob: 3d39f64da666c0b8e779ec5256fc305df4c1f6fe (
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
203
204
205
206
207
208
209
210
211
212
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/aolserver/aolserver-4.0.9.ebuild,v 1.1 2005/01/05 19:49:09 port001 Exp $
inherit eutils
DESCRIPTION="Webserver with Tcl page scripting"
HOMEPAGE="http://www.aolserver.com/"
SRC_URI="mirror://sourceforge/aolserver/${P}-src.tar.gz"
LICENSE="MPL-1.1"
SLOT="0"
KEYWORDS="~x86"
IUSE="nptl"
DEPEND=">=dev-lang/tcl-8.4.3"
ns_host="ns-localhost"
ns_etc=/etc/${PN}
ns_pageroot=/var/www/${ns_host}
ns_serverroot=/var/${PN}
ns_lib=/usr/lib/${PN}/lib
ns_bin=/usr/lib/${PN}/bin
ns_mod=/usr/lib/${PN}/modules
ns_data=/usr/share/${PN}
ns_conf=/usr/share/${PN}/include
ns_doc=/usr/share/doc/${P}
ns_include=/usr/include/${PN}
ns_pid=/var/run/${PN}
ns_log=/var/log/${PN}
ns_inst_bins="nsd/nsd
nsthread/nsthreadtest"
ns_inst_libs="nsd/libnsd.so
nsthread/libnsthread.so
nsdb/libnsdb.so
nsext/libnsext.so"
ns_inst_alibs="nspd/libnspd.a"
ns_inst_mods="nslog/nslog.so
nsperm/nsperm.so
nsdb/nsdb.so
nsext/nsext.so
nscgi/nscgi.so
nssock/nssock.so
nscp/nscp.so"
ns_inst_includes="nsd/*.h include/*.h"
ns_inst_docs="ChangeLog
README
install-sh"
check_tcl_threads() {
local threads_found=""
for tcl_install in /var/db/pkg/dev-lang/tcl*; do
# find the version of tcl installed
# in slot 0
if grep 0 ${tcl_install}/SLOT > /dev/null; then
# check that tcl was compiled with threads
# enabled
for candidate_flag in `cat ${tcl_install}/USE`; do
if [ ${candidate_flag} == threads ]; then
threads_found="true"
fi
done
fi
done
if [ -n "${threads_found}" ]; then
einfo "tcl was merged with threading enabled"
else
eerror "tcl was not merged with threading enabled."
eerror "please re-emerge tcl with USE=threads"
die "threading not enabled in tcl"
fi
}
pkg_setup() {
check_tcl_threads
}
src_unpack() {
unpack ${A}
find ${S} -type d -name CVS -prune | xargs rm -rf
if use nptl; then
epatch ${FILESDIR}/${PV}/aolserver-${PV}-nptl.patch
fi
}
src_compile() {
local myconf
myconf="--with-tcl=/usr/lib"
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install () {
dodir ${ns_etc}
dodir ${ns_pageroot}
dodir ${ns_serverroot}
dodir ${ns_lib}
dodir ${ns_bin}
dodir ${ns_mod}
dodir ${ns_mod}/tcl
dodir ${ns_data}
dodir ${ns_conf}
dodir ${ns_doc}
dodir ${ns_include}
dodir ${ns_pid}
dodir ${ns_log}
enewgroup web
enewuser aolserver -1 /bin/bash ${ns_data} web
chown -R root:web ${D}/${ns_data}
chmod -R g+w ${D}/${ns_data}
chown -R aolserver:web ${D}/${ns_pageroot}
chmod -R g+w ${D}/${ns_pageroot}
chown -R aolserver:web ${D}/${ns_serverroot}
chmod -R g+w ${D}/${ns_serverroot}
chown -R aolserver:web ${D}/${ns_log}
chmod -R g+w ${D}/${ns_log}
chown -R aolserver:web ${D}/${ns_pid}
chmod -R g+w ${D}/${ns_pid}
chown -R root:web ${D}/${ns_mod}
chmod -R g+w ${D}/${ns_mod}
for bin_file in ${ns_inst_bins}; do
dobin ${S}/${bin_file}
done
insinto ${ns_lib}
for lib_file in ${ns_inst_libs}; do
doins ${S}/${lib_file}
done
for alib_file in ${ns_inst_alibs}; do
ranlib ${S}/${alib_file}
doins ${S}/${alib_file}
done
insinto ${ns_bin}
for mod_file in ${ns_inst_mods}; do
doins ${S}/${mod_file}
done
insinto ${ns_include}
for include_file in ${ns_inst_includes}; do
doins ${S}/${include_file}
done
for doc_file in ${ns_inst_docs}; do
dodoc ${doc_file}
done
doman ${S}/doc/*.1 ${S}/doc/*.3 ${S}/doc/*.n
insinto ${ns_mod}/tcl
doins ${S}/tcl/*.tcl
#doins doesn't recurse
#insinto ${ns_pageroot}; doins -r ${S}/tests/*
cp -r ${S}/tests/* ${D}/${ns_pageroot}
insinto ${ns_bin}
doins ${S}/nsd/init.tcl
dodir ${ns_mod}/tcl/nsperm
insinto ${ns_mod}/tcl/nsperm
doins ${S}/nsperm/*.tcl
dodir ${ns_etc}/modules/nsperm
insinto ${ns_etc}/modules/nsperm
for perm_file in passwd group hosts.allow hosts.deny perms; do
doins nsperm/${perm_file}
done
insinto ${ns_data}
doins sample-config.tcl
insinto ${ns_conf}
doins ${FILESDIR}/${PV}/Makefile.global
newins ${S}/include/Makefile.global Makefile.global.orig
doins ${S}/include/Makefile.build
dosed "s:../include:${ns_conf}:g" /usr/share/aolserver/include/Makefile.build
doins ${S}/include/Makefile.module
dosed "s:../include:${ns_conf}:g" /usr/share/aolserver/include/Makefile.module
insinto ${ns_etc}
newins ${FILESDIR}/${PV}/config.tcl aolserver.tcl
exeinto /etc/init.d
newexe ${FILESDIR}/${PV}/aolserver.init aolserver
chmod 750 ${D}/etc/init.d/aolserver
}
pkg_postinst () {
echo
einfo "Upgrading:"
einfo " Check /usr/share/aolserver/sample-config.tcl"
einfo " for new configuration options that you may want"
einfo " to use in your existing configuration."
echo
}
|