summaryrefslogtreecommitdiffstats
path: root/package/keynote/Makefile
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-09-03 17:42:42 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-09-03 17:42:42 +0000
commit3b42d8a75cdea08fc99a825e76079991a46ad298 (patch)
tree4c559a31b2454c34974d48aa37f4a53142365796 /package/keynote/Makefile
parentcc845615ce25c4e8ba0c60255200ae067a5d6d3d (diff)
Add keynote, dependency to isakmpd
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4740 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/keynote/Makefile')
-rw-r--r--package/keynote/Makefile59
1 files changed, 59 insertions, 0 deletions
diff --git a/package/keynote/Makefile b/package/keynote/Makefile
new file mode 100644
index 000000000..4df4e14ad
--- /dev/null
+++ b/package/keynote/Makefile
@@ -0,0 +1,59 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# 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 $
+
+include $(TOPDIR)/rules.mk
+
+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:=@SF/keynote
+PKG_MD5SUM:=b569066ac2ba1356c2112b118a7d74d0
+PKG_CAT:=bzcat
+
+PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
+
+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://keynote.sourceforge.net/
+endef
+
+define Build/Configure
+$(call Build/Configure/Default,--enable-static --enable-shared,LDFLAGS="-L$(STAGING_DIR)/usr/lib")
+endef
+
+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/
+endef
+
+define Build/InstallDev
+ $(CP) $(PKG_BUILD_DIR)/*.h $(STAGING_DIR)/usr/include/
+ $(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
+endef
+
+$(eval $(call BuildPackage,keynote))