X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;ds=sidebyside;f=package%2Fkeynote%2FMakefile;h=5e2b3898b96924d4f75f64a3d9daa895eb1304a8;hb=de4be9af1e051a72b7cbd0a892b4154a8e64d226;hp=d61188c68a80674b45acc896ab43eeadc5926ad3;hpb=7588a35055989f6f3cddb77447d8192216b68a0b;p=openwrt-10.03%2F.git diff --git a/package/keynote/Makefile b/package/keynote/Makefile index d61188c68..5e2b3898b 100644 --- a/package/keynote/Makefile +++ b/package/keynote/Makefile @@ -4,7 +4,7 @@ # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id: Makefile 4619 2006-08-22 09:50:02Z florian $ +# $Id$ include $(TOPDIR)/rules.mk @@ -12,48 +12,54 @@ PKG_NAME:=keynote PKG_VERSION:=2.3 PKG_RELEASE:=1 -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/ PKG_MD5SUM:=b569066ac2ba1356c2112b118a7d74d0 PKG_CAT:=bzcat -PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/kernel.mk define Package/keynote -SECTION:=base -CATEGORY:=Network -DEPENDS:=@LINUX_2_6 -TITLE:=IPsec management tools -DESCRIPTION:=IPsec management tools -URL:=http://www1.cs.columbia.edu/~angelos/keynote.html + SECTION:=net + CATEGORY:=Network + DEPENDS:=@LINUX_2_6 +libopenssl + TITLE:=Simple and flexible trust-management system + DESCRIPTION:=\ + KeyNote is a simple and flexible trust-management system designed to work \\\ + well for a variety of large- and small- scale Internet-based applications.\\\ + It provides a single, unified language for both local policies and \\\ + credentials. + URL:=http://www1.cs.columbia.edu/~angelos/keynote.html endef -define Build/Configure -$(call Build/Configure/Default,--enable-static --enable-shared,LDFLAGS="-L$(STAGING_DIR)/usr/lib") -endef +CONFIGURE_ARGS += \ + --enable-static \ + --enable-shared define Build/Compile - $(call Build/Compile/Default,$(TARGET_CONFIGURE_OPTS) \ - CFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ - all) -endef - -define Package/keynote/install - install -d -m0755 $(1)/usr/sbin - $(CP) $(PKG_BUILD_DIR)/keynote $(1)/usr/sbin/ + $(call Build/Compile/Default, \ + LIBS="$(EXTRA_LDFLAGS) -L. -lkeynote -lm -lcrypto" \ + ) endef define Build/InstallDev - $(CP) $(PKG_BUILD_DIR)/*.h $(STAGING_DIR)/usr/include/ + mkdir -p $(STAGING_DIR)/usr/include + $(CP) $(PKG_BUILD_DIR)/{assertion,header,keynote,signature}.h $(STAGING_DIR)/usr/include/ + mkdir -p $(STAGING_DIR)/usr/lib $(CP) $(PKG_BUILD_DIR)/libkeynote.a $(STAGING_DIR)/usr/lib/ endef define Build/UninstallDev - rm -rf $(STAGING_DIR)/usr/include/{assertion,getopt,header,keynote,signature}.h + rm -rf $(STAGING_DIR)/usr/include/keynote \ + $(STAGING_DIR)/usr/lib/libkeynote.a +endef + +define Package/keynote/install + $(INSTALL_DIR) $(1)/usr/sbin + $(CP) $(PKG_BUILD_DIR)/keynote $(1)/usr/sbin/ endef $(eval $(call BuildPackage,keynote))