206 lines
6.4 KiB
RPMSpec
206 lines
6.4 KiB
RPMSpec
Summary: Library for accessing digital cameras
|
|
Name: libgphoto2
|
|
Version: 2.4.3
|
|
Release: 1%{?dist}
|
|
# GPLV2+ for the main lib (due to exif.c) and most plugins, some plugins GPLv2
|
|
License: GPLv2+ and GPLv2
|
|
Group: Development/Libraries
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
Source0: http://downloads.sourceforge.net/gphoto/libgphoto2-%{version}.tar.bz2
|
|
Patch1: gphoto2-pkgcfg.patch
|
|
Patch2: gphoto2-storage.patch
|
|
Patch3: gphoto2-ixany.patch
|
|
Patch4: gphoto2-maxentries.patch
|
|
Url: http://www.gphoto.org/
|
|
Requires: lockdev
|
|
BuildRequires: libusb-devel >= 0.1.5
|
|
BuildRequires: lockdev-devel
|
|
BuildRequires: libexif-devel
|
|
BuildRequires: libjpeg-devel
|
|
BuildRequires: pkgconfig, sharutils
|
|
BuildRequires: libtool-ltdl-devel, popt-devel
|
|
# we run autoreconf:
|
|
BuildRequires: autoconf, automake, libtool, gettext-devel
|
|
Obsoletes: gphoto2 < 2.4.0-11
|
|
Obsoletes: gphoto2-devel < 2.4.0-11
|
|
|
|
%description
|
|
libgphoto2 is a library that can be used by applications to access
|
|
various digital cameras. libgphoto2 itself is not a GUI application,
|
|
opposed to gphoto. There are GUI frontends for the gphoto2 library,
|
|
however, such as gtkam for example.
|
|
|
|
%package devel
|
|
Summary: Headers and links to compile against the libgphoto2 library
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: pkgconfig, libusb-devel >= 0.1.5, libexif-devel
|
|
Obsoletes: gphoto2 < 2.4.0-11
|
|
Obsoletes: gphoto2-devel < 2.4.0-11
|
|
Provides: gphoto2-devel = %{version}-%{release}
|
|
|
|
%description devel
|
|
libgphoto2 is a library that can be used by applications to access
|
|
various digital cameras. libgphoto2 itself is not a GUI application,
|
|
opposed to gphoto. There are GUI frontends for the gphoto2 library,
|
|
however, such as gtkam for example.
|
|
|
|
This package contains files needed to compile applications that
|
|
use libgphoto2.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1 -p1 -b .pkgcfg
|
|
%patch2 -p1 -b .storage
|
|
%patch3 -p1 -b .ixany
|
|
%patch4 -p1 -b .maxentries
|
|
|
|
for i in AUTHORS COPYING libgphoto2_port/AUTHORS libgphoto2_port/COPYING.LIB `find -name 'README.*'`; do
|
|
mv ${i} ${i}.old
|
|
iconv -f ISO-8859-1 -t UTF-8 < ${i}.old > ${i}
|
|
touch -r ${i}.old ${i} || :
|
|
rm -f ${i}.old
|
|
done
|
|
|
|
# FIXME: These .pc.in files aren't actually being installed?
|
|
cat > gphoto2.pc.in << \EOF
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
includedir=@includedir@
|
|
VERSION=@VERSION@
|
|
|
|
Name: gphoto2
|
|
Description: Library for easy access to digital cameras
|
|
Requires:
|
|
Version: @VERSION@
|
|
Libs: -L${libdir} -lgphoto2 -lgphoto2_port -lm
|
|
Cflags: -I${includedir} -I${includedir}/gphoto2
|
|
EOF
|
|
sed 's/Name: gphoto2/Name: gphoto2-port/' < gphoto2.pc.in > gphoto2-port.pc.in
|
|
|
|
%build
|
|
# Patch6 changes configure.ac, so we run autoreconf.
|
|
# This also installs our patched libtool.m4, avoiding the rpath problem.
|
|
# But fix a typo first:
|
|
sed -i 's/\(AC_SUBST([^,]*\)}/\1/' {m4m,libgphoto2_port/m4}/gp-documentation.m4
|
|
sed -i 's/\(m4_pattern_\)disallow/\1forbid/g' {m4m,libgphoto2_port/m4}/gp-check-library.m4
|
|
autoreconf -i --force
|
|
export CFLAGS=$RPM_OPT_FLAGS
|
|
%configure \
|
|
--with-drivers=all \
|
|
--with-doc-dir=%{_docdir}/%{name} \
|
|
--disable-static \
|
|
--disable-rpath \
|
|
--without-aalib
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
rm -rf "${RPM_BUILD_ROOT}"
|
|
|
|
make mandir=%{_mandir} DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
pushd packaging/linux-hotplug/
|
|
install -d -m755 %{buildroot}/usr/share/hal/fdi/information/20thirdparty/
|
|
export LIBDIR=$RPM_BUILD_ROOT%{_libdir}
|
|
export CAMLIBS=$RPM_BUILD_ROOT%{_libdir}/%{name}/%{version}
|
|
export LD_LIBRARY_PATH=$RPM_BUILD_ROOT%{_libdir}
|
|
$RPM_BUILD_ROOT%{_libdir}/%{name}/print-camera-list hal-fdi | \
|
|
grep -v "<!-- This file was generated" > $RPM_BUILD_ROOT/%{_datadir}/hal/fdi/information/20thirdparty/10-camera-libgphoto2.fdi
|
|
popd
|
|
|
|
rm -rf %{buildroot}%{_libdir}/libgphoto2/*/*a
|
|
rm -rf %{buildroot}%{_libdir}/libgphoto2_port/*/*a
|
|
rm -rf %{buildroot}%{_libdir}/*.a
|
|
rm -rf %{buildroot}%{_libdir}/*.la
|
|
|
|
%find_lang %{name}-2
|
|
%find_lang %{name}_port-0
|
|
cat libgphoto2*.lang >> %{name}.lang
|
|
|
|
%clean
|
|
rm -rf "${RPM_BUILD_ROOT}"
|
|
|
|
%files -f %{name}.lang
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS COPYING README NEWS
|
|
%dir %{_libdir}/libgphoto2_port
|
|
%dir %{_libdir}/libgphoto2_port/*
|
|
%dir %{_libdir}/libgphoto2
|
|
%dir %{_libdir}/libgphoto2/*
|
|
%{_libdir}/libgphoto2_port/*/*.so
|
|
%{_libdir}/libgphoto2/*/*.so
|
|
%{_libdir}/*.so.*
|
|
%{_datadir}/hal/fdi/information/20thirdparty/10-camera-libgphoto2.fdi
|
|
%{_libdir}/udev/check-ptp-camera
|
|
%{_libdir}/udev/check-mtp-device
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%doc %{_docdir}/%{name}
|
|
%{_datadir}/libgphoto2
|
|
%{_bindir}/gphoto2-config*
|
|
%{_bindir}/gphoto2-port-config
|
|
%{_includedir}/gphoto2
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Mon Oct 20 2008 Jindrich Novy <jnovy@redhat.com> 2.4.3-1
|
|
- update to libgphoto2-2.4.3
|
|
|
|
* Tue Sep 23 2008 Jindrich Novy <jnovy@redhat.com> 2.4.2-2
|
|
- convert all shipped docs to UTF-8
|
|
|
|
* Fri Aug 01 2008 Jindrich Novy <jnovy@redhat.com> 2.4.2-1
|
|
- update to 2.4.2
|
|
- contains many fixes in the Canon camera communication interface
|
|
- drop build patch, no more needed
|
|
|
|
* Mon Jul 07 2008 Jindrich Novy <jnovy@redhat.com> 2.4.1-6
|
|
- increase maximal number of entries in the camera list (#454245)
|
|
|
|
* Fri Jun 20 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.4.1-5
|
|
- fix pkgcfg patch to match actual .pc file names (fixes kdegraphics build)
|
|
|
|
* Thu Jun 12 2008 Jindrich Novy <jnovy@redhat.com> 2.4.1-3
|
|
- libgphoto2-devel requires libusb-devel and libexif-devel for
|
|
pkgconfig
|
|
|
|
* Wed Jun 04 2008 Jindrich Novy <jnovy@redhat.com> 2.4.1-2
|
|
- fix obsoletes
|
|
- workaround problem with coreutils-6.12 and RHEL5-xen kernels
|
|
what prevents libgphoto2 koji build
|
|
|
|
* Mon Jun 02 2008 Jindrich Novy <jnovy@redhat.com> 2.4.1-1
|
|
- update to 2.4.1 (#443515, #436138)
|
|
|
|
* Thu May 29 2008 Stepan Kasal <skasal@redhat.com> 2.4.0-3
|
|
- drop gphoto2-norpath.patch
|
|
- use quoted here-document in %%prep
|
|
- fix some typos in m4 sources
|
|
- run autoreconf to get autotools right
|
|
|
|
* Mon Apr 21 2008 Jindrich Novy <jnovy@redhat.com> 2.4.0-2
|
|
- apply patch to fix build with libusb
|
|
|
|
* Fri Apr 18 2008 Jindrich Novy <jnovy@redhat.com> 2.4.0-1
|
|
- backport patch from upstream to avoid segfault when
|
|
data phase is skipped for certain devices (#435413)
|
|
- initial build
|
|
|
|
* Mon Apr 14 2008 Jindrich Novy <jnovy@redhat.com> 2.4.0-0.2
|
|
- review fixes, thanks to Hans de Goede: (#437285)
|
|
- remove unused macro
|
|
- don't exclude s390/s390x
|
|
- preserve timestamps
|
|
- fix license
|
|
|
|
* Thu Mar 13 2008 Jindrich Novy <jnovy@redhat.com> 2.4.0-0.1
|
|
- initial libgphoto2 packaging
|