- Timestamp:
- Aug 29, 2008, 4:39:04 PM (16 years ago)
- Location:
- server
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
server/common/oursrc/execsys/Makefile.in
r104 r825 5 5 libexecdir = @libexecdir@ 6 6 sysconfdir = @sysconfdir@ 7 sbindir = @sbindir@ 7 8 APACHEDIR = /etc/httpd 8 9 SYSCATPATH = /usr/local/bin 10 trusteddir = /usr/libexec/scripts-trusted 9 11 10 12 all-local: static-cat execsys-binfmt … … 17 19 install -D -p -m755 execsys-binfmt $(DESTDIR)/etc/init.d/execsys-binfmt 18 20 install -D -p -m755 static-cat $(DESTDIR)$(SYSCATPATH)/static-cat 21 install -D -p -m755 svnproxy.pl $(DESTDIR)$(sbindir)/svnproxy.pl 22 install -D -p -m755 ldapize.pl $(DESTDIR)$(sbindir)/ldapize.pl 23 install -D -p -m755 svn $(DESTDIR)$(trusteddir)/svn 24 install -D -p -m644 scripts-svn.xinetd $(DESTDIR)/etc/xinetd.d/scripts-svn 19 25 20 26 clean: -
server/fedora/specs/execsys.spec
r163 r825 24 24 25 25 %build 26 ./configure -- with-pl=/usr/bin/perl --with-php=/usr/bin/php-cgi --with-py=/usr/bin/python --with-exe=/usr/bin/mono26 ./configure --prefix=/usr/local --with-pl=/usr/bin/perl --with-php=/usr/bin/php-cgi --with-py=/usr/bin/python --with-exe=/usr/bin/mono 27 27 make SYSCATDIR=/usr/local/sbin 28 28 29 29 %install 30 30 [ $RPM_BUILD_ROOT != / ] && rm -rf $RPM_BUILD_ROOT 31 make install DESTDIR=$RPM_BUILD_ROOT prefix=/usr/localSYSCATDIR=/usr/local/sbin31 make install DESTDIR=$RPM_BUILD_ROOT SYSCATDIR=/usr/local/sbin 32 32 33 33 %clean … … 40 40 /usr/local/bin/static-cat 41 41 /etc/init.d/execsys-binfmt 42 /usr/local/sbin/svnproxy.pl 43 /usr/local/sbin/ldapize.pl 44 /usr/libexec/scripts-trusted/svn 45 /etc/xinetd.d/scripts-svn 42 46 43 47 %post 44 48 chkconfig --add execsys-binfmt 45 49 service execsys-binfmt start 50 service xinetd reload 46 51 47 52 %preun … … 49 54 chkconfig --del execsys-binfmt 50 55 56 %postun 57 service xinetd reload 58 51 59 %changelog 52 60
Note: See TracChangeset
for help on using the changeset viewer.