diff --git a/.cvsignore b/.cvsignore index e69de29..1d797e2 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +tinc-1.0.11.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..d5e09f6 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +tinc-1_0_11-1_fc12:F-13:tinc-1.0.11-1.fc12.src.rpm:1267046084 diff --git a/sources b/sources index e69de29..dd95a56 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +ee0b1a3366c6e379cae34be6fa5dcb15 tinc-1.0.11.tar.gz diff --git a/tinc.spec b/tinc.spec new file mode 100644 index 0000000..60e920f --- /dev/null +++ b/tinc.spec @@ -0,0 +1,75 @@ +Name: tinc +Version: 1.0.11 +Release: 1%{?dist} +Summary: A virtual private network daemon + +Group: Applications/Internet +License: GPLv2+ +URL: http://www.tinc-vpn.org/ +Source0: http://www.tinc-vpn.org/packages/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: openssl-devel +BuildRequires: lzo-devel + +Requires(post): info +Requires(preun): info + + +%description +tinc is a Virtual Private Network (VPN) daemon that uses tunnelling +and encryption to create a secure private network between hosts on +the Internet. Because the tunnel appears to the IP level network +code as a normal network device, there is no need to adapt any +existing software. This tunnelling allows VPN sites to share +information with each other over the Internet without exposing any +information to others. + + +%prep +%setup -q + + +%build +%configure +make %{?_smp_mflags} + + +%install +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} INSTALL="install -p" +rm -f %{buildroot}%{_infodir}/dir + + +%clean +rm -rf %{buildroot} + + +%post +/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || : + + +%preun +if [ $1 = 0 ] ; then +/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || : +fi + + +%files +%defattr(-,root,root,-) +%doc AUTHORS COPYING COPYING.README NEWS README THANKS doc/sample* doc/*.tex +%{_mandir}/man*/%{name}*.* +%{_infodir}/%{name}.info.gz +%{_sbindir}/%{name}d + + +%changelog +* Mon Dec 07 2009 Fabian Affolter - 1.0.11-1 +- Updated to new upstream version 1.0.11 + +* Thu Oct 22 2009 Fabian Affolter - 1.0.10-1 +- Removed translation stuff +- Updated to new upstream version 1.0.10 + +* Mon Dec 29 2008 Fabian Affolter - 1.0.9-1 +- Initial package for Fedora