[rs-commit] r214 - in /rs-distribution/trunk/openwrt/security/redwax-apache-mod-timestamp: ./ Makefile

rs-commit at redwax.eu rs-commit at redwax.eu
Wed Jan 1 18:59:35 CET 2020


Author: minfrin at redwax.eu
Date: Wed Jan  1 18:59:34 2020
New Revision: 214

Log:
Add openwrt packaging for mod_timestamp.

Added:
    rs-distribution/trunk/openwrt/security/redwax-apache-mod-timestamp/
    rs-distribution/trunk/openwrt/security/redwax-apache-mod-timestamp/Makefile

Added: rs-distribution/trunk/openwrt/security/redwax-apache-mod-timestamp/Makefile
==============================================================================
--- rs-distribution/trunk/openwrt/security/redwax-apache-mod-timestamp/Makefile	(added)
+++ rs-distribution/trunk/openwrt/security/redwax-apache-mod-timestamp/Makefile	Wed Jan  1 18:59:34 2020
@@ -0,0 +1,67 @@
+#
+# Copyright (C) 2019-2020 redwax.eu
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=redwax-apache-mod-timestamp
+PKG_VERSION:=0.2.1
+PKG_RELEASE:=1
+PKG_SOURCE_NAME:=mod_timestamp
+PKG_MAINTAINER:=Graham Leggett <minfrin at redwax.eu>
+PKG_LICENSE:=Apache License
+
+PKG_SOURCE:=$(PKG_SOURCE_NAME)-$(PKG_VERSION).tar.bz2
+PKG_SOURCE_URL:=https://redwax.eu/dist/rs/
+PKG_HASH:=50537a38636049c5eea5a3ab26f9dadb7bf650e04335aca96c668c1733abd1fc
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_NAME)-$(PKG_VERSION)
+
+PKG_INSTALL:=1
+
+PKG_CONFIG_DEPENDS := \
+	CONFIG_PACKAGE_redwax-apache-mod-ca
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/redwax-apache-mod-timestamp/Default
+  SECTION:=security
+  CATEGORY:=Security
+  SUBMENU:=Certificate Authorities
+  TITLE:=Redwax mod_spkac Module
+  URL:=https://redwax.eu/
+endef
+
+define Package/redwax-apache-mod-timestamp
+$(call Package/redwax-apache-mod-timestamp/Default)
+  DEPENDS:=+apache +libopenssl +redwax-apache-mod-ca
+endef
+
+define Package/redwax-apache-mod-timestamp/description
+$(call Package/redwax-apache-mod-timestamp/Default/description)
+The Apache mod_spkac module issues certificates in response to a Signed Public Key
+ and Challenge request.
+endef
+
+TARGET_CPPFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
+TARGET_LDFLAGS += -lpthread
+
+define Build/Configure
+	$(call Build/Configure/Default, \
+		--with-apxs="$(STAGING_DIR)/usr/bin/apxs" \
+		ap_cv_void_ptr_lt_long=no \
+		EXTRA_LIBS="-ldl -lpthread -lcrypto -lrt -lssl" \
+		DESTDIR="$(PKG_INSTALL_DIR)" \
+	)
+endef
+
+define Package/redwax-apache-mod-timestamp/install
+	$(INSTALL_DIR) $(1)/usr/lib/apache2
+	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/apache2/*.so \
+		$(1)/usr/lib/apache2
+endef
+
+$(eval $(call BuildPackage,redwax-apache-mod-timestamp))



More information about the rs-commit mailing list