auto-import pilot-link-0.9.5-13 from pilot-link-0.9.5-13.src.rpm
This commit is contained in:
parent
a7d1ce30fa
commit
e9228e8c1a
@ -1 +1 @@
|
|||||||
pilot-link-0.9.5.tar.bz2
|
pilot-link.0.9.5.tar.bz2
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
Summary: File transfer utilities between Linux and PalmPilots.
|
Summary: File transfer utilities between Linux and PalmPilots.
|
||||||
Name: pilot-link
|
Name: pilot-link
|
||||||
Version: 0.9.5
|
Version: 0.9.5
|
||||||
Release: 10
|
Release: 13
|
||||||
Source: ftp://ryeham.ee.ryerson.ca/pub/PalmOS/pilot-link-%{version}.tar.bz2
|
Source: http://www.gnu-designs.com/pilot-link/pilot-link.%{version}.tar.bz2
|
||||||
Patch0: pilot-link-perl-install.patch
|
Url: http://www.gnu-designs.com/pilot-link/
|
||||||
Patch1: pilot-link.perl.patch
|
Patch: pilot-link-0.9.5-ack.patch
|
||||||
Patch3: pilot-link-pixdir.patch
|
Patch1: pilot-link-0.9.5-fhs.patch
|
||||||
Patch4: pilot-link-0.9.5-misc.patch
|
Patch2: pilot-link-0.9.5-gcc.patch
|
||||||
Patch5: pilot-link-0.9.5-ack.patch
|
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/Communications
|
Group: Applications/Communications
|
||||||
BuildRoot: %{_tmppath}/%{name}-root
|
BuildRoot: %{_tmppath}/%{name}-root
|
||||||
|
BuildPrereq: perl
|
||||||
ExcludeArch: s390 s390x
|
ExcludeArch: s390 s390x
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -39,25 +39,32 @@ If you want to develop PalmPilot synchronizing applications, you'll
|
|||||||
need to install pilot-link-devel.
|
need to install pilot-link-devel.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n pilot-link
|
%setup -q -n %{name}.%{version}
|
||||||
%patch3 -p1 -b .pixdir
|
%patch -p1 -b .ack
|
||||||
%patch4 -p1 -b .misc
|
%patch1 -p1 -b .fhs
|
||||||
%patch5 -p1 -b .ack
|
%patch2 -p1 -b .gcc3
|
||||||
|
|
||||||
%build
|
%build
|
||||||
libtoolize -f
|
cp -f /usr/share/libtool/config.* scripts/
|
||||||
aclocal
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{_prefix}
|
||||||
autoconf
|
|
||||||
%configure
|
|
||||||
make
|
make
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%makeinstall \
|
make install prefix=$RPM_BUILD_ROOT%{_prefix} \
|
||||||
mandir1=$RPM_BUILD_ROOT/%{_mandir}/man1 \
|
mandir1=$RPM_BUILD_ROOT/%{_mandir}/man1 \
|
||||||
mandir7=$RPM_BUILD_ROOT/%{_mandir}/man7
|
mandir7=$RPM_BUILD_ROOT/%{_mandir}/man7
|
||||||
|
|
||||||
|
if test -f tools/Perl5/Makefile.PL ; then
|
||||||
|
cd tools/Perl5
|
||||||
|
perl -pi -e 's|^\$libdir =.*|\$libdir = "%{buildroot}%{_libdir}";|g' Makefile.PL
|
||||||
|
perl Makefile.PL
|
||||||
|
make
|
||||||
|
make install PREFIX=%{buildroot}%{_prefix}
|
||||||
|
rm -f %{buildroot}/usr/lib/perl5/site_perl/*/*/*/PDA/Pilot/.packlist
|
||||||
|
fi
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
@ -68,9 +75,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc COPYING ChangeLog README TODO
|
%doc COPYING ChangeLog README TODO
|
||||||
%attr(755,root,root) %{_libdir}/libpisock.so.3.0.1
|
%{_libdir}/libpisock.so.*
|
||||||
%{_libdir}/libpisock.so.3
|
|
||||||
%{_libdir}/pilot-link
|
%{_libdir}/pilot-link
|
||||||
|
%{_libdir}/perl5/site_perl/*/*/*/PDA
|
||||||
|
%{_libdir}/perl5/site_perl/*/*/PDA
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_mandir}/man?/*
|
%{_mandir}/man?/*
|
||||||
|
|
||||||
@ -83,11 +91,22 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_includedir}/*
|
%{_includedir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Mar 26 2002 Tim Powers <timp@redhat.com>
|
* Thu Feb 21 2002 Jeremy Katz <katzj@redhat.com> 0.9.5-13
|
||||||
- libtoolize
|
- free trip through the build system
|
||||||
|
|
||||||
* Wed Sep 12 2001 Tim Powers <timp@redhat.com>
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 0.9.5-12
|
||||||
- rebuild with new gcc and binutils
|
- automated rebuild
|
||||||
|
|
||||||
|
* Mon Dec 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.9.5-11
|
||||||
|
- fix build with gcc 3.1
|
||||||
|
|
||||||
|
* Mon Nov 12 2001 Than Ngo <than@redhat.com> 0.9.5-10
|
||||||
|
- add patch for building against gcc 3
|
||||||
|
|
||||||
|
* Thu Sep 20 2001 Than Ngo <than@redhat.com> 0.9.5-9
|
||||||
|
- update to 0.9.5 release (bug #53430)
|
||||||
|
- fix bug #53807
|
||||||
|
- add Url
|
||||||
|
|
||||||
* Fri Aug 10 2001 Than Ngo <than@redhat.com>
|
* Fri Aug 10 2001 Than Ngo <than@redhat.com>
|
||||||
- add epoch (bug #51429)
|
- add epoch (bug #51429)
|
||||||
|
Loading…
Reference in New Issue
Block a user