libgphoto2: update to 2.4.13.

This commit is contained in:
Juan RP 2012-03-09 01:13:02 +01:00
parent a4175094d2
commit 309f829280
2 changed files with 15 additions and 10 deletions

View file

@ -9,8 +9,7 @@ Add_dependency run libexif-devel
Add_dependency run libusb-compat-devel Add_dependency run libusb-compat-devel
Add_dependency run libgphoto2 Add_dependency run libgphoto2
do_install() do_install() {
{
mkdir -p ${DESTDIR}/usr/lib ${DESTDIR}/usr/share/man mkdir -p ${DESTDIR}/usr/lib ${DESTDIR}/usr/share/man
mv ${SRCPKGDESTDIR}/usr/{bin,include} ${DESTDIR}/usr mv ${SRCPKGDESTDIR}/usr/{bin,include} ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/pkgconfig ${DESTDIR}/usr/lib mv ${SRCPKGDESTDIR}/usr/lib/pkgconfig ${DESTDIR}/usr/lib

View file

@ -1,12 +1,14 @@
# Template file for 'libgphoto2' # Template file for 'libgphoto2'
pkgname=libgphoto2 pkgname=libgphoto2
version=2.4.11 version=2.4.13
homepage="http://www.gphoto.org"
distfiles="${SOURCEFORGE_SITE}/gphoto/$pkgname-$version.tar.bz2" distfiles="${SOURCEFORGE_SITE}/gphoto/$pkgname-$version.tar.bz2"
build_style=gnu-configure build_style=gnu-configure
configure_args="--disable-rpath udevscriptdir=/lib/udev" configure_args="--disable-rpath udevscriptdir=/lib/udev"
short_desc="Digital camera access library" short_desc="Digital camera access library"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
checksum=5116bbacea57dfe22585e8e939ea30b5fb99fe08de526002788c84e37105c423 license="GPL-2"
checksum=01bce1c3f89fbaca571cb2b5be1f2980a0095c5f6516e33a8273d65b9dc8e70e
long_desc=" long_desc="
libgphoto2 is the core library designed to allow access to digital libgphoto2 is the core library designed to allow access to digital
camera by external programs. Here is an overview of the global camera by external programs. Here is an overview of the global
@ -28,13 +30,17 @@ Add_dependency build jpeg-devel
Add_dependency build gd-devel Add_dependency build gd-devel
Add_dependency build libexif-devel Add_dependency build libexif-devel
post_install() post_install() {
{ # Remove unused udev helper
install -d ${DESTDIR}/lib/udev/rules.d rm -rf ${pkgdir}/usr/lib/udev
vmkdir lib/udev/rules.d
LD_LIBRARY_PATH="${DESTDIR}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" \ LD_LIBRARY_PATH="${DESTDIR}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" \
CAMLIBS="${DESTDIR}/usr/lib/libgphoto2/${version}" \ CAMLIBS="${DESTDIR}/usr/lib/libgphoto2/${version}" \
"${DESTDIR}/usr/lib/libgphoto2/print-camera-list" \ "${DESTDIR}/usr/lib/libgphoto2/print-camera-list" udev-rules version 136 > \
udev-rules version 136 group plugdev mode 0660 > \ "${DESTDIR}/lib/udev/rules.d/40-gphoto.rules"
"${DESTDIR}/lib/udev/rules.d/54-gphoto.rules"
# Remove recursive symlink
rm -f ${DESTDIR}/usr/include/gphoto2/gphoto2
install -d ${DESTDIR}/lib/udev/rules.d
} }