From 0bcb24b1470837b66bcff064818546e678a8d94e Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 31 Dec 2009 13:48:27 +0000 Subject: [PATCH] [package] add missing libexslt depdency to xsltproc (#5922) git-svn-id: svn://svn.openwrt.org/openwrt/packages@18979 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- libs/libxslt/Makefile | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/libs/libxslt/Makefile b/libs/libxslt/Makefile index 4dce40224..13c085230 100644 --- a/libs/libxslt/Makefile +++ b/libs/libxslt/Makefile @@ -33,10 +33,22 @@ define Package/libxslt/description A library for XML transformation using XSLT. endef +define Package/libexslt + SECTION:=libs + CATEGORY:=Libraries + DEPENDS:=+libxslt + TITLE:=Gnome XSLT library Extention + URL:=http://xmlsoft.org/XSLT/EXSLT/ +endef + +define Package/libexslt/description + A extention for XSLT. +endef + define Package/xsltproc SECTION:=utils CATEGORY:=Utilities - DEPENDS:=+libxml2 +libxslt + DEPENDS:=+libxml2 +libxslt +libexslt TITLE:=Gnome XSLT xsltproc Utility URL:=http://xmlsoft.org/XSLT/ endef @@ -94,6 +106,13 @@ define Package/libxslt/install $(1)/usr/lib/ endef +define Package/libexslt/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) \ + $(PKG_INSTALL_DIR)/usr/lib/libexslt.so.* \ + $(1)/usr/lib/ +endef + define Package/xsltproc/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) \ @@ -102,4 +121,5 @@ define Package/xsltproc/install endef $(eval $(call BuildPackage,libxslt)) +$(eval $(call BuildPackage,libexslt)) $(eval $(call BuildPackage,xsltproc)) -- 2.11.0