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

rs-commit at redwax.eu rs-commit at redwax.eu
Wed Jan 1 17:31:26 CET 2020


Author: minfrin at redwax.eu
Date: Wed Jan  1 17:31:26 2020
New Revision: 205

Log:
Add openwrt packaging for mod_crl.

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

Added: rs-distribution/trunk/openwrt/security/redwax-apache-mod-crl/Makefile
==============================================================================
--- rs-distribution/trunk/openwrt/security/redwax-apache-mod-crl/Makefile	(added)
+++ rs-distribution/trunk/openwrt/security/redwax-apache-mod-crl/Makefile	Wed Jan  1 17:31:26 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-crl
+PKG_VERSION:=0.2.2
+PKG_RELEASE:=1
+PKG_SOURCE_NAME:=mod_crl
+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:=fd61df0578640420428e0d94eb2cddd1363bf1661ceef2c8631321840322f88e
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_NAME)-$(PKG_VERSION)
+
+PKG_INSTALL:=1
+
+PKG_CONFIG_DEPENDS := \
+	CONFIG_APACHE
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/redwax-apache-mod-crl/Default
+  SECTION:=sec
+  CATEGORY:=Security
+  SUBMENU:=Certificate Authorities
+  TITLE:=Redwax mod_crl Module
+  URL:=https://redwax.eu/
+endef
+
+define Package/redwax-apache-mod-crl
+$(call Package/redwax-apache-mod-crl/Default)
+  DEPENDS:=+apache +libopenssl
+endef
+
+define Package/redwax-apache-mod-crl/description
+$(call Package/redwax-apache-mod-crl/Default/description)
+The Apache mod_crl module serves a dynamic certificate revocation list
+ to anyoneone who needs it.
+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-crl/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-crl))



More information about the rs-commit mailing list