pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Jul  4 07:44:53 UTC 2019

Modified Files:
        pkgsrc/net/freeradius: Makefile Makefile.common PLIST distinfo
        pkgsrc/net/freeradius-freetds: Makefile PLIST
        pkgsrc/net/freeradius-iodbc: Makefile PLIST
        pkgsrc/net/freeradius-krb5: Makefile PLIST
        pkgsrc/net/freeradius-ldap: Makefile PLIST
        pkgsrc/net/freeradius-memcached: Makefile PLIST
        pkgsrc/net/freeradius-mysql: Makefile PLIST
        pkgsrc/net/freeradius-perl: Makefile PLIST
        pkgsrc/net/freeradius-pgsql: Makefile PLIST
        pkgsrc/net/freeradius-python: Makefile PLIST
        pkgsrc/net/freeradius-rest: Makefile PLIST
        pkgsrc/net/freeradius-sqlite3: Makefile PLIST
        pkgsrc/net/freeradius-unixodbc: Makefile PLIST
        pkgsrc/net/freeradius-yubikey: Makefile PLIST
        pkgsrc/net/freeradius/patches: patch-main_util.c
Removed Files:
        pkgsrc/net/freeradius/patches: patch-src_lib_debug.c

Log Message:
freeradius: updated to 3.0.19

3.0.19:
FEATURE IMPROVEMENTS
Update dictionary.cisco.
Update sqlippool to allow for stored procedures with PostgreSQL. This increases performance substantially Patch from Nathan Ward.
Re-added "show client config" command to radmin.
Cleaned up mods-available/sql example so that it is easier to understand.
Added pfSense dictionary.
Update dictionary.h3c
Update elasticsearch/logstash config for v6.7.0.
EAP-PWD security fixes from Mathy Vanhoef. See http://freeradius.org/security/.

BUG FIXES
Update dynamic_client module and server core so that the functionality works. This has been broken since at least v2.
Fix crash in sqlippool due to escaping changes Patch from Nathan Ward.
Fix systemd notify, watchdog and unit files
Fix erroneous length check in EAP-FAST.
Update documentation to remove old "ignore_null" configuration.
Fix default POD port. Should be 3799.
Correctly encode vendor-specific "encrypted" attributes

