From 67571a7a638c4879f8047d5bee186c2d8ecb1ac9 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 8 Oct 2007 09:00:24 +0000 Subject: [PATCH] Package shared libraries (#2454) git-svn-id: svn://svn.openwrt.org/openwrt/packages@9187 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- net/bind/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/net/bind/Makefile b/net/bind/Makefile index b978d66de..86bc1d36c 100644 --- a/net/bind/Makefile +++ b/net/bind/Makefile @@ -33,6 +33,11 @@ define Package/bind/Default URL:=http://www.isc.org/sw/bind/ endef +define Package/bind-libs + $(call Package/bind/Default) + TITLE+= shared libraries +endef + define Package/bind-server $(call Package/bind/Default) TITLE+= DNS server @@ -101,6 +106,11 @@ define Build/Compile all install endef +define Package/bind-libs/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib +endef + define Package/bind-server/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/named $(1)/usr/sbin/ @@ -157,6 +167,7 @@ define Package/bind-dig/install $(CP) $(PKG_INSTALL_DIR)/usr/bin/dig $(1)/usr/bin/ endef +$(eval $(call BuildPackage,bind-libs)) $(eval $(call BuildPackage,bind-server)) $(eval $(call BuildPackage,bind-client)) $(eval $(call BuildPackage,bind-tools)) -- 2.11.0