Retain symlinks. $(INSTALL_*) copys the contens of a file, so if we want to keep
[openwrt/svn-archive/archive.git] / Xorg / xorg / lib / libXaw / 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:=libXaw
12 PKG_RELEASE:=4
13 PKG_VERSION:=1.0.4
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:=73671d8f1cf36fdd81395328cc3539c9
19 PKG_FIXUP:=libtool
20 PKG_INSTALL:=1
21 PKG_BUILD_DEPENDS:=xproto xextproto printproto
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libXaw
26 SECTION:=xorg-lib
27 CATEGORY:=Xorg
28 SUBMENU:=lib
29 DEPENDS:=+libX11 +libXext +libXt +libXmu +libXpm +libXau
30 TITLE:=libXaw
31 URL:=http://xorg.freedesktop.org/
32 endef
33
34 define Build/Configure
35 $(call Build/Configure/Default, \
36 --disable-xaw6 \
37 --disable-xaw8 \
38 )
39 endef
40
41 define Build/InstallDev
42 $(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/Xaw}
43 $(CP) \
44 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
45 $(1)/usr/lib/
46 $(INSTALL_DATA) \
47 $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
48 $(1)/usr/lib/pkgconfig/
49 $(INSTALL_DATA) \
50 $(PKG_INSTALL_DIR)/usr/include/X11/Xaw/* \
51 $(1)/usr/include/X11/Xaw/
52
53 $(INSTALL_DIR) $(1)/usr/share/aclocal
54 $(INSTALL_DATA) \
55 $(PKG_INSTALL_DIR)/usr/share/aclocal/* \
56 $(1)/usr/share/aclocal/
57 endef
58
59 define Package/libXaw/install
60 $(INSTALL_DIR) $(1)/usr/lib
61 $(CP) \
62 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
63 $(1)/usr/lib/
64 endef
65
66 $(eval $(call BuildPackage,libXaw))