bluez-utils: Fix dbus conf filename.
[openwrt/svn-archive/archive.git] / lang / python-gnome-desktop2 / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=gnome-python-desktop
11 PKG_VERSION:=2.16.0
12 PKG_RELEASE:=1
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
14 PKG_SOURCE_URL:=http://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.16/
15 PKG_FIXUP:=libtool
16
17 include $(INCLUDE_DIR)/package.mk
18
19 EXTRA_CFLAGS+= -I$(STAGING_DIR)/usr/lib/libintl/include/ -I$(STAGING_DIR)/usr/lib/libiconv/include/
20 EXTRA_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
21
22 define Package/gnome-python-desktop
23 SUBMENU:=Python
24 SECTION:=lang
25 CATEGORY:=Languages
26 TITLE:=Gnome Python Bindings
27 URL:=http://ftp.gnome.org/
28 DEPENDS:=+libwnck +python-gtk
29 endef
30
31 define Package/gnome-python-desktop/description
32 python bindings for gnome
33 endef
34
35 MAKE_FLAGS += DESTDIR=$(PKG_INSTALL_DIR) all install
36
37 define Build/InstallDev
38 $(INSTALL_DIR) $(1)
39 $(CP) $(PKG_INSTALL_DIR)/* $(1)
40 endef
41
42 define Package/gnome-python-desktop/install
43 $(INSTALL_DIR) $(1)
44 $(CP) $(PKG_INSTALL_DIR)/* $(1)
45 endef
46
47 $(eval $(call BuildPackage,gnome-python-desktop))