123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- Summary: Point-to-Point Tunneling Protocol (PPTP) Client
- Summary(ja): Point-to-Point トンネリングプロトコル(PPTP)クライアント
- Name: pptp
- Version: 1.7.2
- Release: 1%{?_dist_release}
- Group: Applications/Internet
- License: GPLv2+
- URL: http://pptpclient.sourceforge.net/
- Source0: http://downloads.sf.net/pptpclient/pptp-%{version}.tar.gz
- Patch0: pptp-1.7.2-compat.patch
- Patch1: pptp-1.7.2-ip-path.patch
- Patch2: pptp-1.7.2-pptpsetup.patch
- Patch3: pptp-1.7.2-makedeps.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- Requires: ppp
- %description
- Client for the proprietary Microsoft Point-to-Point Tunneling
- Protocol, PPTP. Allows connection to a PPTP based VPN as used
- by employers and some cable and ADSL service providers.
- %prep
- %setup -q
- # Remove reference to stropts.h, not shipped in F9 onwards (applied upstream)
- %patch0 -p0 -b .compat
- # Make location of "ip" binary build-time configurable (applied upstream)
- %patch1 -p0 -b .ip-path
- # Retain permissions on /etc/ppp/chap-secrets (#492090, applied upstream)
- %patch2 -p0 -b .bz492090
- # Fix Makefile dependencies to support parallel make (applied upstream)
- %patch3 -p0 -b .makedeps
- %{__perl} -pi -e 's/install -o root -m 555 pptp/install -m 755 pptp/;' Makefile
- %build
- %{__make} %{?_smp_mflags} CFLAGS="-Wall %{optflags}" IP=/sbin/ip
- %install
- %{__rm} -rf %{buildroot}
- %{__make} DESTDIR=%{buildroot} install
- %{__install} -d -m 750 %{buildroot}%{_localstatedir}/run/pptp
- %clean
- %{__rm} -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc AUTHORS COPYING DEVELOPERS NEWS README TODO USING
- %doc ChangeLog Documentation/DESIGN.PPTP PROTOCOL-SECURITY
- %{_sbindir}/pptp
- %{_sbindir}/pptpsetup
- %{_mandir}/man8/pptp.8*
- %{_mandir}/man8/pptpsetup.8*
- %dir %attr(750,root,root) %{_localstatedir}/run/pptp/
- # /etc/ppp is hardcoded instead of using %{_sysconfdir}/ppp because the
- # Fedora ppp package hardcodes the directory name
- %config(noreplace) /etc/ppp/options.pptp
- %changelog
- * Tue May 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.2-1
- - initial build for Vine Linux
- * Wed Mar 25 2009 Paul Howarth <paul@city-fan.org> 1.7.2-5
- - Retain permissions on /etc/ppp/chap-secrets when using pptpsetup (#492090)
- - Use upstream versions of patches
- - Re-enable parallel build; Makefile dependencies now fixed
- - Use perl rather than sed to edit Makefile, for spec compatibility with
- ancient distro releases
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.2-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Mon May 19 2008 Paul Howarth <paul@city-fan.org> 1.7.2-3
- - Add dependency on /sbin/ip
- - Disable parallel make - object files are missing dependency on config.h
- * Mon May 19 2008 Paul Howarth <paul@city-fan.org> 1.7.2-2
- - Use /sbin/ip, not /bin/ip for routing
- * Wed May 14 2008 Paul Howarth <paul@city-fan.org> 1.7.2-1
- - Update to 1.7.2
- - New script and manpage: pptpsetup
- - Add patch to remove reference to stropts.h, not shipped in F9 onwards
- * Wed Feb 13 2008 Paul Howarth <paul@city-fan.org> 1.7.1-4
- - Rebuild with gcc 4.3.0 for Fedora 9
- * Fri Aug 24 2007 Paul Howarth <paul@city-fan.org> 1.7.1-3
- - Change download URL from df.sf.net to downloads.sf.net
- - Expand tabs in spec
- - Clarify license as GPL version 2 or later
- * Wed Aug 30 2006 Paul Howarth <paul@city-fan.org> 1.7.1-2
- - FE6 mass rebuild
- * Mon Feb 13 2006 Paul Howarth <paul@city-fan.org> 1.7.1-1
- - new upstream version 1.7.1 (fixes #166394)
- - include new document PROTOCOL-SECURITY
- - cosmetic change: replace variables with macros
- * Wed Aug 10 2005 Paul Howarth <paul@city-fan.org> 1.7.0-2
- - own directory %%{_localstatedir}/run/pptp
- * Thu Jul 28 2005 Paul Howarth <paul@city-fan.org> 1.7.0-1
- - new upstream version 1.7.0
- - remove patch, included upstream
- - edit Makefile to prevent attempted chown in %%install
- - remove redundant %%attr tag in %%files
- - honour $RPM_OPT_FLAGS
- - ensure directories have correct permissions
- * Fri May 27 2005 Paul Howarth <paul@city-fan.org> 1.6.0-5
- - bump and rebuild
- * Tue May 17 2005 Paul Howarth <paul@city-fan.org> 1.6.0-4
- - rebuild with dist tags
- * Tue May 10 2005 Paul Howarth <paul@city-fan.org> 1.6.0-3
- - fix URL for SOURCE0 not to point to a specific sf.net mirror
- * Tue May 10 2005 Paul Howarth <paul@city-fan.org> 1.6.0-2
- - Weed out documentation useful only to developers
- - Add dist tag
- - Use full URL for SOURCE0
- - Fix permissions on %%{_sbindir}/pptp
- * Fri May 6 2005 Paul Howarth <paul@city-fan.org> 1.6.0-1
- - First build for Fedora Extras, based on upstream spec file
|