adding history from falsehope.net
This commit is contained in:
parent
f273763142
commit
0d5b4cf959
10 changed files with 1113 additions and 0 deletions
312
proftpd/proftpd-1.2.10-11_mysql.te.spec
Normal file
312
proftpd/proftpd-1.2.10-11_mysql.te.spec
Normal file
|
|
@ -0,0 +1,312 @@
|
|||
# $Id: proftpd.spec 1833 2004-08-02 23:22:28Z dag $
|
||||
# Authority: matthias
|
||||
# Upstream: <proftp-devel$lists,sf,net>
|
||||
|
||||
Summary: Flexible, stable and highly-configurable FTP server
|
||||
Name: proftpd
|
||||
Version: 1.2.10
|
||||
Release: 11%{?_with_ldap:_ldap}%{?_with_mysql:_mysql}%{?_with_postgresql:_pgsql}.te
|
||||
License: GPL
|
||||
Group: System Environment/Daemons
|
||||
URL: http://www.proftpd.org/
|
||||
Source0: ftp://ftp.proftpd.org/distrib/source/proftpd-%{version}.tar.bz2
|
||||
Source1: proftpd.conf
|
||||
Source2: proftpd.init
|
||||
Source3: proftpd-xinetd
|
||||
Source4: proftpd.logrotate
|
||||
Source5: welcome.msg
|
||||
Patch0: proftpd-%{version}-mysql323auth.patch
|
||||
Patch1: proftpd-%{version}-sqlssl.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||
Requires: pam >= 0.59, /sbin/service, /sbin/chkconfig, /etc/init.d
|
||||
BuildRequires: pam-devel, perl, ncurses-devel, pkgconfig
|
||||
%{!?_without_tls:Requires: openssl}
|
||||
%{!?_without_tls:BuildRequires: openssl-devel, krb5-devel}
|
||||
%{?_with_ldap:Requires: openldap}
|
||||
%{?_with_ldap:BuildRequires: openldap-devel}
|
||||
%{?_with_mysql:Requires: mysql}
|
||||
%{?_with_mysql:BuildRequires: mysql-devel, zlib-devel}
|
||||
%{?_with_postgresql:Requires: postgresql-libs}
|
||||
%{?_with_postgresql:BuildRequires: postgresql-devel}
|
||||
Provides: ftpserver
|
||||
Conflicts: wu-ftpd, anonftp, vsftpd
|
||||
|
||||
%description
|
||||
ProFTPD is an enhanced FTP server with a focus toward simplicity, security,
|
||||
and ease of configuration. It features a very Apache-like configuration
|
||||
syntax, and a highly customizable server infrastructure, including support for
|
||||
multiple 'virtual' FTP servers, anonymous FTP, and permission-based directory
|
||||
visibility.
|
||||
|
||||
This package defaults to the standalone behaviour of ProFTPD, but all the
|
||||
needed scripts to have it run by xinetd instead are included.
|
||||
|
||||
Available rpmbuild rebuild options :
|
||||
--without : tls
|
||||
--with : ldap mysql postgresql
|
||||
|
||||
NOTE: building with ldap enables quotatab_ldap and with mysql/postgresql
|
||||
enables quotatab_sql support.
|
||||
|
||||
%prep
|
||||
%setup
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
|
||||
|
||||
%build
|
||||
# Workaround for the PostgreSQL include file
|
||||
%{__perl} -pi -e 's|pgsql/libpq-fe.h|libpq-fe.h|g' contrib/mod_sql_postgres.c
|
||||
|
||||
# TLS includes
|
||||
OPENSSL_INC=""
|
||||
if OPENSSL_CFLAGS=`pkg-config --cflags openssl`; then
|
||||
for i in ${OPENSSL_CFLAGS}; do
|
||||
INCPATH=`echo $i | perl -pi -e 's|-I([a-z/]*)|$1|g'`
|
||||
test ! -z ${INCPATH} && OPENSSL_INC="${OPENSSL_INC}:${INCPATH}"
|
||||
done
|
||||
fi
|
||||
|
||||
%configure \
|
||||
--localstatedir="/var/run" \
|
||||
--with-includes="%{_includedir}%{!?_without_tls:${OPENSSL_INC}}%{?_with_mysql::%{_includedir}/mysql}" \
|
||||
%{?_with_mysql:--with-libraries="%{_libdir}/mysql"} \
|
||||
%{?_with_postgresql:--with-libraries="%{_libdir}"} \
|
||||
--with-modules=mod_readme:mod_auth_pam:mod_quotatab:mod_quotatab_file%{?_with_ldap::mod_ldap:mod_quotatab_ldap}%{?_with_mysql::mod_sql:mod_sql_mysql:mod_quotatab_sql}%{?_with_postgresql::mod_sql:mod_sql_postgres:mod_quotatab_sql}%{!?_without_tls::mod_tls}
|
||||
%{__make} %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
%{__rm} -rf %{buildroot}
|
||||
%makeinstall rundir="%{buildroot}%{_localstatedir}/run/proftpd" \
|
||||
INSTALL_USER=`id -un` \
|
||||
INSTALL_GROUP=`id -gn`
|
||||
%{__install} -D -m 644 contrib/dist/rpm/ftp.pamd %{buildroot}%{_sysconfdir}/pam.d/ftp
|
||||
%{__install} -D -m 640 %{SOURCE1} %{buildroot}%{_sysconfdir}/proftpd.conf
|
||||
%{__install} -D -m 755 %{SOURCE2} %{buildroot}%{_sysconfdir}/rc.d/init.d/proftpd
|
||||
%{__install} -D -m 640 %{SOURCE3} %{buildroot}%{_sysconfdir}/xinetd.d/xproftpd
|
||||
%{__install} -D -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/logrotate.d/proftpd
|
||||
%{__install} -D -m 644 %{SOURCE5} %{buildroot}/var/ftp/welcome.msg
|
||||
%{__mkdir_p} %{buildroot}/var/ftp/uploads
|
||||
%{__mkdir_p} %{buildroot}/var/ftp/pub
|
||||
%{__mkdir_p} %{buildroot}/var/log/proftpd
|
||||
touch %{buildroot}%{_sysconfdir}/ftpusers
|
||||
|
||||
# create a special space for contrib docs
|
||||
%{__mkdir_p} doc/contrib
|
||||
%{__cp} contrib/*.html contrib/[README,UPGRADE,INSTALL]* doc/contrib/
|
||||
# we're gzipping these so that the perl modules won't mess up RPM requires
|
||||
%{__gzip} -c contrib/ftpasswd > doc/contrib/ftpasswd.gz
|
||||
%{__gzip} -c contrib/ftpquota > doc/contrib/ftpquota.gz
|
||||
%{__gzip} -c contrib/xferstats.holger-preiss > doc/contrib/xferstats.holger-preiss.gz
|
||||
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
|
||||
%post
|
||||
if [ $1 = 1 ]; then
|
||||
/sbin/chkconfig --add proftpd
|
||||
IFS=":"; cat /etc/passwd | \
|
||||
while { read username nu nu gid nu nu nu nu; }; do \
|
||||
if [ $gid -lt 100 -a "$username" != "ftp" ]; then
|
||||
echo $username >> %{_sysconfdir}/ftpusers
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
%preun
|
||||
if [ $1 = 0 ]; then
|
||||
/sbin/service proftpd stop >/dev/null 2>&1 || :
|
||||
/sbin/chkconfig --del proftpd
|
||||
/sbin/service xinetd reload >/dev/null 2>&1 || :
|
||||
if [ -d /var/run/proftpd ]; then
|
||||
rm -rf /var/run/proftpd/*
|
||||
fi
|
||||
fi
|
||||
|
||||
%postun
|
||||
if [ $1 -ge 1 ]; then
|
||||
/sbin/service proftpd condrestart >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-, root, root, 0755)
|
||||
%doc COPYING CREDITS ChangeLog NEWS README*
|
||||
%doc doc/* sample-configurations/
|
||||
%dir %{_localstatedir}/run/proftpd
|
||||
%config(noreplace) %{_sysconfdir}/proftpd.conf
|
||||
%config(noreplace) %{_sysconfdir}/xinetd.d/xproftpd
|
||||
%config %{_sysconfdir}/ftpusers
|
||||
%config %{_sysconfdir}/pam.d/ftp
|
||||
%config %{_sysconfdir}/logrotate.d/proftpd
|
||||
%{_sysconfdir}/rc.d/init.d/proftpd
|
||||
%{_mandir}/*/*
|
||||
%{_bindir}/*
|
||||
%{_sbindir}/*
|
||||
%dir /var/ftp
|
||||
%attr(331, ftp, ftp) %dir /var/ftp/uploads
|
||||
%dir /var/ftp/pub
|
||||
%config(noreplace) /var/ftp/welcome.msg
|
||||
%attr(750, root, root) %dir /var/log/proftpd
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Sep 01 2005 Troy Engel <tengel@sonic.net> 1.2.10-11.te
|
||||
- Added HAVE_OPENSSL patch to mod_sql.c
|
||||
|
||||
* Mon Jun 27 2005 Troy Engel <tengel@sonic.net> 1.2.10-10.te
|
||||
- Added MySQL auth patch (bug #2644)
|
||||
|
||||
* Thu Jun 23 2005 Troy Engel <tengel@sonic.net> 1.2.10-9.te
|
||||
- Added quotatab support
|
||||
- Added contrib docs
|
||||
|
||||
* Wed Sep 22 2004 Matthias Saou <http://freshrpms.net/> 1.2.10-1
|
||||
- Updated to release 1.2.10.
|
||||
|
||||
* Tue Jun 22 2004 Matthias Saou <http://freshrpms.net/> 1.2.9-8
|
||||
- Added ncurses-devel build requires to fix the ftptop utility.
|
||||
|
||||
* Fri Feb 26 2004 Magnus-swe <Magnus-swe@telia.com> 1.2.9-7
|
||||
- Fixed the scoreboard and pidfile issues.
|
||||
|
||||
* Fri Jan 9 2004 Matthias Saou <http://freshrpms.net/> 1.2.9-6
|
||||
- Pass /var/run/proftpd as localstatedir to configure to fix pid and
|
||||
scoreboard file problems.
|
||||
|
||||
* Wed Dec 10 2003 Matthias Saou <http://freshrpms.net/> 1.2.9-4
|
||||
- Fixed the MySQL include path, thanks to Jim Richardson.
|
||||
- Renamed the postgres conditional build to postgresql.
|
||||
|
||||
* Tue Nov 11 2003 Matthias Saou <http://freshrpms.net/> 1.2.9-3
|
||||
- Renamed the xinetd service to xproftpd to avoid conflict.
|
||||
- Only HUP the standalone proftpd through logrotate if it's running.
|
||||
|
||||
* Fri Nov 7 2003 Matthias Saou <http://freshrpms.net/> 1.2.9-2
|
||||
- Rebuild for Fedora Core 1.
|
||||
- Modified the init script to make it i18n aware.
|
||||
|
||||
* Fri Oct 31 2003 Matthias Saou <http://freshrpms.net/> 1.2.9-1
|
||||
- Update to 1.2.9.
|
||||
|
||||
* Wed Sep 24 2003 Matthias Saou <http://freshrpms.net/>
|
||||
- Update to 1.2.8p to fix secutiry vulnerability.
|
||||
- Fix the TLS build option at last, enable it by default.
|
||||
|
||||
* Mon Aug 4 2003 Matthias Saou <http://freshrpms.net/>
|
||||
- Minor fixes in included README files.
|
||||
|
||||
* Mon Mar 31 2003 Matthias Saou <http://freshrpms.net/>
|
||||
- Rebuilt for Red Hat Linux 9.
|
||||
|
||||
* Thu Mar 13 2003 Matthias Saou <http://freshrpms.net/>
|
||||
- Update to 1.2.8.
|
||||
- Remove the renamed linuxprivs module.
|
||||
- Added TLS module build option.
|
||||
|
||||
* Fri Dec 13 2002 Matthias Saou <http://freshrpms.net/>
|
||||
- Fix change for ScoreboardFile in the default conf, thanks to Sven Hoexter.
|
||||
|
||||
* Mon Dec 9 2002 Matthias Saou <http://freshrpms.net/>
|
||||
- Update to 1.2.7.
|
||||
|
||||
* Thu Sep 26 2002 Matthias Saou <http://freshrpms.net/>
|
||||
- Rebuilt for Red Hat Linux 8.0.
|
||||
|
||||
* Tue Sep 17 2002 Matthias Saou <http://freshrpms.net/>
|
||||
- Update to 1.2.6.
|
||||
- Fixed typo in the config for "AllowForeignAddress" thanks to Michel Kraus.
|
||||
- Removed obsolete user install patch.
|
||||
- Added "modular" ldap, mysql and postgresql support.
|
||||
|
||||
* Mon Jun 10 2002 Matthias Saou <http://freshrpms.net/>
|
||||
- Update to 1.2.5.
|
||||
- Changed the welcome.msg to config so that it doesn't get replaced.
|
||||
|
||||
* Fri May 3 2002 Matthias Saou <http://freshrpms.net/>
|
||||
- Rebuilt against Red Hat Linux 7.3.
|
||||
- Added the %%{?_smp_mflags} expansion.
|
||||
|
||||
* Tue Oct 23 2001 Matthias Saou <http://freshrpms.net/>
|
||||
- Changed the default config file : Where the pid file is stored, addedd
|
||||
an upload authorization in anon server, and separate anon logfiles.
|
||||
- Updated welcome.msg to something nicer.
|
||||
|
||||
* Fri Oct 19 2001 Matthias Saou <http://freshrpms.net/>
|
||||
- Update to 1.2.4, since 1.2.3 had a nasty umask bug.
|
||||
|
||||
* Sat Aug 18 2001 Matthias Saou <http://freshrpms.net/>
|
||||
- Update to 1.2.2 final.
|
||||
- Changed the default config file a lot.
|
||||
|
||||
* Wed Apr 25 2001 Matthias Saou <http://freshrpms.net/>
|
||||
- Update to 1.2.2rc2.
|
||||
|
||||
* Mon Apr 1 2001 Matthias Saou <http://freshrpms.net/>
|
||||
- Update to 1.2.2rc1.
|
||||
|
||||
* Tue Mar 20 2001 Matthias Saou <http://freshrpms.net/>
|
||||
- Added a DenyFilter to prevent a recently discovered DOS attack.
|
||||
This is only useful for fresh installs since the config file is not
|
||||
overwritten.
|
||||
|
||||
* Fri Mar 2 2001 Matthias Saou <http://freshrpms.net/>
|
||||
- Upgraded to 1.2.1.
|
||||
- New init script (added condrestart).
|
||||
|
||||
* Tue Feb 27 2001 Matthias Saou <http://freshrpms.net/>
|
||||
- Upgraded to 1.2.0 final.
|
||||
|
||||
* Tue Feb 6 2001 Matthias Saou <http://freshrpms.net/>
|
||||
- Upgraded to 1.2.0rc3 (at last a new version!)
|
||||
- Modified the spec file to support transparent upgrades
|
||||
|
||||
* Wed Nov 8 2000 Matthias Saou <http://freshrpms.net/>
|
||||
- Upgraded to the latest CVS to fix the "no PORT command" bug
|
||||
- Fixed the ftpuser creation script
|
||||
- Modified the default config file to easily change to an anonymous
|
||||
server
|
||||
|
||||
* Sun Oct 15 2000 Matthias Saou <http://freshrpms.net/>
|
||||
[proftpd-1.2.0rc2-2]
|
||||
- Updated the spec file and build process for RedHat 7.0
|
||||
- Added xinetd support
|
||||
- Added logrotate.d support
|
||||
|
||||
* Fri Jul 28 2000 Matthias Saou <http://freshrpms.net/>
|
||||
[proftpd-1.2.0rc2-1]
|
||||
- Upgraded to 1.2.0rc2
|
||||
|
||||
- Upgraded to 1.2.0rc1
|
||||
* Sat Jul 22 2000 Matthias Saou <http://freshrpms.net/>
|
||||
[proftpd-1.2.0rc1-1]
|
||||
- Upgraded to 1.2.0rc1
|
||||
- Re-did the whole spec file (it's hopefully cleaner now)
|
||||
- Made a patch to be able to build the RPM as an other user than root
|
||||
- Added default pam support (but without /etc/shells check)
|
||||
- Rewrote the rc.d script (mostly exit levels and ftpshut stuff)
|
||||
- Modified the default configuration file to not display a version number
|
||||
- Changed the package to standalone in one single RPM easily changeable
|
||||
to inetd (for not-so-newbie users)
|
||||
- Fixed the ftpusers generating shell script (missing "nu"s for me...)
|
||||
- Removed mod_ratio (usually used with databases modules anyway)
|
||||
- Removed the prefix (relocations a rarely used on non-X packages)
|
||||
- Gzipped the man pages
|
||||
|
||||
* Thu Oct 03 1999 O.Elliyasa <osman@Cable.EU.org>
|
||||
- Multi package creation.
|
||||
Created core, standalone, inetd (&doc) package creations.
|
||||
Added startup script for init.d
|
||||
Need to make the "standalone & inetd" packages being created as "noarch"
|
||||
- Added URL.
|
||||
- Added prefix to make the package relocatable.
|
||||
|
||||
* Wed Sep 08 1999 O.Elliyasa <osman@Cable.EU.org>
|
||||
- Corrected inetd.conf line addition/change logic.
|
||||
|
||||
* Sat Jul 24 1999 MacGyver <macgyver@tos.net>
|
||||
- Initial import of spec.
|
||||
|
||||
Reference in a new issue