blob: 5e21259e799dfa3ad18cbf77601a041a614f7010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#
# Copyright (C) 2009-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=xfconf
PKG_VERSION:=4.6.1
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://archive.xfce.org/src/xfce/xfconf/4.6
PKG_MD5SUM:=d4d3018767ea9eb4b57cc57d4038023b
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/nls.mk
TARGET_LDFLAGS+= \
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
-Wl,-rpath=/usr/lib
define Package/libxfconf
SECTION:=xorg-app
CATEGORY:=Xorg
SUBMENU:=libraries
TITLE:=libxfconf
DEPENDS:=+libxfce4util +dbus +libdbus-glib +gtk2 +dbus-launch-x
endef
define Package/xfconf
SECTION:=xorg-app
CATEGORY:=Xorg
SUBMENU:=app
TITLE:=xfconf
DEPENDS:=+libxfconf
endef
define Build/Configure
$(call Build/Configure/Default, \
--libexecdir=/usr/lib/xfconf \
)
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include}
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/*.{so*,la,a} \
$(1)/usr/lib/
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
$(1)/usr/lib/pkgconfig/
$(CP) \
$(PKG_INSTALL_DIR)/usr/include/* \
$(1)/usr/include/
endef
define Package/libxfconf/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
$(1)/usr/lib/
endef
define Package/xfconf/install
$(INSTALL_DIR) $(1)/usr/bin/
$(INSTALL_BIN) \
$(PKG_INSTALL_DIR)/usr/bin/* \
$(1)/usr/bin/
$(INSTALL_DIR) $(1)/usr/lib/xfconf/
$(INSTALL_BIN) \
$(PKG_INSTALL_DIR)/usr/lib/xfconf/xfconfd \
$(1)/usr/lib/xfconf/
$(INSTALL_DIR) $(1)/usr/share/dbus-1/services
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/share/dbus-1/services/* \
$(1)/usr/share/dbus-1/services/
endef
$(eval $(call BuildPackage,libxfconf))
$(eval $(call BuildPackage,xfconf))
|