diff options
Diffstat (limited to 'net/netatalk4')
-rw-r--r-- | net/netatalk4/Makefile | 10 | ||||
-rw-r--r-- | net/netatalk4/distinfo | 6 | ||||
-rw-r--r-- | net/netatalk4/files/patch-config_meson.build | 25 | ||||
-rw-r--r-- | net/netatalk4/files/patch-etc_uams_meson.build | 114 | ||||
-rw-r--r-- | net/netatalk4/files/patch-meson.build | 24 | ||||
-rw-r--r-- | net/netatalk4/pkg-plist | 6 |
6 files changed, 86 insertions, 99 deletions
diff --git a/net/netatalk4/Makefile b/net/netatalk4/Makefile index c1a4e53a2acf..b58b54e23d23 100644 --- a/net/netatalk4/Makefile +++ b/net/netatalk4/Makefile @@ -1,5 +1,5 @@ PORTNAME= netatalk -PORTVERSION= 4.2.4 +PORTVERSION= 4.3.0 CATEGORIES= net MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/netatalk-${PORTVERSION:S/./-/g}/ PKGNAMESUFFIX= 4 @@ -13,7 +13,8 @@ LICENSE= GPLv2 BUILD_DEPENDS= cmark:textproc/cmark LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libevent.so:devel/libevent \ - libiniparser.so:devel/iniparser + libiniparser.so:devel/iniparser \ + libbstring.so:devel/bstring USES= bdb:18 cpe gettext iconv:wchar_t meson perl5 pkgconfig shebangfix ssl tar:xz USE_GNOME= libxslt:build @@ -72,7 +73,8 @@ DBUS_MESON_ON= -Dwith-dbus-daemon-path=${LOCALBASE}/bin/dbus-daemon \ -Dwith-dbus-sysconf-path=${LOCALBASE}/etc/dbus-1/system.d DBUS_MESON_OFF= -Dwith-afpstats=false MYSQL_USES= mysql -MYSQL_MESON_OFF=-Dwith-cnid-mysql-backend=false +MYSQL_MESON_ON=-Dwith-cnid-default-backend=mysql +MYSQL_MESON_OFF=-Dwith-cnid-default-backend=dbd ACL_LIB_DEPENDS= libsunacl.so:sysutils/libsunacl ACL_MESON_OFF=-Dwith-acls=false LIBWRAP_MESON_OFF=-Dwith-tcp-wrappers=false @@ -99,7 +101,7 @@ post-patch: # ${WRKSRC}/contrib/shell_utils/afpstats post-install: - ${INSTALL_SCRIPT} ${BUILD_WRKSRC}/contrib/shell_utils/macusers \ + ${INSTALL_SCRIPT} ${BUILD_WRKSRC}/contrib/bin_utils/macusers \ ${STAGEDIR}${PREFIX}/bin/macusers .if ${PORT_OPTIONS:MPAM} diff --git a/net/netatalk4/distinfo b/net/netatalk4/distinfo index 5b6b8e802354..d23ce5d6bfc5 100644 --- a/net/netatalk4/distinfo +++ b/net/netatalk4/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748700219 -SHA256 (netatalk-4.2.4.tar.xz) = 4f07bbe118a951dd740d3f51a87b5cafba2496bd0b22e704438f421aa6670f99 -SIZE (netatalk-4.2.4.tar.xz) = 935184 +TIMESTAMP = 1754580713 +SHA256 (netatalk-4.3.0.tar.xz) = bc71a6a2f11cf00cb69ef13e8487ab78d1241ae535feb010220c74c89dc890fb +SIZE (netatalk-4.3.0.tar.xz) = 945292 diff --git a/net/netatalk4/files/patch-config_meson.build b/net/netatalk4/files/patch-config_meson.build index 63840c721ac7..9c7edeb21c48 100644 --- a/net/netatalk4/files/patch-config_meson.build +++ b/net/netatalk4/files/patch-config_meson.build @@ -1,13 +1,10 @@ ---- config/meson.build.orig 2025-04-13 22:12:29 UTC +--- config/meson.build.orig 2025-08-05 13:56:32 UTC +++ config/meson.build -@@ -4,79 +4,23 @@ afp_conf = configure_file( +@@ -4,76 +4,23 @@ afp_conf = configure_file( configuration: cdata, ) --if ( -- fs.exists(pkgconfdir / 'afp.conf') -- and not get_option('with-overwrite') --) +-if (fs.exists(pkgconfdir / 'afp.conf') and not get_option('with-overwrite')) - message('will not replace existing', pkgconfdir / 'afp.conf') -else - install_data(afp_conf, install_dir: pkgconfdir) @@ -38,7 +35,10 @@ - fs.exists(dbus_sysconfpath / 'netatalk-dbus.conf') - and not get_option('with-overwrite') - ) -- message('will not replace existing', dbus_sysconfpath / 'netatalk-dbus.conf') +- message( +- 'will not replace existing', +- dbus_sysconfpath / 'netatalk-dbus.conf', +- ) - else - install_data('netatalk-dbus.conf', install_dir: dbus_sysconfpath) - endif @@ -55,7 +55,7 @@ - -if get_option('with-cups-libdir-path') != '' - cups_libdir = get_option('with-cups-libdir-path') --elif host_os in ['netbsd'] +-elif host_os == 'netbsd' - cups_libdir = '/usr/pkg/libexec' -else - cups_libdir = '/usr/lib' @@ -72,10 +72,7 @@ -endif - -foreach file : static_conf_files -- if ( -- fs.exists(pkgconfdir / file) -- and not get_option('with-overwrite') -- ) +- if (fs.exists(pkgconfdir / file) and not get_option('with-overwrite')) - message('will not replace existing', pkgconfdir / file) - else - install_data(file, install_dir: pkgconfdir) @@ -83,5 +80,5 @@ -endforeach +install_data('extmap.conf', rename: 'extmap.conf.sample', install_dir: pkgconfdir) - if ( - fs.exists('/etc/ld.so.conf.d') + if (fs.exists('/etc/ld.so.conf.d') and get_option('with-ldsoconf')) + configure_file( diff --git a/net/netatalk4/files/patch-etc_uams_meson.build b/net/netatalk4/files/patch-etc_uams_meson.build index 59fee181fb51..888f935b966b 100644 --- a/net/netatalk4/files/patch-etc_uams_meson.build +++ b/net/netatalk4/files/patch-etc_uams_meson.build @@ -1,6 +1,6 @@ ---- etc/uams/meson.build.orig 2025-03-31 05:27:01 UTC +--- etc/uams/meson.build.orig 2025-08-07 15:36:39 UTC +++ etc/uams/meson.build -@@ -25,7 +25,7 @@ library( +@@ -24,7 +24,7 @@ library( name_suffix: lib_suffix, override_options: 'b_lundef=false', install: true, @@ -8,8 +8,8 @@ + install_dir: libexecdir / 'netatalk-uams', ) - uams_passwd_sources = ['uams_passwd.c'] -@@ -39,7 +39,7 @@ library( + library( +@@ -36,7 +36,7 @@ library( name_suffix: lib_suffix, override_options: 'b_lundef=false', install: true, @@ -17,8 +17,35 @@ + install_dir: libexecdir / 'netatalk-uams', ) - if have_libgcrypt -@@ -56,7 +56,7 @@ if have_libgcrypt + library( +@@ -48,7 +48,7 @@ library( + name_suffix: lib_suffix, + override_options: 'b_lundef=false', + install: true, +- install_dir: libdir / 'netatalk', ++ install_dir: libexecdir / 'netatalk-uams', + ) + + library( +@@ -60,7 +60,7 @@ library( + name_suffix: lib_suffix, + override_options: 'b_lundef=false', + install: true, +- install_dir: libdir / 'netatalk', ++ install_dir: libexecdir / 'netatalk-uams', + ) + + library( +@@ -72,7 +72,7 @@ library( + name_suffix: lib_suffix, + override_options: 'b_lundef=false', + install: true, +- install_dir: libdir / 'netatalk', ++ install_dir: libexecdir / 'netatalk-uams', + ) + + if have_pam +@@ -85,7 +85,7 @@ if have_pam name_suffix: lib_suffix, override_options: 'b_lundef=false', install: true, @@ -27,7 +54,7 @@ ) library( -@@ -68,7 +68,7 @@ if have_libgcrypt +@@ -97,7 +97,7 @@ if have_pam name_suffix: lib_suffix, override_options: 'b_lundef=false', install: true, @@ -36,77 +63,32 @@ ) library( -@@ -80,7 +80,7 @@ if have_libgcrypt +@@ -109,40 +109,40 @@ if have_pam name_suffix: lib_suffix, override_options: 'b_lundef=false', install: true, - install_dir: libdir / 'netatalk', + install_dir: libexecdir / 'netatalk-uams', ) - if have_pam - uams_dhx2_pam_sources = ['uams_dhx2_pam.c'] -@@ -94,20 +94,20 @@ if have_libgcrypt - name_suffix: lib_suffix, - override_options: 'b_lundef=false', - install: true, -- install_dir: libdir / 'netatalk', -+ install_dir: libexecdir / 'netatalk-uams', - ) - if build_shared_lib - install_symlink( - 'uams_dhx2.so', -- install_dir: libdir / 'netatalk', -+ install_dir: libexecdir / 'netatalk-uams', - pointing_to: 'uams_dhx2_pam.so', - ) - endif - elif build_shared_lib + if build_shared_lib install_symlink( - 'uams_dhx2.so', -- install_dir: libdir / 'netatalk', -+ install_dir: libexecdir / 'netatalk-uams', - pointing_to: 'uams_dhx2_passwd.so', - ) - endif -@@ -123,20 +123,20 @@ if have_libgcrypt - name_suffix: lib_suffix, - override_options: 'b_lundef=false', - install: true, + 'uams_clrtxt.so', - install_dir: libdir / 'netatalk', + install_dir: libexecdir / 'netatalk-uams', + pointing_to: 'uams_pam.so', ) - - if build_shared_lib - install_symlink( - 'uams_dhx.so', -- install_dir: libdir / 'netatalk', -+ install_dir: libexecdir / 'netatalk-uams', - pointing_to: 'uams_dhx_pam.so', - ) - endif - elif build_shared_lib install_symlink( 'uams_dhx.so', - install_dir: libdir / 'netatalk', + install_dir: libexecdir / 'netatalk-uams', - pointing_to: 'uams_dhx_passwd.so', + pointing_to: 'uams_dhx_pam.so', ) - endif -@@ -155,20 +155,20 @@ if have_pam - name_suffix: lib_suffix, - override_options: 'b_lundef=false', - install: true, -- install_dir: libdir / 'netatalk', -+ install_dir: libexecdir / 'netatalk-uams', - ) - - if build_shared_lib install_symlink( - 'uams_clrtxt.so', + 'uams_dhx2.so', - install_dir: libdir / 'netatalk', + install_dir: libexecdir / 'netatalk-uams', - pointing_to: 'uams_pam.so', + pointing_to: 'uams_dhx2_pam.so', ) endif elif build_shared_lib @@ -116,8 +98,20 @@ + install_dir: libexecdir / 'netatalk-uams', pointing_to: 'uams_passwd.so', ) + install_symlink( + 'uams_dhx.so', +- install_dir: libdir / 'netatalk', ++ install_dir: libexecdir / 'netatalk-uams', + pointing_to: 'uams_dhx_passwd.so', + ) + install_symlink( + 'uams_dhx2.so', +- install_dir: libdir / 'netatalk', ++ install_dir: libexecdir / 'netatalk-uams', + pointing_to: 'uams_dhx2_passwd.so', + ) endif -@@ -186,6 +186,6 @@ if have_krb5_uam +@@ -158,6 +158,6 @@ if have_krb5_uam name_suffix: lib_suffix, override_options: 'b_lundef=false', install: true, diff --git a/net/netatalk4/files/patch-meson.build b/net/netatalk4/files/patch-meson.build index da36be7b9a98..971d3a2eecf1 100644 --- a/net/netatalk4/files/patch-meson.build +++ b/net/netatalk4/files/patch-meson.build @@ -1,4 +1,4 @@ ---- meson.build.orig 2025-03-31 05:27:01 UTC +--- meson.build.orig 2025-08-05 13:56:32 UTC +++ meson.build @@ -69,6 +69,7 @@ libdir = prefix / get_option('libdir') datadir = prefix / get_option('datadir') @@ -17,15 +17,15 @@ ############ # Includes # -@@ -394,6 +395,7 @@ bdb_subdirs = [ - endif +@@ -408,6 +409,7 @@ if 'dbd' in get_option('with-cnid-backends') + endif - bdb_subdirs = [ -+ '%%DB_NAME%%', - 'db62', - 'db6.2', - 'db61', -@@ -775,12 +777,12 @@ dns_sd_libs = [] + bdb_subdirs = [ ++ '%%DB_NAME%%', + 'db62', + 'db6.2', + 'db61', +@@ -924,12 +926,12 @@ dns_sd_libs = [] dns_sd_libs = [] @@ -40,7 +40,7 @@ if dns_sd.found() dns_sd_libs += system endif -@@ -794,6 +796,8 @@ have_dns = ( +@@ -943,6 +945,8 @@ have_dns = ( ) ) @@ -49,7 +49,7 @@ if enable_zeroconf if avahi.found() have_zeroconf = true -@@ -807,6 +811,7 @@ if enable_zeroconf +@@ -956,6 +960,7 @@ if enable_zeroconf cdata.set('HAVE_MDNS', 1) cdata.set('freebsd_zeroconf', 'mdnsd') zeroconf_provider += 'mDNS' @@ -57,7 +57,7 @@ endif endif -@@ -1535,6 +1540,7 @@ if not enable_pam +@@ -1562,6 +1567,7 @@ if not enable_pam if not enable_pam have_pam = false diff --git a/net/netatalk4/pkg-plist b/net/netatalk4/pkg-plist index cb431efc3325..dfced504a0b1 100644 --- a/net/netatalk4/pkg-plist +++ b/net/netatalk4/pkg-plist @@ -39,7 +39,6 @@ include/atalk/aep.h include/atalk/afp.h include/atalk/asp.h include/atalk/atp.h -include/atalk/bstrlib.h include/atalk/cnid.h include/atalk/ddp.h include/atalk/ea.h @@ -70,11 +69,6 @@ sbin/cnid_metad sbin/netatalk share/man/man1/ad.1.gz share/man/man1/addump.1.gz -share/man/man1/afp_lantest.1.gz -share/man/man1/afp_logintest.1.gz -share/man/man1/afp_spectest.1.gz -share/man/man1/afp_speedtest.1.gz -share/man/man1/afparg.1.gz share/man/man1/afpldaptest.1.gz share/man/man1/afppasswd.1.gz %%DBUS%%share/man/man1/afpstats.1.gz |