3.0.18:
FEATURE IMPROVEMENTS
cleanup_delay can now be 30 seconds. This helps with proxies that have packet loss.
Do-Not-Respond policies can now be set in the "post-auth" section.
Encode / Decode ADSL Forum DHCP options.
Fix module ordering issues. e.g. when "sqlippool" needs "sql". See the "instantiate" section of radiusd.conf.
Add Big Switch dictionary.
Add sql_session_start policy (raddb/policy.d/accounting) This minimizes race conditions when using Simultaneous-Use Patch from Philippe Wooding.
For rlm_perl, all variables are now tainted by default. See raddb/mods-available/perl, and the "perl_flags" configuration item. This change should only affect people who are using variables in 
insecure ways.
Allow "sqlcounter" module to be listed in "post-auth".
Add support for IPv6 attributes in SQL.
The server is better at handling fail-over for outbound RadSec and TCP connections.
The server is now more aggressive about retrying failed outbound RadSec and TCP connections.
Add TLS-Session-Version and TLS-Session-Cipher-Suite to the "session_state" list.
Add expansion for Radsec connections. "%{listen:TLS-...}" for TLS-Client-Cert-* and TLS-Cert-* attributes.
Add notes on running "ldapsearch" using the parameters from the LDAP module.
"ipaddr" attributes can now be cast to "integer" type attributes in an "update" section.
Move main thread queue to using atomic queues. This should help with contention in high load scenarios.
Add "recv_buff" setting to listeners. For more details, see sites-available/default.
The sqlippool module can now use attributes other than "Pool-Name" to assign IP pools. The "Pool-Name" attribute is still the default.
The "unpack" expansion can now unpack substrings. See mods-available/unpack for documentation and examples.
The preprocess module now does "ciscvo_vsa_hack" for Eltex-AVPair. Vendors SHOULD NOT USE THAT KIND OF ATTRIBUTE.
Allow for <instance>-LDAP-UserDN. See mods-available/ldap for more information.
Add sanitizing of control list for moonshot.
Update rlm_sql_mysql to be compatible with MySQL 8 Fixes https://bugs.launchpad.net/bugs/1795310.
Allow logging of only Access-Accept or Access-Reject messages See radiusd.conf, "auth_accept" and "auth_reject".
Removed Connect-Rate comparison. It was unused and broken.
Add dictionary.infinera.
RPMs can now change raddb location with rpmbuild parameter --define '_sysconfdir /etc'.
OpenDirectory module now points to Apple documentation for help with build and configuration.
Use OpenSSL HMAC functions instead of local ones.
Some SQL modules can now use "auto_escape" to escape unsafe strings See mods-config/sql/main/mysql/queries.conf.
Add wispr2date conversion in mods-available/date.
Implement dictionary-based handling in rlm_python.
Add support for SKIP LOCKED in sqlippool. This can improve performance by an order of magnitude or more. See raddb/mods-config/sql/ippool/*/queries.conf
Updated Debian packages to allow for libssl1.1
Allow PSK and certificates at the same time Except for TLS 1.3 which does not support that.
Update Debian packages for newer releases
Update docker scripts.
Add crypt xlat.
MySQL connections can now skip verifying the server certificate.
Add better mechanism to detect MariaDB (Old MySQL).
Add RFC 7532 "bang path" support for realms
Update dictionary.ukerna documentation.
Add support for systemd service and watchdogs
Check for openss/rand.h, and allow building without OpenSSL engine.
The default PosgtreSQL queries now use "ON CONFLICT" to better deal with issues. This requires PostgreSQL 9.5 or later. Please use a recent version of PostgreSQL, or edit the default queries to 
remove "ON CONFLICT".

BUG FIXES
The session-state list is no longer cleaned in the inner-tunnel. This lets the outer Access-Reject section access session-state.
Fix typo in lock initialization for TLS sockets Found by Sergio NNX.
Add check for crash when home server down
Add username key for postauth table.
Better libpcap checks, when the header files or libraries are missing.
Allow building with old versions of OpenSSL
Allow non-FreeRADIUS State attributes to be used with the "session-state" list. i.e. State length != 16.
Be more aggressive about cleaning up zombie children when running in debug mode.
Use LTDL_DEEPBIND, which fixes issues with Oracle libraries exporting LDAP API functions.
unlock files when asked to unlock them.
return error instead of asserting in map code.
Don't write 0 bytes to SSL.
Remove "expiry_time IS NULL" from allocate_update query.
Various dictionary cleanups and consistency checks
rlm_python has stronger thread locking to prevent reported issues. Performance may be affected.
Don't allow Message-Authenticator to overflow past the end of a large packet.
Fix crash in sqlippool when SQL server goes away
Typos in man pages. Patch from Nikolai Kondrashov
Check for correct OpenSSL version in vulnerability list. Patch from Christian Hesse.
Fix crash with CoA packets/
Fix crash in rlm_exec with CoA.
Print errors while parsing the log config, and don't quit when deprecated log settings are found.
Fix DHCP encoder xlat so that it can be used with a list of attributes. It previously only encoded the first member of the list, and now encodes all members.
The "expr" module now skips more whitespace.
Remove internal FreeRADIUS-Response-Delay attributes from attr_filter Access-Reject.
Don't send junk to redis when maximum args reached.
Small updates to IPv6 for accounting schema
Fix OpenDirectory integration in rlm_mschap.
Fix slow memory leak with dynamic clients.
Don't artificially truncate debug output for long strings.
Fix memory leak in EAP-PWD.
Fix crash in "hints" file with Fall-Through = yes.
Fix crash / timer issues with many CoA packets.
Fix attr_filter so that it does not treat vendor attributes of number 26 as Vendor-Specific.
Fix reconnect correctly in rlm_sql_mysql.
Fix rlm_cache to properly use Cache-TTL < 0
Fix rare occurance of bad xlat expansion.
Check for rare race condition when a proxy reply arrives too late.


To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 pkgsrc/net/freeradius/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/freeradius/Makefile.common
cvs rdiff -u -r1.30 -r1.31 pkgsrc/net/freeradius/PLIST
cvs rdiff -u -r1.37 -r1.38 pkgsrc/net/freeradius/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/net/freeradius-freetds/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-freetds/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/freeradius-iodbc/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-iodbc/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/freeradius-krb5/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-krb5/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-ldap/Makefile \
    pkgsrc/net/freeradius-ldap/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/freeradius-memcached/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-memcached/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/freeradius-mysql/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-mysql/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/freeradius-perl/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-perl/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-pgsql/Makefile \
    pkgsrc/net/freeradius-pgsql/PLIST
cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/freeradius-python/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-python/PLIST
cvs rdiff -u -r1.8 -r1.9 pkgsrc/net/freeradius-rest/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-rest/PLIST
cvs rdiff -u -r1.10 -r1.11 pkgsrc/net/freeradius-sqlite3/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-sqlite3/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/freeradius-unixodbc/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-unixodbc/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/freeradius-yubikey/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius-yubikey/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/freeradius/patches/patch-main_util.c
cvs rdiff -u -r1.1 -r0 pkgsrc/net/freeradius/patches/patch-src_lib_debug.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/freeradius/Makefile
diff -u pkgsrc/net/freeradius/Makefile:1.99 pkgsrc/net/freeradius/Makefile:1.100
--- pkgsrc/net/freeradius/Makefile:1.99 Mon Oct  8 15:50:39 2018
+++ pkgsrc/net/freeradius/Makefile      Thu Jul  4 07:44:52 2019
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.99 2018/10/08 15:50:39 jperkin Exp $
+# $NetBSD: Makefile,v 1.100 2019/07/04 07:44:52 adam Exp $
 
 .include "Makefile.common"
 
-PKGNAME=               ${DISTNAME:S/-server//}
-COMMENT=               Free RADIUS server implementation
+PKGNAME=       ${DISTNAME:S/-server//}
+COMMENT=       Free RADIUS server implementation
 
 BUILD_DEFS+=           VARBASE
 CONFIGURE_ARGS+=       --localstatedir=${VARBASE}
@@ -42,14 +42,8 @@ OWN_DIRS_PERMS+=     ${VARBASE}/run/radiusd 
 
 PKG_SYSCONFSUBDIR=     raddb
 
-OPSYSVARS+=            SOEXT
-SOEXT.Darwin=          dylib
-SOEXT.*=               so
-PLIST_SUBST+=          SOEXT=${SOEXT}
-PRINT_PLIST_AWK+=      {gsub(/\.${SOEXT}$$/, ".$${SOEXT}");}
-
 FILES_SUBST+=          RADIUS_USER=${RADIUS_USER} RADIUS_GROUP=${RADIUS_GROUP}
-MESSAGE_SUBST+=                BOOTSTRAP=${PKG_SYSCONFDIR:Q}/certs/bootstrap
+MESSAGE_SUBST+=                BOOTSTRAP=${PKG_SYSCONFDIR}/certs/bootstrap
 
 EGDIR=                 ${PREFIX}/share/examples/freeradius
 
@@ -181,7 +175,7 @@ EGFILES=            certs/ca.cnf certs/client.cnf 
                        sites-available/virtual.example.com \
                        users templates.conf trigger.conf
 
-EGDIRS=                certs mods-available mods-config mods-config/attr_filter mods-config/files \
+EGDIRS=                        certs mods-available mods-config mods-config/attr_filter mods-config/files \
                        mods-config/perl mods-config/preprocess mods-config/sql mods-config/sql/counter  \
                        mods-config/sql/counter/mysql mods-config/sql/counter/postgresql  \
                        mods-config/sql/counter/sqlite mods-config/sql/cui mods-config/sql/cui/mysql  \

Index: pkgsrc/net/freeradius/Makefile.common
diff -u pkgsrc/net/freeradius/Makefile.common:1.4 pkgsrc/net/freeradius/Makefile.common:1.5
--- pkgsrc/net/freeradius/Makefile.common:1.4   Mon Oct  8 15:50:39 2018
+++ pkgsrc/net/freeradius/Makefile.common       Thu Jul  4 07:44:52 2019
@@ -1,19 +1,18 @@
-# $NetBSD: Makefile.common,v 1.4 2018/10/08 15:50:39 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.5 2019/07/04 07:44:52 adam Exp $
 # used by net/freeradius/Makefile.module
 
-DISTNAME=              freeradius-server-3.0.17
-CATEGORIES=            net
-MASTER_SITES=          ftp://ftp.freeradius.org/pub/freeradius/
-EXTRACT_SUFX=          .tar.bz2
-
-MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=              http://www.freeradius.org/
-LICENSE=               gnu-gpl-v2
+DISTNAME=      freeradius-server-3.0.19
+CATEGORIES=    net
+MASTER_SITES=  ftp://ftp.freeradius.org/pub/freeradius/
+EXTRACT_SUFX=  .tar.bz2
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      http://www.freeradius.org/
+LICENSE=       gnu-gpl-v2
 
-GNU_CONFIGURE=         yes
-USE_TOOLS+=            gmake perl
 USE_LANGUAGES+=                c c++
-
+USE_TOOLS+=            gmake perl
+GNU_CONFIGURE=         yes
 CONFIGURE_ARGS+=       --with-openssl-include-dir=${BUILDLINK_PREFIX.openssl}/include
 CONFIGURE_ARGS+=       --with-openssl-lib-dir=${BUILDLINK_PREFIX.openssl}/lib
 CONFIGURE_ARGS+=       --without-rlm_yubikey
@@ -26,6 +25,12 @@ MAKE_ENV+=           PACKAGE=yes
 
 INSTALLATION_DIRS+=    lib
 
+OPSYSVARS+=            SOEXT
+SOEXT.Darwin=          dylib
+SOEXT.*=               so
+PLIST_SUBST+=          SOEXT=${SOEXT}
+PRINT_PLIST_AWK+=      {gsub(/\.${SOEXT}$$/, ".$${SOEXT}");}
+
 .include "../../databases/gdbm/buildlink3.mk"
 .include "../../devel/talloc/buildlink3.mk"
 .include "../../net/libpcap/buildlink3.mk"

Index: pkgsrc/net/freeradius/PLIST
diff -u pkgsrc/net/freeradius/PLIST:1.30 pkgsrc/net/freeradius/PLIST:1.31
--- pkgsrc/net/freeradius/PLIST:1.30    Tue Sep 25 12:16:36 2018
+++ pkgsrc/net/freeradius/PLIST Thu Jul  4 07:44:52 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.30 2018/09/25 12:16:36 jperkin Exp $
+@comment $NetBSD: PLIST,v 1.31 2019/07/04 07:44:52 adam Exp $
 bin/dhcpclient
 bin/map_unit
 bin/rad_counter
@@ -15,6 +15,7 @@ bin/radzap
 bin/rlm_ippool_tool
 bin/smbencrypt
 include/freeradius/attributes.h
+include/freeradius/autoconf.h
 include/freeradius/base64.h
 include/freeradius/build.h
 include/freeradius/conf.h
@@ -39,6 +40,7 @@ include/freeradius/radiusd.h
 include/freeradius/radpaths.h
 include/freeradius/radutmp.h
 include/freeradius/realms.h
+include/freeradius/regex.h
 include/freeradius/rfc2865.h
 include/freeradius/rfc2866.h
 include/freeradius/rfc2867.h
@@ -71,9 +73,13 @@ include/freeradius/rfc7155.h
 include/freeradius/rfc7268.h
 include/freeradius/rfc7499.h
 include/freeradius/rfc7930.h
+include/freeradius/rfc8045.h
+include/freeradius/rfc8559.h
 include/freeradius/sha1.h
 include/freeradius/stats.h
 include/freeradius/sysutmp.h
+include/freeradius/tcp.h
+include/freeradius/threads.h
 include/freeradius/tls.h
 include/freeradius/token.h
 include/freeradius/udpfromto.h
@@ -439,6 +445,7 @@ share/examples/freeradius/mods-config/sq
 share/examples/freeradius/mods-config/sql/ippool/oracle/procedures.sql
 share/examples/freeradius/mods-config/sql/ippool/oracle/queries.conf
 share/examples/freeradius/mods-config/sql/ippool/oracle/schema.sql
+share/examples/freeradius/mods-config/sql/ippool/postgresql/procedure.sql
 share/examples/freeradius/mods-config/sql/ippool/postgresql/queries.conf
 share/examples/freeradius/mods-config/sql/ippool/postgresql/schema.sql
 share/examples/freeradius/mods-config/sql/ippool/sqlite/queries.conf
@@ -511,6 +518,7 @@ share/examples/freeradius/policy.d/eap
 share/examples/freeradius/policy.d/filter
 share/examples/freeradius/policy.d/moonshot-targeted-ids
 share/examples/freeradius/policy.d/operator-name
+share/examples/freeradius/policy.d/rfc7542
 share/examples/freeradius/proxy.conf
 share/examples/freeradius/radiusd.conf
 share/examples/freeradius/sites-available/README
@@ -574,6 +582,7 @@ share/freeradius/dictionary.audiocodes
 share/freeradius/dictionary.avaya
 share/freeradius/dictionary.azaire
 share/freeradius/dictionary.bay
+share/freeradius/dictionary.bigswitch
 share/freeradius/dictionary.bintec
 share/freeradius/dictionary.bluecoat
 share/freeradius/dictionary.boingo
@@ -632,6 +641,7 @@ share/freeradius/dictionary.hp
 share/freeradius/dictionary.huawei
 share/freeradius/dictionary.iana
 share/freeradius/dictionary.iea
+share/freeradius/dictionary.infinera
 share/freeradius/dictionary.infoblox
 share/freeradius/dictionary.infonet
 share/freeradius/dictionary.ipunplugged
@@ -671,6 +681,7 @@ share/freeradius/dictionary.packeteer
 share/freeradius/dictionary.paloalto
 share/freeradius/dictionary.patton
 share/freeradius/dictionary.perle
+share/freeradius/dictionary.pfsense
 share/freeradius/dictionary.propel
 share/freeradius/dictionary.prosoft
 share/freeradius/dictionary.proxim
@@ -710,6 +721,8 @@ share/freeradius/dictionary.rfc7155
 share/freeradius/dictionary.rfc7268
 share/freeradius/dictionary.rfc7499
 share/freeradius/dictionary.rfc7930
+share/freeradius/dictionary.rfc8045
+share/freeradius/dictionary.rfc8559
 share/freeradius/dictionary.riverbed
 share/freeradius/dictionary.riverstone
 share/freeradius/dictionary.roaringpenguin
@@ -742,6 +755,7 @@ share/freeradius/dictionary.usr
 share/freeradius/dictionary.usr.illegal
 share/freeradius/dictionary.utstarcom
 share/freeradius/dictionary.valemount
+share/freeradius/dictionary.verizon
 share/freeradius/dictionary.versanet
 share/freeradius/dictionary.vqp
 share/freeradius/dictionary.walabi

Index: pkgsrc/net/freeradius/distinfo
diff -u pkgsrc/net/freeradius/distinfo:1.37 pkgsrc/net/freeradius/distinfo:1.38
--- pkgsrc/net/freeradius/distinfo:1.37 Wed Dec 19 22:52:32 2018
+++ pkgsrc/net/freeradius/distinfo      Thu Jul  4 07:44:52 2019
@@ -1,12 +1,11 @@
-$NetBSD: distinfo,v 1.37 2018/12/19 22:52:32 manu Exp $
+$NetBSD: distinfo,v 1.38 2019/07/04 07:44:52 adam Exp $
 
-SHA1 (freeradius-server-3.0.17.tar.bz2) = a0d4372ee124cbee6b90a4463ff068afe70e06ca
-RMD160 (freeradius-server-3.0.17.tar.bz2) = c335fe2ef39ca2311ac85b2ec3d5941bbbb5e6e6
-SHA512 (freeradius-server-3.0.17.tar.bz2) = f4510d8e77eb7c72a21fbfad851f13460ff4b5a35f0b7bea6102076ceb71188a63b277fb7e4fcd9c3033b396b63e1bf0e455cc03608d7ab1380d1662407cb399
-Size (freeradius-server-3.0.17.tar.bz2) = 3075724 bytes
+SHA1 (freeradius-server-3.0.19.tar.bz2) = 6bb57e634ad6e85f6c324f851296c688edbc3b11
+RMD160 (freeradius-server-3.0.19.tar.bz2) = 753b89e13b80312131149cdaf26b944bc802e338
+SHA512 (freeradius-server-3.0.19.tar.bz2) = 9bb3401a52288de541a2272149f4341840dc1df7203583746bef46c0b1b1f2b8886931c9f6f9ce3d92951e271ab5a84a50a8587a3acd69cc20bc86f5817d28e1
+Size (freeradius-server-3.0.19.tar.bz2) = 3127564 bytes
 SHA1 (patch-ai) = e32ffd24b93e2cef2e72ef9a8ea59d49e1571dc0
 SHA1 (patch-configure.ac) = ffec1f851d23f560797c12eba5092f2940e4d662
 SHA1 (patch-main_command.c) = 1c79b29eb13df341906c710c8dd41860a27473dd
-SHA1 (patch-main_util.c) = b9cefdb9bc30df0906184e8c0bb883e5258767c3
-SHA1 (patch-src_lib_debug.c) = 7547fdd6abf1048cb1ca846900fc9e4d734f8b8a
+SHA1 (patch-main_util.c) = e8814255c32c8469e81d62f2c7092e8d42744e85
 SHA1 (patch-src_lib_udpfromto.c) = 2457f0a7223b1f3ef86d0af020290b26380e6319

Index: pkgsrc/net/freeradius-freetds/Makefile
diff -u pkgsrc/net/freeradius-freetds/Makefile:1.6 pkgsrc/net/freeradius-freetds/Makefile:1.7
--- pkgsrc/net/freeradius-freetds/Makefile:1.6  Tue Sep 25 12:20:05 2018
+++ pkgsrc/net/freeradius-freetds/Makefile      Thu Jul  4 07:44:52 2019
@@ -1,16 +1,17 @@
-# $NetBSD: Makefile,v 1.6 2018/09/25 12:20:05 jperkin Exp $
+# $NetBSD: Makefile,v 1.7 2019/07/04 07:44:52 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-freetds/}
-COMMENT=               Free RADIUS FreeTDS support
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-freetds/}
+COMMENT=       Free RADIUS FreeTDS support
 
-CONFIGURE_ARGS+=    --with-rlm_sql_freetds
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_sql_freetds
+CONFIGURE_ARGS+=       --without-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_freetds.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_freetds.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../databases/freetds/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/freeradius-freetds/PLIST
diff -u pkgsrc/net/freeradius-freetds/PLIST:1.1 pkgsrc/net/freeradius-freetds/PLIST:1.2
--- pkgsrc/net/freeradius-freetds/PLIST:1.1     Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-freetds/PLIST Thu Jul  4 07:44:52 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:28 fhajny Exp $
-lib/rlm_sql_freetds.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:52 adam Exp $
+lib/rlm_sql_freetds.${SOEXT}

Index: pkgsrc/net/freeradius-iodbc/Makefile
diff -u pkgsrc/net/freeradius-iodbc/Makefile:1.2 pkgsrc/net/freeradius-iodbc/Makefile:1.3
--- pkgsrc/net/freeradius-iodbc/Makefile:1.2    Tue Sep 25 12:16:36 2018
+++ pkgsrc/net/freeradius-iodbc/Makefile        Thu Jul  4 07:44:52 2019
@@ -1,16 +1,17 @@
-# $NetBSD: Makefile,v 1.2 2018/09/25 12:16:36 jperkin Exp $
+# $NetBSD: Makefile,v 1.3 2019/07/04 07:44:52 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-iodbc/}
-COMMENT=               Free RADIUS iODBC support
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-iodbc/}
+COMMENT=       Free RADIUS iODBC support
 
-CONFIGURE_ARGS+=    --with-rlm_sql_iodbc
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_sql_iodbc
+CONFIGURE_ARGS+=       --without-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_iodbc.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_iodbc.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../databases/iodbc/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/freeradius-iodbc/PLIST
diff -u pkgsrc/net/freeradius-iodbc/PLIST:1.1 pkgsrc/net/freeradius-iodbc/PLIST:1.2
--- pkgsrc/net/freeradius-iodbc/PLIST:1.1       Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-iodbc/PLIST   Thu Jul  4 07:44:52 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:28 fhajny Exp $
-lib/rlm_sql_iodbc.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:52 adam Exp $
+lib/rlm_sql_iodbc.${SOEXT}

Index: pkgsrc/net/freeradius-krb5/Makefile
diff -u pkgsrc/net/freeradius-krb5/Makefile:1.2 pkgsrc/net/freeradius-krb5/Makefile:1.3
--- pkgsrc/net/freeradius-krb5/Makefile:1.2     Tue Sep 25 12:16:36 2018
+++ pkgsrc/net/freeradius-krb5/Makefile Thu Jul  4 07:44:52 2019
@@ -1,16 +1,17 @@
-# $NetBSD: Makefile,v 1.2 2018/09/25 12:16:36 jperkin Exp $
+# $NetBSD: Makefile,v 1.3 2019/07/04 07:44:52 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-krb5/}
-COMMENT=               Free RADIUS rlm_krb5 module
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-krb5/}
+COMMENT=       Free RADIUS rlm_krb5 module
 
-CONFIGURE_ARGS+=    --with-rlm_krb5
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_krb5
+CONFIGURE_ARGS+=       --without-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_krb5.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_krb5.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../mk/krb5.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/freeradius-krb5/PLIST
diff -u pkgsrc/net/freeradius-krb5/PLIST:1.1 pkgsrc/net/freeradius-krb5/PLIST:1.2
--- pkgsrc/net/freeradius-krb5/PLIST:1.1        Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-krb5/PLIST    Thu Jul  4 07:44:52 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:28 fhajny Exp $
-lib/rlm_krb5.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:52 adam Exp $
+lib/rlm_krb5.${SOEXT}

Index: pkgsrc/net/freeradius-ldap/Makefile
diff -u pkgsrc/net/freeradius-ldap/Makefile:1.1 pkgsrc/net/freeradius-ldap/Makefile:1.2
--- pkgsrc/net/freeradius-ldap/Makefile:1.1     Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-ldap/Makefile Thu Jul  4 07:44:52 2019
@@ -1,15 +1,16 @@
-# $NetBSD: Makefile,v 1.1 2017/08/26 10:07:28 fhajny Exp $
+# $NetBSD: Makefile,v 1.2 2019/07/04 07:44:52 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-ldap/}
-COMMENT=               Free RADIUS rlm_ldap module
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-ldap/}
+COMMENT=       Free RADIUS rlm_ldap module
 
-CONFIGURE_ARGS+=    --with-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_ldap.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_ldap.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../databases/openldap-client/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/net/freeradius-ldap/PLIST
diff -u pkgsrc/net/freeradius-ldap/PLIST:1.1 pkgsrc/net/freeradius-ldap/PLIST:1.2
--- pkgsrc/net/freeradius-ldap/PLIST:1.1        Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-ldap/PLIST    Thu Jul  4 07:44:52 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:28 fhajny Exp $
-lib/rlm_ldap.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:52 adam Exp $
+lib/rlm_ldap.${SOEXT}

Index: pkgsrc/net/freeradius-memcached/Makefile
diff -u pkgsrc/net/freeradius-memcached/Makefile:1.2 pkgsrc/net/freeradius-memcached/Makefile:1.3
--- pkgsrc/net/freeradius-memcached/Makefile:1.2        Tue Sep 25 12:16:36 2018
+++ pkgsrc/net/freeradius-memcached/Makefile    Thu Jul  4 07:44:52 2019
@@ -1,16 +1,17 @@
-# $NetBSD: Makefile,v 1.2 2018/09/25 12:16:36 jperkin Exp $
+# $NetBSD: Makefile,v 1.3 2019/07/04 07:44:52 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-memcached/}
-COMMENT=               Free RADIUS support for memcached
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-memcached/}
+COMMENT=       Free RADIUS support for memcached
 
-CONFIGURE_ARGS+=    --with-rlm_cache_memcached
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_cache_memcached
+CONFIGURE_ARGS+=       --without-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_cache_memcached.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_cache_memcached.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../devel/libmemcached/buildlink3.mk"
 .include "../../mk/pthread.buildlink3.mk"

Index: pkgsrc/net/freeradius-memcached/PLIST
diff -u pkgsrc/net/freeradius-memcached/PLIST:1.1 pkgsrc/net/freeradius-memcached/PLIST:1.2
--- pkgsrc/net/freeradius-memcached/PLIST:1.1   Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-memcached/PLIST       Thu Jul  4 07:44:52 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:28 fhajny Exp $
-lib/rlm_cache_memcached.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:52 adam Exp $
+lib/rlm_cache_memcached.${SOEXT}

Index: pkgsrc/net/freeradius-mysql/Makefile
diff -u pkgsrc/net/freeradius-mysql/Makefile:1.2 pkgsrc/net/freeradius-mysql/Makefile:1.3
--- pkgsrc/net/freeradius-mysql/Makefile:1.2    Tue Sep 25 12:16:36 2018
+++ pkgsrc/net/freeradius-mysql/Makefile        Thu Jul  4 07:44:52 2019
@@ -1,16 +1,17 @@
-# $NetBSD: Makefile,v 1.2 2018/09/25 12:16:36 jperkin Exp $
+# $NetBSD: Makefile,v 1.3 2019/07/04 07:44:52 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-mysql/}
-COMMENT=               Free RADIUS MySQL support
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-mysql/}
+COMMENT=       Free RADIUS MySQL support
 
-CONFIGURE_ARGS+=    --with-rlm_sql_mysql
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_sql_mysql
+CONFIGURE_ARGS+=       --without-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_mysql.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_mysql.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../mk/mysql.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/freeradius-mysql/PLIST
diff -u pkgsrc/net/freeradius-mysql/PLIST:1.1 pkgsrc/net/freeradius-mysql/PLIST:1.2
--- pkgsrc/net/freeradius-mysql/PLIST:1.1       Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-mysql/PLIST   Thu Jul  4 07:44:52 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:28 fhajny Exp $
-lib/rlm_sql_mysql.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:52 adam Exp $
+lib/rlm_sql_mysql.${SOEXT}

Index: pkgsrc/net/freeradius-perl/Makefile
diff -u pkgsrc/net/freeradius-perl/Makefile:1.4 pkgsrc/net/freeradius-perl/Makefile:1.5
--- pkgsrc/net/freeradius-perl/Makefile:1.4     Tue Sep 25 12:20:05 2018
+++ pkgsrc/net/freeradius-perl/Makefile Thu Jul  4 07:44:53 2019
@@ -1,16 +1,17 @@
-# $NetBSD: Makefile,v 1.4 2018/09/25 12:20:05 jperkin Exp $
+# $NetBSD: Makefile,v 1.5 2019/07/04 07:44:53 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-perl/}
-COMMENT=               Free RADIUS rlm_perl module
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-perl/}
+COMMENT=       Free RADIUS rlm_perl module
 
-CONFIGURE_ARGS+=    --with-rlm_perl
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_perl
+CONFIGURE_ARGS+=       --without-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_perl.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_perl.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../lang/perl5/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/freeradius-perl/PLIST
diff -u pkgsrc/net/freeradius-perl/PLIST:1.1 pkgsrc/net/freeradius-perl/PLIST:1.2
--- pkgsrc/net/freeradius-perl/PLIST:1.1        Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-perl/PLIST    Thu Jul  4 07:44:53 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:28 fhajny Exp $
-lib/rlm_perl.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:53 adam Exp $
+lib/rlm_perl.${SOEXT}

Index: pkgsrc/net/freeradius-pgsql/Makefile
diff -u pkgsrc/net/freeradius-pgsql/Makefile:1.1 pkgsrc/net/freeradius-pgsql/Makefile:1.2
--- pkgsrc/net/freeradius-pgsql/Makefile:1.1    Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-pgsql/Makefile        Thu Jul  4 07:44:53 2019
@@ -1,15 +1,17 @@
-# $NetBSD: Makefile,v 1.1 2017/08/26 10:07:28 fhajny Exp $
+# $NetBSD: Makefile,v 1.2 2019/07/04 07:44:53 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-pgsql/}
-COMMENT=               Free RADIUS PostgreSQL support
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-pgsql/}
+COMMENT=       Free RADIUS PostgreSQL support
+CATEGORIES=    net
 
-CONFIGURE_ARGS+=    --with-rlm_sql_postgresql
+CONFIGURE_ARGS+=       --with-rlm_sql_postgresql
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_postgresql.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_postgresql.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../mk/pgsql.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/net/freeradius-pgsql/PLIST
diff -u pkgsrc/net/freeradius-pgsql/PLIST:1.1 pkgsrc/net/freeradius-pgsql/PLIST:1.2
--- pkgsrc/net/freeradius-pgsql/PLIST:1.1       Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius-pgsql/PLIST   Thu Jul  4 07:44:53 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:28 fhajny Exp $
-lib/rlm_sql_postgresql.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:53 adam Exp $
+lib/rlm_sql_postgresql.${SOEXT}

Index: pkgsrc/net/freeradius-python/Makefile
diff -u pkgsrc/net/freeradius-python/Makefile:1.3 pkgsrc/net/freeradius-python/Makefile:1.4
--- pkgsrc/net/freeradius-python/Makefile:1.3   Thu Apr 25 07:33:10 2019
+++ pkgsrc/net/freeradius-python/Makefile       Thu Jul  4 07:44:53 2019
@@ -1,19 +1,17 @@
-# $NetBSD: Makefile,v 1.3 2019/04/25 07:33:10 maya Exp $
+# $NetBSD: Makefile,v 1.4 2019/07/04 07:44:53 adam Exp $
 
-PKGREVISION= 1
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-python/}
-COMMENT=               Free RADIUS rlm_python module
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-python/}
+COMMENT=       Free RADIUS rlm_python module
 
-PYTHON_VERSIONS_ACCEPTED=      27
-
-CONFIGURE_ARGS+=    --with-rlm_python
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_python
+CONFIGURE_ARGS+=       --without-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_python.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_python.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../lang/python/pyversion.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/freeradius-python/PLIST
diff -u pkgsrc/net/freeradius-python/PLIST:1.1 pkgsrc/net/freeradius-python/PLIST:1.2
--- pkgsrc/net/freeradius-python/PLIST:1.1      Sat Aug 26 10:07:29 2017
+++ pkgsrc/net/freeradius-python/PLIST  Thu Jul  4 07:44:53 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:29 fhajny Exp $
-lib/rlm_python.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:53 adam Exp $
+lib/rlm_python.${SOEXT}

Index: pkgsrc/net/freeradius-rest/Makefile
diff -u pkgsrc/net/freeradius-rest/Makefile:1.8 pkgsrc/net/freeradius-rest/Makefile:1.9
--- pkgsrc/net/freeradius-rest/Makefile:1.8     Mon Jul  1 04:08:40 2019
+++ pkgsrc/net/freeradius-rest/Makefile Thu Jul  4 07:44:53 2019
@@ -1,16 +1,16 @@
-# $NetBSD: Makefile,v 1.8 2019/07/01 04:08:40 ryoon Exp $
+# $NetBSD: Makefile,v 1.9 2019/07/04 07:44:53 adam Exp $
 
-PKGREVISION= 2
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-rest/}
-COMMENT=               Free RADIUS rlm_rest module
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-rest/}
+COMMENT=       Free RADIUS rlm_rest module
 
-CONFIGURE_ARGS+=    --with-rlm_rest
+CONFIGURE_ARGS+=       --with-rlm_rest
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_rest.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_rest.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../textproc/json-c/buildlink3.mk"
 .include "../../www/curl/buildlink3.mk"

Index: pkgsrc/net/freeradius-rest/PLIST
diff -u pkgsrc/net/freeradius-rest/PLIST:1.1 pkgsrc/net/freeradius-rest/PLIST:1.2
--- pkgsrc/net/freeradius-rest/PLIST:1.1        Sat Aug 26 10:07:29 2017
+++ pkgsrc/net/freeradius-rest/PLIST    Thu Jul  4 07:44:53 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:29 fhajny Exp $
-lib/rlm_rest.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:53 adam Exp $
+lib/rlm_rest.${SOEXT}

Index: pkgsrc/net/freeradius-sqlite3/Makefile
diff -u pkgsrc/net/freeradius-sqlite3/Makefile:1.10 pkgsrc/net/freeradius-sqlite3/Makefile:1.11
--- pkgsrc/net/freeradius-sqlite3/Makefile:1.10 Wed Apr  3 00:32:57 2019
+++ pkgsrc/net/freeradius-sqlite3/Makefile      Thu Jul  4 07:44:53 2019
@@ -1,17 +1,17 @@
-# $NetBSD: Makefile,v 1.10 2019/04/03 00:32:57 ryoon Exp $
+# $NetBSD: Makefile,v 1.11 2019/07/04 07:44:53 adam Exp $
 
-PKGREVISION= 2
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-sqlite3/}
-COMMENT=               Free RADIUS SQLite support
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-sqlite3/}
+COMMENT=       Free RADIUS SQLite support
 
-CONFIGURE_ARGS+=    --with-rlm_sql_iodbc
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_sql_iodbc
+CONFIGURE_ARGS+=       --without-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_sqlite.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_sqlite.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../databases/sqlite3/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/freeradius-sqlite3/PLIST
diff -u pkgsrc/net/freeradius-sqlite3/PLIST:1.1 pkgsrc/net/freeradius-sqlite3/PLIST:1.2
--- pkgsrc/net/freeradius-sqlite3/PLIST:1.1     Sat Aug 26 10:07:29 2017
+++ pkgsrc/net/freeradius-sqlite3/PLIST Thu Jul  4 07:44:53 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:29 fhajny Exp $
-lib/rlm_sql_sqlite.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:53 adam Exp $
+lib/rlm_sql_sqlite.${SOEXT}

Index: pkgsrc/net/freeradius-unixodbc/Makefile
diff -u pkgsrc/net/freeradius-unixodbc/Makefile:1.2 pkgsrc/net/freeradius-unixodbc/Makefile:1.3
--- pkgsrc/net/freeradius-unixodbc/Makefile:1.2 Tue Sep 25 12:16:37 2018
+++ pkgsrc/net/freeradius-unixodbc/Makefile     Thu Jul  4 07:44:53 2019
@@ -1,16 +1,17 @@
-# $NetBSD: Makefile,v 1.2 2018/09/25 12:16:37 jperkin Exp $
+# $NetBSD: Makefile,v 1.3 2019/07/04 07:44:53 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-unixodbc/}
-COMMENT=               Free RADIUS UNIXODBC support
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-unixodbc/}
+COMMENT=       Free RADIUS UNIXODBC support
 
-CONFIGURE_ARGS+=    --with-rlm_sql_unixodbc
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_sql_unixodbc
+CONFIGURE_ARGS+=       --without-rlm_ldap
+CONFIGURE_ARGS+=       --without-rlm_yubikey
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_unixodbc.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_sql_unixodbc.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../databases/unixodbc/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/freeradius-unixodbc/PLIST
diff -u pkgsrc/net/freeradius-unixodbc/PLIST:1.1 pkgsrc/net/freeradius-unixodbc/PLIST:1.2
--- pkgsrc/net/freeradius-unixodbc/PLIST:1.1    Sat Aug 26 10:07:29 2017
+++ pkgsrc/net/freeradius-unixodbc/PLIST        Thu Jul  4 07:44:53 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:29 fhajny Exp $
-lib/rlm_sql_unixodbc.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:53 adam Exp $
+lib/rlm_sql_unixodbc.${SOEXT}

Index: pkgsrc/net/freeradius-yubikey/Makefile
diff -u pkgsrc/net/freeradius-yubikey/Makefile:1.2 pkgsrc/net/freeradius-yubikey/Makefile:1.3
--- pkgsrc/net/freeradius-yubikey/Makefile:1.2  Tue Sep 25 12:16:37 2018
+++ pkgsrc/net/freeradius-yubikey/Makefile      Thu Jul  4 07:44:53 2019
@@ -1,16 +1,16 @@
-# $NetBSD: Makefile,v 1.2 2018/09/25 12:16:37 jperkin Exp $
+# $NetBSD: Makefile,v 1.3 2019/07/04 07:44:53 adam Exp $
 
 .include "../../net/freeradius/Makefile.module"
 
-PKGNAME=               ${DISTNAME:S/-server/-yubikey/}
-COMMENT=               Free RADIUS rlm_yubikey module
-CATEGORIES=            net
+PKGNAME=       ${DISTNAME:S/-server/-yubikey/}
+COMMENT=       Free RADIUS rlm_yubikey module
 
-CONFIGURE_ARGS+=    --with-rlm_yubikey
-CONFIGURE_ARGS+=    --without-rlm_ldap
+CONFIGURE_ARGS+=       --with-rlm_yubikey
+CONFIGURE_ARGS+=       --without-rlm_ldap
 
 do-install:
-       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_yubikey.so ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_LIB} ${WRKSRC}/build/lib/.libs/rlm_yubikey.${SOEXT} \
+               ${DESTDIR}${PREFIX}/lib
 
 .include "../../security/libyubikey/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/freeradius-yubikey/PLIST
diff -u pkgsrc/net/freeradius-yubikey/PLIST:1.1 pkgsrc/net/freeradius-yubikey/PLIST:1.2
--- pkgsrc/net/freeradius-yubikey/PLIST:1.1     Sat Aug 26 10:07:29 2017
+++ pkgsrc/net/freeradius-yubikey/PLIST Thu Jul  4 07:44:53 2019
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2017/08/26 10:07:29 fhajny Exp $
-lib/rlm_yubikey.so
+@comment $NetBSD: PLIST,v 1.2 2019/07/04 07:44:53 adam Exp $
+lib/rlm_yubikey.${SOEXT}

Index: pkgsrc/net/freeradius/patches/patch-main_util.c
diff -u pkgsrc/net/freeradius/patches/patch-main_util.c:1.1 pkgsrc/net/freeradius/patches/patch-main_util.c:1.2
--- pkgsrc/net/freeradius/patches/patch-main_util.c:1.1 Sat Aug 26 10:07:28 2017
+++ pkgsrc/net/freeradius/patches/patch-main_util.c     Thu Jul  4 07:44:52 2019
@@ -1,4 +1,5 @@
-$NetBSD: patch-main_util.c,v 1.1 2017/08/26 10:07:28 fhajny Exp $
+$NetBSD: patch-main_util.c,v 1.2 2019/07/04 07:44:52 adam Exp $
+
 O_DIRECTORY to open(2) is a Linuxism.
 
 --- src/main/util.c.orig       2016-09-29 15:19:48.000000000 +0000



Home | Main Index | Thread Index | Old Index