massive Makefile cleanup, add missing 'svn:keywords' property
[packages.git] / multimedia / gphoto2 / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=gphoto2
12 PKG_VERSION:=2.2.0
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=@SF/gphoto
17 PKG_MD5SUM:=f5c1f83185db598b4ca52889964a5e84
18 PKG_CAT:=bzcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/gphoto2
26   SECTION:=multimedia
27   CATEGORY:=Multimedia
28   DEPENDS:=+libexif +libgphoto2 +libltdl +libpopt +libpthread
29   TITLE:=Gphoto Digital Camera Control
30   DESCRIPTION:=For downloading and controlling digital cameras
31   URL:=http://www.gphoto.org/
32 endef
33
34 define Build/Configure
35         $(call Build/Configure/Default, \
36                 --without-libiconv-prefix \
37                 --without-libintl-prefix \
38                 , \
39                 LIBGPHOTO2_CFLAGS="$$$$CFLAGS -I$(STAGING_DIR)/usr/include/gphoto2 $$$$CPPFLAGS" \
40                 LIBGPHOTO2_LIBS="$$$$LDFLAGS -lgphoto2 -lgphoto2_port -lltdl" \
41                 LIBEXIF_CFLAGS="$$$$CFLAGS $$$$CPPFLAGS" \
42                 LIBEXIF_LIBS="$$$$LDFLAGS -lexif" \
43                 POPT_CFLAGS="$$$$CFLAGS $$$$CPPFLAGS" \
44                 POPT_LIBS="$$$$LDFLAGS -lpopt" \
45         )
46 endef
47
48 define Build/Compile
49         $(MAKE) -C $(PKG_BUILD_DIR) \
50                 DESTDIR="$(PKG_INSTALL_DIR)" \
51                 all install
52 endef
53
54 define Package/gphoto2/install
55         install -d -m0755 $(1)/usr/bin
56         $(CP) $(PKG_INSTALL_DIR)/usr/bin/gphoto2 $(1)/usr/bin/
57 endef
58
59
60 $(eval $(call BuildPackage,gphoto2))