webalizer/webalizer.spec

Mon, 06 Apr 2009 12:50:20 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Mon, 06 Apr 2009 12:50:20 +0200
changeset 141
e41fe78aeff0
parent 139
d3e0f51e3821
child 151
d176107091ef
permissions
-rw-r--r--

Silence warnings to stderr such as 'Truncating oversized request field'
which are commonly caused by httpd(1) logging virus and worm buffer
overflow attempts. This is of no use to a automated monitoring system
such as the one this package provides through its runcommands.

     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.21-02
    26 %define       V_here  2.21.02
    27 %define       V_geodb 20090304
    29 #   package information
    30 Name:         webalizer
    31 Summary:      Graphical Web Statistics Program
    32 URL:          http://www.mrunix.net/webalizer/
    33 Vendor:       Bradford L. Barrett
    34 Packager:     OpenPKG Foundation e.V.
    35 Distribution: OpenPKG Community
    36 Class:        PLUS
    37 Group:        Logfile
    38 License:      GPL
    39 Version:      %{V_here}
    40 Release:      20090405
    42 #   package options
    43 %option       with_dns       no
    45 #   list of sources
    46 Source0:      http://www.very-clever.com/download/webalizer/webalizer-%{V_real}-src.tgz
    47 Source1:      http://www.very-clever.com/download/webalizer/geodb/webalizer-geodb-%{V_geodb}.tgz
    48 Source2:      rc.webalizer
    50 #   build information
    51 Prefix:       %{l_prefix}
    52 BuildRoot:    %{l_buildroot}
    53 BuildPreReq:  OpenPKG, openpkg >= 20040130
    54 PreReq:       OpenPKG, openpkg >= 20040130
    55 BuildPreReq:  gd, png, zlib, bzip2, db >= 4.1.24
    56 PreReq:       gd, png, zlib, bzip2, db >= 4.1.24
    57 %if "%{with_dns}" == "yes"
    58 BuildPreReq:  db::with_compat = yes
    59 PreReq:       db::with_compat = yes
    60 %endif
    61 AutoReq:      no
    62 AutoReqProv:  no
    64 %description
    65     The Webalizer is a fast, free web server log file analysis program.
    66     It produces highly detailed, easily configurable usage reports in
    67     HTML format, for viewing with a standard web browser.
    69 %track
    70     prog webalizer = {
    71         version   = %{V_real}
    72         url       = ftp://ftp.mrunix.net/pub/webalizer/
    73         regex     = webalizer-(__VER__)-src\.tgz
    74     }
    76 %prep
    77     %setup -q -n webalizer-%{V_real}
    78     ( cd webalizer-%{V_real}
    79       %{l_gzip} -d -c %{SOURCE1} | %{l_tar} xf -
    80     ) || exit $?
    82 %build
    83     CC="%{l_cc}" \
    84     CFLAGS="%{l_cflags -O}" \
    85     CPPFLAGS="%{l_cppflags} -DHAVE_DB_185_H" \
    86     GREP="grep" \
    87     ./configure \
    88         --prefix=%{l_prefix} \
    89         --sysconfdir=%{l_prefix}/etc/%{name} \
    90         --with-geodb=%{l_prefix}/var/%{name} \
    91 %if "%{with_dns}" == "yes"
    92         --enable-dns \
    93 %endif
    94         --enable-bz2 \
    95         --with-bz2lib=%{l_prefix}/lib \
    96         --with-bz2=%{l_prefix}/include \
    97         --with-etcdir=%{l_prefix}/etc/webalizer \
    98         --with-gdlib=%{l_prefix}/lib \
    99         --with-gd=%{l_prefix}/include \
   100         --with-z-inc=%{l_prefix}/include \
   101         --with-zlib=%{l_prefix}/lib \
   102         --with-png-inc=%{l_prefix}/include \
   103         --with-png=%{l_prefix}/lib \
   104         --with-db=%{l_prefix}/include \
   105         --with-dblib=%{l_prefix}/lib
   106     %{l_make} %{l_mflags -O}
   108 %install
   109     rm -rf $RPM_BUILD_ROOT
   110     %{l_shtool} mkdir -f -p -m 755 \
   111         $RPM_BUILD_ROOT%{l_prefix}/bin \
   112         $RPM_BUILD_ROOT%{l_prefix}/man/man1 \
   113         $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d \
   114         $RPM_BUILD_ROOT%{l_prefix}/etc/webalizer \
   115         $RPM_BUILD_ROOT%{l_prefix}/var/webalizer \
   116         $RPM_BUILD_ROOT%{l_prefix}/web/webalizer
   117     %{l_shtool} install -c -s -m 755 \
   118         webalizer $RPM_BUILD_ROOT%{l_prefix}/bin/
   119     %{l_shtool} install -c -m 644 \
   120         webalizer.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/
   121     %{l_shtool} install -c -m 644 \
   122         sample.conf $RPM_BUILD_ROOT%{l_prefix}/etc/webalizer/webalizer.conf
   123     %{l_shtool} install -c -m 644 \
   124         GeoDB.dat $RPM_BUILD_ROOT%{l_prefix}/var/webalizer/
   125     ln $RPM_BUILD_ROOT%{l_prefix}/bin/webalizer \
   126        $RPM_BUILD_ROOT%{l_prefix}/bin/webazolver
   127     %{l_shtool} install -c -m 755 %{l_value -s -a} \
   128         %{SOURCE rc.webalizer} $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
   129     %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
   130         %{l_files_std} \
   131         '%config %{l_prefix}/etc/webalizer/*'
   133 %files -f files
   135 %clean
   136     rm -rf $RPM_BUILD_ROOT

mercurial