e96cf04b3abec85a0e69ca3d0b735a6e0270ae8f
[openwrt/svn-archive/archive.git] / Xorg / xorg / lib / libXdmcp / Makefile
1 #
2 # Copyright (C) 2007-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 # blogic@openwrt.org
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=libXdmcp
12 PKG_RELEASE:=3
13 PKG_VERSION:=1.0.2
14
15 PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.4/src/lib/
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
18 PKG_MD5SUM:=10facf2bc7cbd5e5c1a698b8a210a582
19 PKG_FIXUP:=libtool
20 PKG_INSTALL:=1
21 PKG_BUILD_DEPENDS:=xproto
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libXdmcp
26 SECTION:=xorg-lib
27 CATEGORY:=Xorg
28 SUBMENU:=lib
29 TITLE:=libXdmcp
30 URL:=http://xorg.freedesktop.org/
31 endef
32
33 define Build/InstallDev
34 $(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11}
35 $(INSTALL_DATA) \
36 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
37 $(1)/usr/lib/
38 $(INSTALL_DATA) \
39 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
40 $(1)/usr/lib/pkgconfig/
41 $(INSTALL_DATA) \
42 $(PKG_INSTALL_DIR)/usr/include/X11/* \
43 $(1)/usr/include/X11/
44 endef
45
46 define Package/libXdmcp/install
47 $(INSTALL_DIR) $(1)/usr/lib
48 $(INSTALL_DATA) \
49 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
50 $(1)/usr/lib/
51 endef
52
53 $(eval $(call BuildPackage,libXdmcp))