[rs-commit] r208 - in /rs-distribution/trunk/openwrt/security/redwax-apache-mod-csr: ./ Makefile
rs-commit at redwax.eu
rs-commit at redwax.eu
Wed Jan 1 17:47:00 CET 2020
Author: minfrin at redwax.eu
Date: Wed Jan 1 17:47:00 2020
New Revision: 208
Log:
Add openwrt packaging for mod_csr.
Added:
rs-distribution/trunk/openwrt/security/redwax-apache-mod-csr/
rs-distribution/trunk/openwrt/security/redwax-apache-mod-csr/Makefile
Added: rs-distribution/trunk/openwrt/security/redwax-apache-mod-csr/Makefile
==============================================================================
--- rs-distribution/trunk/openwrt/security/redwax-apache-mod-csr/Makefile (added)
+++ rs-distribution/trunk/openwrt/security/redwax-apache-mod-csr/Makefile Wed Jan 1 17:47:00 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-csr
+PKG_VERSION:=0.2.2
+PKG_RELEASE:=1
+PKG_SOURCE_NAME:=mod_csr
+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:=b8a1bd19b02cc2a87ff790b0d6c1b4d2b936c151eca1694dd2292d109e034f76
+
+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-csr/Default
+ SECTION:=sec
+ CATEGORY:=Security
+ SUBMENU:=Certificate Authorities
+ TITLE:=Redwax mod_csr Module
+ URL:=https://redwax.eu/
+endef
+
+define Package/redwax-apache-mod-csr
+$(call Package/redwax-apache-mod-csr/Default)
+ DEPENDS:=+apache +libopenssl +redwax-apache-mod-ca
+endef
+
+define Package/redwax-apache-mod-csr/description
+$(call Package/redwax-apache-mod-csr/Default/description)
+The Apache mod_csr module issues a certificate in response to an incoming
+ certificate sign 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-csr/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-csr))
More information about the rs-commit
mailing list