Fri, 03 Apr 2009 10:48:27 +0200
Silence general output messages when executing in runcommand script.
1 ##
2 ## webalizer.spec -- OpenPKG RPM Package Specification
3 ## Copyright (c) 2000-2008 OpenPKG Foundation e.V. <http://openpkg.net/>
4 ##
5 ## Permission to use, copy, modify, and distribute this software for
6 ## any purpose with or without fee is hereby granted, provided that
7 ## the above copyright notice and this permission notice appear in all
8 ## copies.
9 ##
10 ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
11 ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
12 ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
13 ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
14 ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
15 ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
16 ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
17 ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
18 ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
19 ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
20 ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
21 ## SUCH DAMAGE.
22 ##
24 # package version
25 %define V_real 2.20-03
26 %define V_here 2.20.03
28 # package information
29 Name: webalizer
30 Summary: Graphical Web Statistics Program
31 URL: http://www.mrunix.net/webalizer/
32 Vendor: Bradford L. Barrett
33 Packager: OpenPKG Foundation e.V.
34 Distribution: OpenPKG Community
35 Class: PLUS
36 Group: Logfile
37 License: GPL
38 Version: %{V_here}
39 Release: 20090403
41 # package options
42 %option with_dns no
44 # list of sources
45 Source0: ftp://ftp.mrunix.net/pub/webalizer/webalizer-%{V_real}-src.tgz
46 Source1: rc.webalizer
48 # build information
49 Prefix: %{l_prefix}
50 BuildRoot: %{l_buildroot}
51 BuildPreReq: OpenPKG, openpkg >= 20040130
52 PreReq: OpenPKG, openpkg >= 20040130
53 BuildPreReq: gd, png, zlib, bzip2, db >= 4.1.24
54 PreReq: gd, png, zlib, bzip2, db >= 4.1.24
55 %if "%{with_dns}" == "yes"
56 BuildPreReq: db::with_compat = yes
57 PreReq: db::with_compat = yes
58 %endif
59 AutoReq: no
60 AutoReqProv: no
62 %description
63 The Webalizer is a fast, free web server log file analysis program.
64 It produces highly detailed, easily configurable usage reports in
65 HTML format, for viewing with a standard web browser.
67 %track
68 prog webalizer = {
69 version = %{V_real}
70 url = ftp://ftp.mrunix.net/pub/webalizer/
71 regex = webalizer-(__VER__)-src\.tgz
72 }
74 %prep
75 %setup -q -n webalizer-%{V_real}
77 %build
78 CC="%{l_cc}" \
79 CFLAGS="%{l_cflags -O}" \
80 CPPFLAGS="%{l_cppflags} -DHAVE_DB_185_H" \
81 GREP="grep" \
82 ./configure \
83 --prefix=%{l_prefix} \
84 --sysconfdir=%{l_prefix}/etc/%{name} \
85 --with-geodb=%{l_prefix}/var/%{name} \
86 %if "%{with_dns}" == "yes"
87 --enable-dns \
88 %endif
89 --enable-bz2 \
90 --with-bz2lib=%{l_prefix}/lib \
91 --with-bz2=%{l_prefix}/include \
92 --with-etcdir=%{l_prefix}/etc/webalizer \
93 --with-gdlib=%{l_prefix}/lib \
94 --with-gd=%{l_prefix}/include \
95 --with-z-inc=%{l_prefix}/include \
96 --with-zlib=%{l_prefix}/lib \
97 --with-png-inc=%{l_prefix}/include \
98 --with-png=%{l_prefix}/lib \
99 --with-db=%{l_prefix}/include \
100 --with-dblib=%{l_prefix}/lib
101 %{l_make} %{l_mflags -O}
103 %install
104 rm -rf $RPM_BUILD_ROOT
105 %{l_shtool} mkdir -f -p -m 755 \
106 $RPM_BUILD_ROOT%{l_prefix}/bin \
107 $RPM_BUILD_ROOT%{l_prefix}/man/man1 \
108 $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d \
109 $RPM_BUILD_ROOT%{l_prefix}/etc/webalizer \
110 $RPM_BUILD_ROOT%{l_prefix}/var/webalizer \
111 $RPM_BUILD_ROOT%{l_prefix}/web/webalizer
112 %{l_shtool} install -c -s -m 755 \
113 webalizer $RPM_BUILD_ROOT%{l_prefix}/bin/
114 %{l_shtool} install -c -m 644 \
115 webalizer.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/
116 %{l_shtool} install -c -m 644 \
117 sample.conf $RPM_BUILD_ROOT%{l_prefix}/etc/webalizer/webalizer.conf
118 ln $RPM_BUILD_ROOT%{l_prefix}/bin/webalizer \
119 $RPM_BUILD_ROOT%{l_prefix}/bin/webazolver
120 %{l_shtool} install -c -m 755 %{l_value -s -a} \
121 %{SOURCE rc.webalizer} $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
122 %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
123 %{l_files_std} \
124 '%config %{l_prefix}/etc/webalizer/*'
126 %files -f files
128 %clean
129 rm -rf $RPM_BUILD_ROOT