webalizer/webalizer.spec

Thu, 02 Apr 2009 14:01:28 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 02 Apr 2009 14:01:28 +0200
changeset 130
a92d68ac1ca3
parent 124
e6362b30494e
child 132
648dc0227614
permissions
-rw-r--r--

Import package vendor original specs for necessary manipulations.

     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:      20090401
    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
    47 #   build information
    48 Prefix:       %{l_prefix}
    49 BuildRoot:    %{l_buildroot}
    50 BuildPreReq:  OpenPKG, openpkg >= 20040130
    51 PreReq:       OpenPKG, openpkg >= 20040130
    52 BuildPreReq:  gd, png, zlib, bzip2, db >= 4.1.24
    53 PreReq:       gd, png, zlib, bzip2, db >= 4.1.24
    54 %if "%{with_dns}" == "yes"
    55 BuildPreReq:  db::with_compat = yes
    56 PreReq:       db::with_compat = yes
    57 %endif
    58 AutoReq:      no
    59 AutoReqProv:  no
    61 %description
    62     The Webalizer is a fast, free web server log file analysis program.
    63     It produces highly detailed, easily configurable usage reports in
    64     HTML format, for viewing with a standard web browser.
    66 %track
    67     prog webalizer = {
    68         version   = %{V_real}
    69         url       = ftp://ftp.mrunix.net/pub/webalizer/
    70         regex     = webalizer-(__VER__)-src\.tgz
    71     }
    73 %prep
    74     %setup -q -n webalizer-%{V_real}
    76 %build
    77     CC="%{l_cc}" \
    78     CFLAGS="%{l_cflags -O}" \
    79     CPPFLAGS="%{l_cppflags} -DHAVE_DB_185_H" \
    80     GREP="grep" \
    81     ./configure \
    82         --prefix=%{l_prefix} \
    83         --sysconfdir=%{l_prefix}/etc/%{name} \
    84 %if "%{with_dns}" == "yes"
    85         --enable-dns \
    86 %endif
    87         --enable-bz2 \
    88         --with-bz2lib=%{l_prefix}/lib \
    89         --with-bz2=%{l_prefix}/include \
    90         --with-etcdir=%{l_prefix}/etc/webalizer \
    91         --with-gdlib=%{l_prefix}/lib \
    92         --with-gd=%{l_prefix}/include \
    93         --with-z-inc=%{l_prefix}/include \
    94         --with-zlib=%{l_prefix}/lib \
    95         --with-png-inc=%{l_prefix}/include \
    96         --with-png=%{l_prefix}/lib \
    97         --with-db=%{l_prefix}/include \
    98         --with-dblib=%{l_prefix}/lib
    99     %{l_make} %{l_mflags -O}
   101 %install
   102     rm -rf $RPM_BUILD_ROOT
   103     %{l_shtool} mkdir -f -p -m 755 \
   104         $RPM_BUILD_ROOT%{l_prefix}/bin \
   105         $RPM_BUILD_ROOT%{l_prefix}/man/man1 \
   106         $RPM_BUILD_ROOT%{l_prefix}/etc/webalizer
   107     %{l_shtool} install -c -s -m 755 \
   108         webalizer $RPM_BUILD_ROOT%{l_prefix}/bin/
   109     %{l_shtool} install -c -m 644 \
   110         webalizer.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/
   111     %{l_shtool} install -c -m 644 \
   112         sample.conf $RPM_BUILD_ROOT%{l_prefix}/etc/webalizer/webalizer.conf
   113     ln $RPM_BUILD_ROOT%{l_prefix}/bin/webalizer \
   114        $RPM_BUILD_ROOT%{l_prefix}/bin/webazolver
   115     %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
   117 %files -f files
   119 %clean
   120     rm -rf $RPM_BUILD_ROOT

mercurial