864f7bf1f337d7e8ce133e1a714067db0ffcf6d2
[openwrt/svn-archive/archive.git] / Xorg / xorg / lib / libXdamage / 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 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=libXdamage
12 PKG_RELEASE:=3
13 PKG_VERSION:=1.1.1
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:=ac0ce6b0063a9858c8f24ddb4c60487d
19 PKG_FIXUP:=libtool
20 PKG_INSTALL:=1
21 PKG_BUILD_DEPENDS:=xproto xextproto fixesproto damageproto
22
23 include $(INCLUDE_DIR)/package.mk
24
25
26 define Package/libXdamage
27 SECTION:=xorg-lib
28 CATEGORY:=Xorg
29 SUBMENU:=libraries
30 DEPENDS:=+libX11 +libXfixes
31 TITLE:=libXdamage
32 URL:=http://xorg.freedesktop.org/
33 endef
34
35 define Build/InstallDev
36 $(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/extensions}
37 $(CP) \
38 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
39 $(1)/usr/lib/
40 $(INSTALL_DATA) \
41 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
42 $(1)/usr/lib/pkgconfig/
43 $(INSTALL_DATA) \
44 $(PKG_INSTALL_DIR)/usr/include/X11/extensions/* \
45 $(1)/usr/include/X11/extensions/
46 endef
47
48 define Package/libXdamage/install
49 $(INSTALL_DIR) $(1)/usr/lib
50 $(CP) \
51 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
52 $(1)/usr/lib/
53 endef
54
55 $(eval $(call BuildPackage,libXdamage))