Changeset 36 for server/fedora


Ignore:
Timestamp:
Nov 28, 2006, 8:08:14 PM (17 years ago)
Author:
jbarnold
Message:
Improved package dependency tracking
Location:
server/fedora
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • server/fedora/Makefile

    r31 r36  
    8484        for i in $$list; do \
    8585                pushd $$i; \
     86                ./mrproper; \
    8687                autoconf; \
    87                 ./configure; \
    88                 make ready; \
    8988                popd; \
    9089                tar -czf $(tmp_src)/$$i.tar.gz $$i; \
     
    129128install-suexec:
    130129        install -m 4510 -o 0 -g apache ${PWD}/sbin/suexec /usr/sbin/;
     130
     131# The following packages are needed for *building* all of our packages
     132# basic deps: rpm-build through autoconf
     133# oursrc: hesinfo
     134# httpd: xmlto through distcache-devel
     135# krb5: bison through texinfo
     136# openafs: pam-devel through automake
     137install-build-deps:
     138        yum -y install rpm-build gcc autoconf hesinfo xmlto db4-devel expat-devel zlib-devel libselinux-devel apr-devel apr-util-devel pcre-devel openssl-devel distcache-devel bison ncurses-devel texinfo pam-devel automake
     139
     140# The following packages are needed for *installing* all of our packages
     141install-deps:
     142        yum -y krb5-workstation
  • server/fedora/specs/lockeradm.spec

    r11 r36  
    1010BuildRoot: %{_tmppath}/%(%{__id_u} -n)-%{name}-%{version}-root
    1111%define debug_package %{nil}
     12Prereq: /usr/bin/fs, /usr/bin/pts
    1213
    1314%description
     
    2425
    2526%build
    26 ./configure
     27./configure --with-fs=/usr/bin/fs --with-pts=/usr/bin/pts
    2728make
    2829
  • server/fedora/specs/tokensys.spec

    r2 r36  
    1010BuildRoot: %{_tmppath}/%(%{__id_u} -n)-%{name}-%{version}-root
    1111%define debug_package %{nil}
     12Prereq: /usr/kerberos/bin/kinit, /usr/bin/aklog
    1213
    1314%description
     
    2324
    2425%build
    25 ./configure
     26./configure --with-kinit=/usr/kerberos/bin/kinit --with-aklog=/usr/bin/aklog
    2627
    2728%install
Note: See TracChangeset for help on using the changeset viewer.