# Available rpmbuild options: # # --without libwrap # --without bcrelay # # --define "betabuild 1" to add a .1 suffix to the release tag for beta repo releases # Harden the build from Fedora 16, RHEL-7 %if 0%{?fedora} > 15 || 0%{?rhel} > 6 %global _hardened_build 1 %global _harden_flags -Wl,-z,relro,-z,now %endif # Use systemd init from Fedora 15, RHEL-7, otherwise SysV initscript %if 0%{?fedora} > 14 || 0%{?rhel} > 6 %global use_systemd 1 %else %global use_systemd 0 %endif # Support systemd presets from Fedora 18, RHEL-7 %if 0%{?fedora} > 17 %global preset_support 1 %endif Summary: PoPToP Point to Point Tunneling Server Name: pptpd Version: 1.4.0 Release: 1%{?dist}%{?betabuild:.1} License: GPLv2+ Group: Applications/Internet URL: http://poptop.sourceforge.net/ Source0: http://downloads.sf.net/poptop/pptpd-%{version}.tar.gz Source1: pptpd.service Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu) BuildRequires: /usr/include/pppd/patchlevel.h %global pppver %((awk '/^#define VERSION/ { print $NF }' /usr/include/pppd/patchlevel.h 2>/dev/null || echo none) | tr -d '"') Requires: ppp = %{pppver} %if %{?_without_libwrap:0}%{!?_without_libwrap:1} BuildRequires: /usr/include/tcpd.h %endif %if %{use_systemd} BuildRequires: systemd-units Requires(post): systemd-units Requires(preun): systemd-units Requires(postun): systemd-units %else Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig, /sbin/service Requires(postun): /sbin/service %endif %description This implements a Virtual Private Networking Server (VPN) that is compatible with Microsoft VPN clients. It allows windows users to connect to an internal firewalled network using their dialup. %prep %setup -q # Fix for distros with %%{_libdir} = /usr/lib64 perl -pi -e 's,/usr/lib/pptpd,%{_libdir}/pptpd,;' pptpctrl.c %build %configure \ %{!?_without_libwrap:--with-libwrap} \ %{?_without_libwrap:--without-libwrap} \ %{!?_without_bcrelay:--enable-bcrelay} \ %{?_without_bcrelay:--disable-bcrelay} (echo '#undef VERSION'; echo '#include ') >> plugins/patchlevel.h make CFLAGS='-fno-builtin -fPIC -DSBINDIR=\"%{_sbindir}\" %{optflags} %{?_harden_flags}' %install rm -rf %{buildroot} mkdir -p %{buildroot}%{_sysconfdir}/ppp mkdir -p %{buildroot}%{_bindir} mkdir -p %{buildroot}%{_mandir}/man{5,8} make \ DESTDIR=%{buildroot} \ INSTALL="install -p" \ LIBDIR=%{buildroot}%{_libdir}/pptpd \ install %if %{use_systemd} mkdir -p %{buildroot}%{_unitdir} install -p -m 0644 %{SOURCE1} %{buildroot}%{_unitdir} %else mkdir -p %{buildroot}%{_sysconfdir}/rc.d/init.d install -p -m 0755 pptpd.init %{buildroot}%{_sysconfdir}/rc.d/init.d/pptpd %endif install -p -m 0644 samples/pptpd.conf %{buildroot}%{_sysconfdir}/pptpd.conf install -p -m 0644 samples/options.pptpd %{buildroot}%{_sysconfdir}/ppp/options.pptpd install -p -m 0755 tools/vpnuser %{buildroot}%{_bindir}/vpnuser install -p -m 0755 tools/vpnstats.pl %{buildroot}%{_bindir}/vpnstats.pl install -p -m 0755 tools/pptp-portslave %{buildroot}%{_sbindir}/pptp-portslave %post %if %{use_systemd} /bin/systemctl daemon-reload &>/dev/null || : %endif %if ! %{use_systemd} || 0%{?preset_support:1} if [ $1 -eq 1 ]; then # Initial installation %if ! %{use_systemd} /sbin/chkconfig --add pptpd || : %endif %if 0%{?preset_support:1} /bin/systemctl preset pptpd.service &>/dev/null || : %endif fi %endif %preun if [ $1 -eq 0 ]; then # Package removal, not upgrade %if %{use_systemd} /bin/systemctl --no-reload disable pptpd.service &>/dev/null || : /bin/systemctl stop pptpd.service &>/dev/null || : %else /sbin/service pptpd stop &>/dev/null || : /sbin/chkconfig --del pptpd || : %endif fi %postun %if %{use_systemd} /bin/systemctl daemon-reload &>/dev/null || : %endif if [ $1 -ge 1 ]; then # Package upgrade, not uninstall %if %{use_systemd} /bin/systemctl try-restart pptpd.service &>/dev/null || : %else /sbin/service pptpd condrestart &>/dev/null || : %endif fi %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING README* TODO ChangeLog samples/ %{_sbindir}/pptpd %{_sbindir}/pptpctrl %{_sbindir}/pptp-portslave %{!?_without_bcrelay:%{_sbindir}/bcrelay} %{_libdir}/pptpd/pptpd-logwtmp.so %{_bindir}/vpnuser %{_bindir}/vpnstats.pl %{_mandir}/man5/pptpd.conf.5* %{!?_without_bcrelay:%{_mandir}/man8/bcrelay.8*} %{_mandir}/man8/pptpd.8* %{_mandir}/man8/pptpctrl.8* %if %{use_systemd} %{_unitdir}/pptpd.service %else %{_sysconfdir}/rc.d/init.d/pptpd %endif %config(noreplace) %{_sysconfdir}/pptpd.conf %config(noreplace) %{_sysconfdir}/ppp/options.pptpd %changelog * Wed Oct 23 2013 Paul Howarth - 1.4.0-1 - Update to 1.4.0 - Change GPL license FSF addresses - Clean up unused return value warnings - Don't leak memory on duplicate packet - Clean up several compiler warnings - Use pppd.h from ppp-dev - Do not drop connection on ENOBUFS - Fix binary trash when launching pppd - Add remotenumber support - Catch missing EOL at EOF - Add bcrelay manual page - Fix segfault on invalid IP range - Add support for VRFs through libvrf - Fix implementation of IDLE_WAIT - Fix compilation with uclibc with legacy support disabled - Avoid ipparam and logwtmp on BSD - Compiler fix for pptp_gre_header - Suppress "ignored a SET LINK INFO packet with real ACCMs" - Add missing logwtmp option on pptpd.conf manual page - Fix reordering some more - Do a hardened build for F-16, EL-7 onwards - Don't use macros for commands - Use %%{_sysconfdir} rather than hard-coding /etc - Try harder to preserve upstream timestamps - Drop check for outdated executable in %%post - Add systemd support where appropriate * Fri May 21 2010 Paul Howarth - 1.3.4-2 - Define RPM macros in global scope - Clarify license as GPL version 2 or later - Add betabuild suffix to dist tag * Fri Apr 20 2007 Paul Howarth - 1.3.4-1.1 - Rebuild against ppp 2.4.4 * Fri Apr 20 2007 Paul Howarth - 1.3.4-1 - Update to 1.3.4 - Use downloads.sf.net URL instead of dl.sf.net for source - Use "install -p" to try to preserve upstream timestamps - Remove bsdppp and slirp build options (package requires standard ppp) - Remove ipalloc build option (not supported by upstream configure script) - Use enable/disable rather than with/without for bcrelay configure option * Wed Jan 10 2007 Paul Howarth - 1.3.3-2 - Use file-based build dependency on /usr/include/tcpd.h instead of tcp_wrappers package, since some distributions have this file in tcp_wrappers-devel - Set VERSION using pppd's patchlevel.h rather than using the constant "2.4.3" - Buildrequire /usr/include/pppd/patchlevel.h (recent-ish pppd) - Add dependency on the exact version of ppp that pptpd is built against - Use tabs rather than spaces for indentation * Tue Sep 5 2006 Paul Howarth - 1.3.3-1 - Update to 1.3.3 - Add dist tag - Add %%postun scriptlet dependency for /sbin/service - Fix doc permissions * Fri Mar 31 2006 Paul Howarth - 1.3.1-1 - Update to 1.3.1 * Fri Mar 31 2006 Paul Howarth - 1.3.0-1 - update to 1.3.0 - remove redundant macro definitions - change Group: to one listed in rpm's GROUPS file - use full URL for source - simplify conditional build code - use macros for destination directories - honour %%{optflags} - general spec file cleanup - initscript updates: don't enable the service by default add reload and condrestart options - condrestart service on package upgrade - fix build on x86_64 - add buildreq tcp_wrappers * Fri Feb 18 2005 James Cameron - fix to use ppp 2.4.3 for plugin * Thu Nov 11 2004 James Cameron - adjust for building on Red Hat Enterprise Linux, per Charlie Brady - remove vpnstats, superceded by vpnstats.pl * Fri May 21 2004 James Cameron - adjust for packaging naming and test * Fri Apr 23 2004 James Cameron - include vpnwho.pl * Thu Apr 22 2004 James Cameron - change description wording - change URL for upstream - release first candidate for 1.2.0 * Fri Jul 18 2003 R. de Vroede - Check the ChangeLog files.