123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- ##
- ## inn.spec -- OpenPKG RPM Specification
- ## Copyright (c) 2000-2001 Cable & Wireless Deutschland GmbH
- ## Copyright (c) 2000-2001 The OpenPKG Project <http://www.openpkg.org/>
- ## Copyright (c) 2000-2001 Ralf S. Engelschall <rse@engelschall.com>
- ##
- ## Permission to use, copy, modify, and distribute this software for
- ## any purpose with or without fee is hereby granted, provided that
- ## the above copyright notice and this permission notice appear in all
- ## copies.
- ##
- ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
- ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- ## SUCH DAMAGE.
- ##
- %define V_build stable
- %define V_release 2.3.2
- %define V_stable 20011124
- # package information
- Name: inn
- Summary: InterNetNews Usenet Server
- URL: http://www.isc.org/products/INN/
- Vendor: Internet Software Consortium
- Packager: The OpenPKG Project
- Distribution: OpenPKG [REL]
- Group: News
- License: ISC
- %if "%{V_build}" == "release"
- Version: %{V_release}
- %else
- Version: %{V_release}.%{V_stable}
- %endif
- Release: 20011201
- # list of sources
- Source0: ftp://ftp.openpkg.org/DST/inn/fakesyslog.tar.gz
- Source1: ftp://ftp.isc.org/isc/inn/inn-%{V_release}.tar.gz
- Source2: ftp://ftp.isc.org/isc/inn/snapshots/inn-STABLE-%{V_stable}.tar.gz
- Source3: rc.inn
- # build information
- Prefix: %{l_prefix}
- BuildRoot: %{l_buildroot}
- BuildPreReq: OpenPKG, openpkg >= 20011126.0, make, perl, db, openssl, bison, flex
- PreReq: OpenPKG, openpkg >= 20011126.0, perl, MTA
- AutoReq: no
- AutoReqProv: no
- %description
- InterNetNews (INN) is a complete Usenet system. It includes innd, an
- NNTP server, and nnrpd, a newsreading server. INN separates hosts
- that feed you news from those that have users reading news.
- %prep
- %setup0 -q -c
- %if "%{V_build}" == "release"
- %setup1 -q -T -D -a 1
- %else
- %setup2 -q -T -D -a 2
- %endif
- %build
- # make sure INN finds our own files
- PATH="%{l_prefix}/bin:$PATH"
- export PATH
- # build faked syslog(3) library
- fakesyslogdir="`pwd`/fakesyslog"
- ( cd fakesyslog
- CC="%{l_cc}" \
- CFLAGS="%{l_cflags -O}" \
- ./configure \
- --with-logfile=%{l_prefix}/var/inn/log/news.log
- %{l_make} %{l_mflags}
- )
- %if "%{V_build}" == "release"
- cd inn-%{V_release}
- %else
- cd inn-STABLE-%{V_stable}
- %endif
- # adjust some too strange INN paths
- %{l_rpmtool} subst \
- "s;^\\(PATHBIN.*=\\).*;\\1 \$(PATHNEWS)/libexec/inn;" \
- -- Makefile.global.in
- %{l_rpmtool} subst \
- "s;^\\(pathbin:.*\\)@prefix@.*;\\1@prefix@/libexec/inn;" \
- -- samples/inn.conf.in
- # configure the source tree
- CC="%{l_cc}" \
- CFLAGS="%{l_cflags -O}" \
- LDFLAGS="-L$fakesyslogdir" \
- LIBS="-lfakesyslog" \
- ./configure \
- --prefix=%{l_prefix} \
- --bindir=%{l_prefix}/libexec/inn \
- --with-etc-dir=%{l_prefix}/etc/inn \
- --with-db-dir=%{l_prefix}/var/inn/db \
- --with-control-dir=%{l_prefix}/libexec/inn/control \
- --with-filter-dir=%{l_prefix}/libexec/inn/filter \
- --with-lib-dir=%{l_prefix}/lib/inn \
- --with-log-dir=%{l_prefix}/var/inn/log \
- --with-run-dir=%{l_prefix}/var/inn/run \
- --with-spool-dir=%{l_prefix}/var/inn/spool \
- --with-tmp-path=%{l_prefix}/var/inn/tmp \
- --with-openssl=%{l_prefix} \
- --with-berkeleydb=%{l_prefix} \
- --with-news-user=%{l_fsusr} \
- --with-news-group=%{l_fsusr} \
- --with-news-master=%{l_fsusr} \
- --with-sendmail=%{l_prefix}/sbin/sendmail \
- --enable-uucp-rnews \
- --with-perl
- # build the INN system
- %{l_make} %{l_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- %if "%{V_build}" == "release"
- cd inn-%{V_release}
- %else
- cd inn-STABLE-%{V_stable}
- %endif
- # determine current user and group
- thisuser=`(id -un) 2>/dev/null ||\
- (whoami) 2>/dev/null ||\
- (who am i | cut "-d " -f1) 2>/dev/null ||\
- echo $LOGNAME`
- thisgroup=`(cat /etc/passwd; ypcat passwd) 2>/dev/null |\
- grep "^${thisuser}:" | awk -F: '{ print $4; }' | head -1`
- thisgroup=`(cat /etc/group; ypcat group) 2>/dev/null |\
- grep ":${thisgroup}:" | awk -F: '{ print $1; }' | head -1`
- if [ ".$thisgroup" = . ]; then
- thisgroup="$thisuser"
- fi
- # adjust INN installation procedure
- %{l_rpmtool} subst \
- "s;^\\(prefix.*=\\).*;\\1 $RPM_BUILD_ROOT%{l_prefix};" \
- "s;^\\(PATH.*=[ ]*\\)\\(%{l_prefix}\\);\\1 $RPM_BUILD_ROOT\\2;" \
- "s;^\\(NEWSUSER.*=\\).*;\\1 $thisuser;" \
- "s;^\\(NEWSGROUP.*=\\).*;\\1 $thisgroup;" \
- "s;^\\(OWNER.*=\\).*;\\1;" \
- "s;^\\(ROWNER.*=\\).*;\\1;" \
- -- Makefile.global
- # perform installation procedure
- %{l_make} %{l_mflags} install
- # make some programs manually accessible
- %{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/bin/
- for bin in controlbatch controlchan news2mail startinnfeed overchan \
- archive innmail innconfval ctlinnd inews rnews nntpsend; do
- ln $RPM_BUILD_ROOT%{l_prefix}/libexec/inn/$bin \
- $RPM_BUILD_ROOT%{l_prefix}/bin/$bin
- done
- # strip installation
- rm -f $RPM_BUILD_ROOT%{l_prefix}/libexec/inn/filter/*.py
- rm -f $RPM_BUILD_ROOT%{l_prefix}/lib/inn/*.tcl
- rm -f $RPM_BUILD_ROOT%{l_prefix}/lib/inn/lib*.a
- rm -f $RPM_BUILD_ROOT%{l_prefix}/libexec/inn/ovdb_upgrade
- ln $RPM_BUILD_ROOT%{l_prefix}/libexec/inn/ovdb_recover \
- $RPM_BUILD_ROOT%{l_prefix}/libexec/inn/ovdb_upgrade
- strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true
- # adjust configuration
- ( echo ''
- echo '# dummy entry to make INN happy as long as'
- echo '# this server has no real newsfeeds configured.'
- echo 'dummy-feed:!*::'
- echo ''
- ) >>$RPM_BUILD_ROOT%{l_prefix}/etc/inn/newsfeeds
- ( echo ''
- echo '# use the traditional spool area for storage'
- echo 'method tradspool {'
- echo ' newsgroups: *'
- echo ' class: 1'
- echo '}'
- ) >>$RPM_BUILD_ROOT%{l_prefix}/etc/inn/storage.conf
- # create initial history database
- ( cd $RPM_BUILD_ROOT%{l_prefix}/var/inn/db
- touch history
- INNCONF=$RPM_BUILD_ROOT%{l_prefix}/etc/inn/inn.conf \
- $RPM_BUILD_ROOT%{l_prefix}/libexec/inn/makedbz -i -f ./history
- chmod 644 history*
- )
- # adjust permissions
- chmod 664 $RPM_BUILD_ROOT%{l_prefix}/var/inn/db/active
- # create empty logfiles
- touch $RPM_BUILD_ROOT%{l_prefix}/var/inn/log/news.log
- # install run-command script
- %{l_shtool} mkdir -f -p -m 755 $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d
- %{l_shtool} install -c -m 755 \
- -e 's;@l_prefix@;%{l_prefix};g' \
- -e 's;@l_fsusr@;%{l_fsusr};g' \
- -e 's;@l_fsgrp@;%{l_fsgrp};g' \
- %{SOURCE rc.inn} \
- $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
- # strip binaries
- strip $RPM_BUILD_ROOT%{l_prefix}/bin/* 2> /dev/null || true
- strip $RPM_BUILD_ROOT%{l_prefix}/libexec/inn/* 2> /dev/null || true
- # determine file list
- %{l_rpmtool} files -v -o../files -r$RPM_BUILD_ROOT \
- %{l_files_std} \
- '%config %{l_prefix}/etc/inn/*' \
- '%attr(4550,root,%{l_fsgrp}) %{l_prefix}/bin/rnews' \
- '%attr(4755,root,%{l_fsgrp}) %{l_prefix}/libexec/inn/inndstart' \
- '%attr(4755,root,%{l_fsgrp}) %{l_prefix}/libexec/inn/startinnfeed' \
- '%config %{l_prefix}/var/inn/db/*'
- %files -f files
- %clean
- rm -rf $RPM_BUILD_ROOT
|