4e9dc6e271d887de91422fb2ce3dd52bda4b1694
[openwrt/svn-archive/archive.git] / Xorg / xorg / lib / libXxf86vm / 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:=libXxf86vm
12 PKG_RELEASE:=4
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:=304d37bd0a10d9b58aa9b64469ad73e5
19 PKG_FIXUP:=libtool
20 PKG_INSTALL:=1
21 PKG_BUILD_DEPENDS:=xproto xextproto xf86vidmodeproto
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Build/Configure
26 $(call Build/Configure/Default, \
27 --enable-malloc0returnsnull \
28 )
29 endef
30
31 define Package/libXxf86vm
32 SECTION:=xorg-lib
33 CATEGORY:=Xorg
34 SUBMENU:=lib
35 DEPENDS:=+libX11 +libXext
36 TITLE:=libXxf86vm
37 URL:=http://xorg.freedesktop.org/
38 endef
39
40 define Build/InstallDev
41 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
42 $(CP) \
43 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
44 $(1)/usr/lib/
45 $(INSTALL_DATA) \
46 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
47 $(1)/usr/lib/pkgconfig/
48 endef
49
50 define Package/libXxf86vm/install
51 $(INSTALL_DIR) $(1)/usr/lib
52 $(CP) \
53 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
54 $(1)/usr/lib/
55 endef
56
57 $(eval $(call BuildPackage,libXxf86vm))