[package] update stress to 1.0.1 (#5813)
[openwrt/svn-archive/archive.git] / utils / dbus / Makefile
1 #
2 # Copyright (C) 2007-2009 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 # Make sure to also update the dbus-x package
11 PKG_NAME:=dbus
12 PKG_VERSION:=1.2.4.6permissive
13 PKG_RELEASE:=2
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://dbus.freedesktop.org/releases/dbus/
17 PKG_MD5SUM:=1a158fe326b078d1377a977121888496
18
19 PKG_FIXUP:=libtool
20 PKG_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 TARGET_LDFLAGS+= \
25 -Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
26 -Wl,-rpath=/usr/lib/
27
28 define Package/dbus/Default
29 SECTION:=utils
30 CATEGORY:=Utilities
31 TITLE:=Simple interprocess messaging system
32 URL:=http://dbus.freedesktop.org/
33 endef
34
35 define Package/dbus/Default/description
36 D-Bus is a message bus system, a simple way for applications to talk to one
37 another. In addition to interprocess communication, D-Bus helps coordinate
38 process lifecycle; it makes it simple and reliable to code a "single instance"
39 application or daemon, and to launch applications and daemons on demand when
40 their services are needed.
41 endef
42
43 define Package/libdbus
44 $(call Package/dbus/Default)
45 CATEGORY:=Libraries
46 TITLE+= (library)
47 endef
48
49 define Package/libdbus/Description
50 $(call Package/dbus/Default/description)
51 This package contains the D-Bus shared library.
52 endef
53
54 define Package/dbus
55 $(call Package/dbus/Default)
56 TITLE+= (daemon)
57 DEPENDS:= +libexpat +libdbus
58 endef
59
60 define Package/dbus/Description
61 $(call Package/dbus/Default/description)
62 This package contains the D-Bus daemon.
63 endef
64
65 define Package/dbus-utils
66 $(call Package/dbus/Default)
67 TITLE+= (utilities)
68 DEPENDS:= dbus
69 endef
70
71 define Package/dbus-utils/Description
72 $(call Package/dbus/Default/description)
73 This package contains D-Bus utilities.
74 endef
75
76
77 CONFIGURE_ARGS += \
78 --enable-shared \
79 --enable-static \
80 --disable-abstract-sockets \
81 --disable-ansi \
82 --disable-asserts \
83 --disable-console-owner-file \
84 --disable-doxygen-docs \
85 --disable-gcov \
86 --disable-selinux \
87 --disable-tests \
88 --disable-verbose-mode \
89 --disable-xml-docs \
90 --with-xml="expat" \
91 --with-dbus-user=root \
92 --with-dbus-daemondir="/usr/sbin" \
93 --with-system-socket="/var/run/dbus/system_bus_socket" \
94 --with-system-pid-file="/var/run/dbus.pid" \
95 --without-x \
96 --libexecdir=/usr/lib/dbus-1
97
98 CONFIGURE_VARS+= \
99 ac_cv_have_abstract_sockets="yes" \
100
101
102 define Build/InstallDev
103 $(INSTALL_DIR) $(1)/usr/include
104 $(CP) \
105 $(PKG_INSTALL_DIR)/usr/include/dbus-1.0 \
106 $(1)/usr/include/
107 $(INSTALL_DIR) $(1)/usr/lib/dbus-1.0/include/dbus/
108 $(INSTALL_DATA) \
109 $(PKG_INSTALL_DIR)/usr/lib/dbus-1.0/include/dbus/*.h \
110 $(1)/usr/lib/dbus-1.0/include/dbus/
111
112 $(INSTALL_DIR) $(1)/usr/lib
113 $(INSTALL_DATA) \
114 $(PKG_INSTALL_DIR)/usr/lib/libdbus-1.{so*,la,a} \
115 $(1)/usr/lib/
116 $(CP) \
117 $(PKG_INSTALL_DIR)/usr/lib/dbus-1.0 \
118 $(1)/usr/lib/
119 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
120 $(INSTALL_DATA) \
121 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/dbus-1.pc \
122 $(1)/usr/lib/pkgconfig/
123 endef
124
125 define Package/dbus/conffiles
126 /etc/dbus-1/session.conf
127 /etc/dbus-1/system.conf
128 endef
129
130 define Package/libdbus/install
131 $(INSTALL_DIR) $(1)/usr/lib
132 $(CP) \
133 $(PKG_INSTALL_DIR)/usr/lib/libdbus-1.so.* \
134 $(1)/usr/lib/
135 endef
136
137 define Package/dbus/install
138 $(INSTALL_DIR) $(1)/etc
139 $(CP) \
140 $(PKG_INSTALL_DIR)/etc/dbus-1 \
141 $(1)/etc/
142
143 $(INSTALL_DIR) $(1)/usr/lib/dbus-1
144 $(INSTALL_BIN) \
145 $(PKG_INSTALL_DIR)/usr/lib/dbus-1/dbus-daemon-launch-helper \
146 $(1)/usr/lib/dbus-1/
147
148 $(INSTALL_DIR) $(1)/usr/sbin
149 $(INSTALL_BIN) \
150 $(PKG_INSTALL_DIR)/usr/sbin/dbus-daemon \
151 $(1)/usr/sbin/
152
153 $(INSTALL_DIR) $(1)/usr/bin
154 $(INSTALL_BIN) \
155 $(PKG_INSTALL_DIR)/usr/bin/dbus-uuidgen \
156 $(1)/usr/bin/
157
158 $(INSTALL_BIN) \
159 $(PKG_INSTALL_DIR)/usr/bin/dbus-launch \
160 $(1)/usr/bin/dbus-launch.real
161 $(INSTALL_BIN) \
162 ./files/dbus-launch \
163 $(1)/usr/bin/
164
165 $(INSTALL_DIR) $(1)/etc/init.d
166 $(INSTALL_BIN) \
167 ./files/dbus.init \
168 $(1)/etc/init.d/dbus
169 endef
170
171 define Package/dbus-utils/install
172 $(INSTALL_DIR) $(1)/usr/bin
173 $(INSTALL_BIN) \
174 $(PKG_INSTALL_DIR)/usr/bin/dbus-{send,monitor,cleanup-sockets} \
175 $(1)/usr/bin/
176 endef
177
178 $(eval $(call BuildPackage,libdbus))
179 $(eval $(call BuildPackage,dbus))
180 $(eval $(call BuildPackage,dbus-utils))