Changeset 36 for server/fedora
- Timestamp:
- Nov 28, 2006, 8:08:14 PM (18 years ago)
- Location:
- server/fedora
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
server/fedora/Makefile
r31 r36 84 84 for i in $$list; do \ 85 85 pushd $$i; \ 86 ./mrproper; \ 86 87 autoconf; \ 87 ./configure; \88 make ready; \89 88 popd; \ 90 89 tar -czf $(tmp_src)/$$i.tar.gz $$i; \ … … 129 128 install-suexec: 130 129 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 137 install-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 141 install-deps: 142 yum -y krb5-workstation -
server/fedora/specs/lockeradm.spec
r11 r36 10 10 BuildRoot: %{_tmppath}/%(%{__id_u} -n)-%{name}-%{version}-root 11 11 %define debug_package %{nil} 12 Prereq: /usr/bin/fs, /usr/bin/pts 12 13 13 14 %description … … 24 25 25 26 %build 26 ./configure 27 ./configure --with-fs=/usr/bin/fs --with-pts=/usr/bin/pts 27 28 make 28 29 -
server/fedora/specs/tokensys.spec
r2 r36 10 10 BuildRoot: %{_tmppath}/%(%{__id_u} -n)-%{name}-%{version}-root 11 11 %define debug_package %{nil} 12 Prereq: /usr/kerberos/bin/kinit, /usr/bin/aklog 12 13 13 14 %description … … 23 24 24 25 %build 25 ./configure 26 ./configure --with-kinit=/usr/kerberos/bin/kinit --with-aklog=/usr/bin/aklog 26 27 27 28 %install
Note: See TracChangeset
for help on using the changeset viewer.