- update to Xorg X11R7.4 and reorganization of the xorg-section
[packages.git] / Xorg / lib / xine-lib / Makefile
1
2 # Copyright (C) 2006 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:=xine-lib
12 PKG_VERSION:=1.1.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://downloads.sourceforge.net/xine/
17 PKG_FIXUP:=libtool
18
19 include $(INCLUDE_DIR)/package.mk
20
21 CONFIGURE_ARGS_XTRA+=--enable-static --disable-vcd --disable-imagemagick
22
23 define Package/xine-lib
24   SECTION:=xorg-lib
25   CATEGORY:=Xorg
26   SUBMENU:=libraries
27   TITLE:=xine libraries
28   DEPENDS:=+libX11 +alsa-lib
29 endef
30
31 define Build/Configure
32         (cd $(PKG_BUILD_DIR)/$(CONFIGURE_PATH); \
33                 if [ -x $(CONFIGURE_CMD) ]; then \
34                         $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/ && \
35                         $(CONFIGURE_VARS) \
36                         $(CONFIGURE_CMD) \
37                         $(CONFIGURE_ARGS_XTRA) \
38                         $(CONFIGURE_ARGS) ;\
39                 fi \
40         )
41 endef
42
43 define Build/Compile
44         $(MAKE) -C $(PKG_BUILD_DIR)/ all install DESTDIR=$(PKG_INSTALL_DIR)
45 endef
46
47 define Build/InstallDev
48         $(INSTALL_DIR) $(1)
49         $(CP) $(PKG_INSTALL_DIR)/* $(1)/
50         $(SED) 's,-I$$$${prefix}/include,-I$(STAGING_DIR)/usr/include/,g' $(1)/usr/bin/xine-config 
51         $(SED) 's,-L$$$${exec_prefix}/lib,-L$(STAGING_DIR)/usr/lib/,g' $(1)/usr/bin/xine-config
52         $(INSTALL_DIR) $(2)/bin
53         mv $(1)/usr/bin/xine-config $(2)/bin
54 endef
55
56 define Package/xine-lib/install
57         $(INSTALL_DIR) $(1)/usr/lib
58         $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*so* $(1)/usr/lib/
59 endef
60
61 $(eval $(call BuildPackage,xine-lib))