diff --git a/Mk/Uses/emacs.mk b/Mk/Uses/emacs.mk index 462657c4183a..6e52fa3c0d2f 100644 --- a/Mk/Uses/emacs.mk +++ b/Mk/Uses/emacs.mk @@ -1,155 +1,76 @@ -# Provide support for ports requiring Emacs. This includes flavors with proper -# dependencies and useful variables. +# Provide support for ports requiring Emacs. # # Feature: emacs # Usage: USES=emacs or USES=emacs:args -# Valid ARGS: build, run, noflavors +# Valid ARGS: build # # build Indicates that Emacs is required at build time. -# run Indicates that Emacs is required at run time. -# noflavors Prevents flavors. This is implied when there is no run -# dependency on Emacs. # -# If build and run are omitted from the argument list, Emacs will be added to -# BUILD_DEPENDS and RUN_DEPENDS. EMACS_NO_DEPENDS can be set to prevent both -# dependencies. +# If build is omitted from the argument list, Emacs will not be added to +# BUILD_DEPENDS. # # Variables, which can be set in make.conf: -# DEFAULT_VERSIONS+= The default flavor for ports with -# USES=emacs can be added to DEFAULT_VERSIONS. -# For example: DEFAULT_VERSIONS+= emacs=nox -# Valid flavors: full canna nox wayland -# devel_full devel_nox -# Flavors specified on the command line take -# precedence. -# -# Variables, which can be set by ports: -# EMACS_FLAVORS_EXCLUDE: Do NOT build these Emacs flavors. -# If EMACS_FLAVORS_EXCLUDE is not defined and -# - there is a run dependency on Emacs -# - the noflavors argument is not specified -# then all valid Emacs flavors are assumed. -# -# EMACS_NO_DEPENDS: Do NOT add build or run dependencies on Emacs. -# This will prevent flavors, and no byte code files -# will be generated as part of the package. +# DEFAULT_VERSIONS+=emacs= Select the Emacs port and flavor used for +# USES=emacs:build. +# Valid values: full canna nox wayland +# devel_full devel_nox +# Defaults to nox when not specified. +# Values prefixed with devel_ select +# editors/emacs-devel; others select +# editors/emacs. # # Variables, which can be read by ports: # EMACS_CMD: Emacs command with full path (e.g. /usr/local/bin/emacs-30.2) -# EMACS_FLAVOR: Used for dependencies (e.g. BUILD_DEPENDS= dash.el${EMACS_PKGNAMESUFFIX}>0:devel/dash@${EMACS_FLAVOR}) -# EMACS_LIBDIR: Emacs Library directory without ${PREFIX} (e.g. share/emacs) -# EMACS_LIBDIR_WITH_VER: Library directory without ${PREFIX} including version (e.g. share/emacs/30.2) # EMACS_MAJOR_VER: Emacs major version (e.g. 30) -# EMACS_PKGNAMESUFFIX: PKGNAMESUFFIX to distinguish Emacs flavors +# EMACS_LIBDIR: Emacs Library directory without ${PREFIX} (e.g. share/emacs) # EMACS_SITE_LISPDIR: Emacs site-lisp directory without ${PREFIX} (e.g. share/emacs/site-lisp) -# EMACS_VER: Emacs version (e.g. 30.2) -# EMACS_VERSION_SITE_LISPDIR: Include version (e.g. share/emacs/30.2/site-lisp) +# +# Note: EMACS_CMD and EMACS_MAJOR_VER are only set if the build argument is +# supplied. +# +# Note: No Emacs runtime dependency is declared here. USES=emacs ports now +# install only .el source files, avoiding the combinatorial explosion of +# flavor-specific packages. Native compilation is handled at runtime by the +# site-wide configuration shipped with editors/emacs and editors/emacs-devel. #------------------------------------------------------------------------------- # # MAINTAINER: emacs@FreeBSD.org .if !defined(_INCLUDE_USES_EMACS_MK) _INCLUDE_USES_EMACS_MK= yes # Make sure that no dependency or some other environment variable # pollutes the build/run dependency detection .undef _EMACS_BUILD_DEP -.undef _EMACS_RUN_DEP -.undef _EMACS_NOFLAVORS _EMACS_ARGS= ${emacs_ARGS:S/,/ /g} . if ${_EMACS_ARGS:Mbuild} _EMACS_BUILD_DEP= yes _EMACS_ARGS:= ${_EMACS_ARGS:Nbuild} . endif -. if ${_EMACS_ARGS:Mrun} -_EMACS_RUN_DEP= yes -_EMACS_ARGS:= ${_EMACS_ARGS:Nrun} -. endif -. if ${_EMACS_ARGS:Mnoflavors} -_EMACS_NOFLAVORS= yes -_EMACS_ARGS:= ${_EMACS_ARGS:Nnoflavors} -. endif - -# If the port does not specify a build or run dependency, and does not define -# EMACS_NO_DEPENDS, assume both dependencies are required. -. if !defined(_EMACS_BUILD_DEP) && !defined(_EMACS_RUN_DEP) && \ - !defined(EMACS_NO_DEPENDS) -_EMACS_BUILD_DEP= yes -_EMACS_RUN_DEP= yes -. endif - -# Only set FLAVORS when... -. if defined(_EMACS_RUN_DEP) && !defined(_EMACS_NOFLAVORS) -FLAVORS= full canna nox wayland devel_full devel_nox -# Sort the default to be first -. if defined(EMACS_DEFAULT) -FLAVORS:= ${EMACS_DEFAULT} ${FLAVORS:N${EMACS_DEFAULT}} -. endif -. for flavor in ${EMACS_FLAVORS_EXCLUDE} -FLAVORS:= ${FLAVORS:N${flavor}} -. endfor -. endif - -# Only set FLAVOR when... -. if defined(_EMACS_RUN_DEP) && !defined(_EMACS_NOFLAVORS) && empty(FLAVOR) -. if defined(EMACS_DEFAULT) -FLAVOR= ${EMACS_DEFAULT} -. else -FLAVOR= ${FLAVORS:[1]} -. endif # defined(EMACS_DEFAULT) -. endif # !defined(_EMACS_NOFLAVORS) && defined(_EMACS_RUN_DEP) && empty(FLAVOR) -. if !empty(FLAVOR) -EMACS_FLAVOR= ${FLAVOR} -. else -EMACS_FLAVOR= full -. endif +EMACS_LIBDIR= share/emacs +EMACS_SITE_LISPDIR= ${EMACS_LIBDIR}/site-lisp -. if ${FLAVOR:Mdevel*} +. if defined(_EMACS_BUILD_DEP) +. if defined(EMACS_DEFAULT) && ${EMACS_DEFAULT:Mdevel*} EMACS_VER= 31.0.50 EMACS_PORTDIR= editors/emacs-devel -. else +EMACS_BUILD_FLAVOR= ${EMACS_DEFAULT:C/devel_//} +. else EMACS_VER= 30.2 EMACS_PORTDIR= editors/emacs -. endif - +EMACS_BUILD_FLAVOR= ${EMACS_DEFAULT:Unox} +. endif +EMACS_CMD= ${PREFIX}/bin/emacs-${EMACS_VER} EMACS_MAJOR_VER= ${EMACS_VER:C/\..*//} -EMACS_LIBDIR= share/emacs -EMACS_LIBDIR_WITH_VER= share/emacs/${EMACS_VER} -EMACS_PORT_NAME= emacs${EMACS_MAJOR_VER} - -. if ${EMACS_FLAVOR} == "devel_full" -EMACS_PKGNAMESUFFIX= -emacs_devel -. elif ${EMACS_FLAVOR} == "devel_nox" -EMACS_PKGNAMESUFFIX= -emacs_devel_nox -. elif ${EMACS_FLAVOR} == "full" -EMACS_PKGNAMESUFFIX= -. else -EMACS_PKGNAMESUFFIX= -emacs_${EMACS_FLAVOR} -. endif - -EMACS_CMD= ${PREFIX}/bin/emacs-${EMACS_VER} -EMACS_SITE_LISPDIR= ${EMACS_LIBDIR}/site-lisp -EMACS_VERSION_SITE_LISPDIR= ${EMACS_LIBDIR_WITH_VER}/site-lisp - -. if defined(_EMACS_BUILD_DEP) -BUILD_DEPENDS+= ${EMACS_CMD}:${EMACS_PORTDIR}@${EMACS_FLAVOR:C/devel_//} -. endif -. if defined(_EMACS_RUN_DEP) -RUN_DEPENDS+= ${EMACS_CMD}:${EMACS_PORTDIR}@${EMACS_FLAVOR:C/devel_//} +MAKE_ARGS+= EMACS=${EMACS_CMD} +BUILD_DEPENDS+= ${EMACS_CMD}:${EMACS_PORTDIR}@${EMACS_BUILD_FLAVOR} . endif -MAKE_ARGS+= EMACS=${EMACS_CMD} SCRIPTS_ENV+= EMACS_LIBDIR=${EMACS_LIBDIR} \ - EMACS_VER=${EMACS_VER} \ - EMACS_LIBDIR_WITH_VER=${EMACS_LIBDIR_WITH_VER} \ - EMACS_SITE_LISPDIR=${EMACS_SITE_LISPDIR} \ - EMACS_VERSION_SITE_LISPDIR=${EMACS_VERSION_SITE_LISPDIR} + EMACS_SITE_LISPDIR=${EMACS_SITE_LISPDIR} PLIST_SUB+= EMACS_LIBDIR=${EMACS_LIBDIR} \ - EMACS_VER=${EMACS_VER} \ - EMACS_LIBDIR_WITH_VER=${EMACS_LIBDIR_WITH_VER} \ - EMACS_SITE_LISPDIR=${EMACS_SITE_LISPDIR} \ - EMACS_VERSION_SITE_LISPDIR=${EMACS_VERSION_SITE_LISPDIR} + EMACS_SITE_LISPDIR=${EMACS_SITE_LISPDIR} .endif # _INCLUDE_USES_EMACS_MK diff --git a/Mk/bsd.default-versions.mk b/Mk/bsd.default-versions.mk index 0ecae84f1e5b..313246180c53 100644 --- a/Mk/bsd.default-versions.mk +++ b/Mk/bsd.default-versions.mk @@ -1,205 +1,205 @@ # MAINTAINER: ports@FreeBSD.org # # Note: before committing to this file, contact portmgr to arrange for an # experimental ports run. Untested commits may be backed out at portmgr's # discretion. # # Provide default versions for ports with multiple versions selectable # by the user. # # Users who want to override these defaults can easily do so by defining # DEFAULT_VERSIONS in their make.conf as follows: # # DEFAULT_VERSIONS= perl5=5.20 ruby=3.1 .if !defined(_INCLUDE_BSD_DEFAULT_VERSIONS_MK) _INCLUDE_BSD_DEFAULT_VERSIONS_MK= yes LOCALBASE?= /usr/local . for lang in APACHE BDB COROSYNC EBUR128 EMACS FIREBIRD FORTRAN FPC GCC \ GHOSTSCRIPT GL GO GUILE IMAGEMAGICK JAVA LAZARUS LIBRSVG2 LINUX LLVM \ LUA LUAJIT MONO MYSQL NINJA NODEJS OPENLDAP PERL5 PGSQL PHP \ PYCRYPTOGRAPHY PYTHON PYTHON2 RUBY RUST SAMBA SSL TCLTK VARNISH . if defined(${lang}_DEFAULT) ERROR+= "The variable ${lang}_DEFAULT is set and it should only be defined through DEFAULT_VERSIONS+=${lang:tl}=${${lang}_DEFAULT} in /etc/make.conf" . endif #.undef ${lang}_DEFAULT . endfor . for lang in ${DEFAULT_VERSIONS} _l= ${lang:C/=.*//g} ${_l:tu}_DEFAULT= ${lang:C/.*=//g} . endfor # Possible values: 2.4 APACHE_DEFAULT?= 2.4 # Possible values: 5, 18 BDB_DEFAULT?= 5 # Possible values: 2, 3 COROSYNC_DEFAULT?= 3 # Possible values: rust, legacy . if empty(ARCH:Naarch64:Namd64:Narmv7:Ni386:Npowerpc64:Npowerpc64le:Npowerpc:Nriscv64) EBUR128_DEFAULT?= rust . else EBUR128_DEFAULT?= legacy . endif -# Possible_values: full canna nox devel_full devel_nox -#EMACS_DEFAULT?= let the flavor be the default if not explicitly set +# Possible values: full canna nox wayland devel_full devel_nox (default: nox) +#EMACS_DEFAULT?= nox # Possible values: 3.0, 4.0 FIREBIRD_DEFAULT?= 3.0 # Possible values: gfortran FORTRAN_DEFAULT?= gfortran # Possible values: 3.2.3, 3.3.1 . if (defined(WANT_FPC_DEVEL) && !empty(WANT_FPC_DEVEL)) || ${ARCH:Maarch64} || ${ARCH:Mpowerpc*} FPC_DEFAULT?= 3.3.1 . else FPC_DEFAULT?= 3.2.3 . endif # Possible values: 12, 13, 14, 15, 16 # (Any other version is completely unsupported and not meant for general use.) GCC_DEFAULT?= 14 # Possible values: 10 GHOSTSCRIPT_DEFAULT?= 10 # Possible values: mesa-libs, mesa-devel GL_DEFAULT?= mesa-libs # Possible values: 1.24, 1.25, 1.26 GO_DEFAULT?= 1.25 # Possible values: 1.8, 2.2, 3.0 GUILE_DEFAULT?= 2.2 # Possible versions: 6, 7 # Possible flavors: x11, nox11 # (defaults to x11 when not specified) # Format: version[-flavor] # Examples: 6-nox11, 7 IMAGEMAGICK_DEFAULT?= 7 # Possible values: 8, 11, 17, 21, 22, 23, 24, 25 . if ${ARCH:Marmv*} || ${ARCH} == powerpc JAVA_DEFAULT?= 11 . elif ${ARCH:Mi386} JAVA_DEFAULT?= 21 . else JAVA_DEFAULT?= 25 . endif # Possible values: 4.6, 4.99 . if (defined(WANT_LAZARUS_DEVEL) && !empty(WANT_LAZARUS_DEVEL)) || ${ARCH:Maarch64} || ${ARCH:Mpowerpc*} LAZARUS_DEFAULT?= 4.99 . else LAZARUS_DEFAULT?= 4.6 . endif # Possible values: rust, legacy . if empty(ARCH:Naarch64:Namd64:Narmv7:Ni386:Npowerpc64:Npowerpc64le:Npowerpc:Nriscv64) LIBRSVG2_DEFAULT?= rust . else LIBRSVG2_DEFAULT?= legacy . endif # Possible values: c7 rl9 . if ${ARCH:Mi386} LINUX_DEFAULT?= c7 . else LINUX_DEFAULT?= rl9 . endif # Possible values: 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, -devel (to be used when non-base compiler is required) LLVM_DEFAULT?= 19 # Possible values: 5.1, 5.2, 5.3, 5.4 LUA_DEFAULT?= 5.4 # Possible values: luajit, luajit-openresty . if ${ARCH:Mpowerpc64*} LUAJIT_DEFAULT?= luajit-openresty . else LUAJIT_DEFAULT?= luajit . endif # Possible values: 5.10, 5.20, 6.8 MONO_DEFAULT?= 5.20 # Possible values: 8.0, 8.4, 9.6, 10.6m, 10.11m, 11.4m, 11.8m MYSQL_DEFAULT?= 8.4 # Possible values: ninja, samurai NINJA_DEFAULT?= ninja # Possible value: 20, 22, 24, 25, current, lts (Note: current = 25 and lts = 24) NODEJS_DEFAULT?= lts # Possible value: 25, 26 OPENLDAP_DEFAULT?= 26 # Possible values: 5.38, 5.40, 5.42, devel . if !exists(${LOCALBASE}/bin/perl) || (!defined(_PORTS_ENV_CHECK) && \ defined(PACKAGE_BUILDING)) # When changing the default here, make sure the DEPRECATED/EXPIRATION lines in # the older Perl 5 ports are uncommented at the same time. PERL5_DEFAULT?= 5.42 . elif !defined(PERL5_DEFAULT) # There's no need to replace development versions, like "5.23" with "devel" # because 1) nobody is supposed to use it outside of poudriere, and 2) it must # be set manually in /etc/make.conf in the first place, and we're never getting # in here. . if !defined(_PERL5_FROM_BIN) _PERL5_FROM_BIN!= ${LOCALBASE}/bin/perl -e 'printf "%vd\n", $$^V;' . endif _EXPORTED_VARS+= _PERL5_FROM_BIN PERL5_DEFAULT:= ${_PERL5_FROM_BIN:R} . endif # Possible values: 13, 14, 15, 16, 17, 18 PGSQL_DEFAULT?= 18 # Possible values: 8.2, 8.3, 8.4, 8.5 PHP_DEFAULT?= 8.4 # Possible values: rust, legacy . if empty(ARCH:Naarch64:Namd64:Narmv7:Ni386:Npowerpc64:Npowerpc64le:Npowerpc:Nriscv64) PYCRYPTOGRAPHY_DEFAULT?= rust . else PYCRYPTOGRAPHY_DEFAULT?= legacy . endif # Possible values: 3.10, 3.11, 3.12, 3.13, 3.13t, 3.14 PYTHON_DEFAULT?= 3.11 # Possible values: 2.7 PYTHON2_DEFAULT?= 2.7 # Possible values: 3.2, 3.3, 3.4, 4.0 RUBY_DEFAULT?= 3.3 # Possible values: rust, rust-nightly RUST_DEFAULT?= rust # Possible values: 4.16, 4.19, 4.20, 4.22, 4.23 SAMBA_DEFAULT?= 4.16 # When updating this, please also update the same list in ssl.mk and the checks # for USES=ssl in qa.sh! # Possible values: base, openssl, openssl111, openssl34, openssl35, # openssl36, libressl, libressl-devel . if !defined(SSL_DEFAULT) # If no preference was set, check for an installed base version # but give an installed port preference over it. . if !defined(SSL_DEFAULT) && \ !exists(${DESTDIR}/${LOCALBASE}/lib/libcrypto.so) && \ exists(${DESTDIR}/usr/include/openssl/opensslv.h) SSL_DEFAULT= base . else . if exists(${DESTDIR}/${LOCALBASE}/lib/libcrypto.so) . if defined(PKG_BIN) # find installed port and use it for dependency . if !defined(OPENSSL_INSTALLED) . if defined(DESTDIR) PKGARGS= -c ${DESTDIR} . else PKGARGS= . endif OPENSSL_INSTALLED!= ${PKG_BIN} ${PKGARGS} which -qo ${LOCALBASE}/lib/libcrypto.so || : . endif . if defined(OPENSSL_INSTALLED) && !empty(OPENSSL_INSTALLED) SSL_DEFAULT:= ${OPENSSL_INSTALLED:T} WARNING+= "You have ${OPENSSL_INSTALLED} installed but do not have DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT} set in your make.conf" . endif . else check-makevars:: @${ECHO_MSG} "You have a ${LOCALBASE}/lib/libcrypto.so file installed, but the framework is unable" @${ECHO_MSG} "to determine what port it comes from." @${ECHO_MSG} "Add DEFAULT_VERSIONS+=ssl= to your /etc/make.conf and try again." @${FALSE} . endif . endif . endif # Make sure we have a default in the end SSL_DEFAULT?= base . endif # Possible values: default, sssd SUDO_DEFAULT?= default # Possible values: 8.6, 9.0 TCLTK_DEFAULT?= 8.6 # Possible values: 6, 7 VARNISH_DEFAULT?= 6 .endif diff --git a/UPDATING b/UPDATING index bf07357a41a0..3df8d6e96241 100644 --- a/UPDATING +++ b/UPDATING @@ -1,4955 +1,4985 @@ This file documents some of the problems you may encounter when upgrading your ports. We try our best to minimize these disruptions, but sometimes they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20260411: + AFFECTS: AFFECTS: users of elisp (*-emacs_*) packages + AUTHOR: jrm@FreeBSD.org + + Packages for different flavors of elisp ports have been removed. For + example, the old and new packages for devel/tablist are: + |-------------------------+---------| + | Before | After | + |-------------------------+---------| + | tablist | tablist | + | tablist-emacs_canna | | + | tablist-emacs_devel_nox | | + | tablist-emacs_devel | | + | tablist-emacs_nox | | + | tablist-emacs_wayland | | + |-------------------------+---------| + + If you have any -emacs_* packages installed, simply running `pkg upgrade` + will not upgrade and replace them with the new package. Run these commands + under /bin/sh with superuser privileges before upgrading. + + for i in $(pkg query -g %n *-emacs_*); do + if [ "$i" != "notmuch-emacs_*" ]; then + nn=$(echo "$i" | sed -e 's/-emacs_[a-z_]*//') + else + nn=$(echo "$i" | sed -e 's/-emacs_[a-z_]*/-emacs/') + fi + pkg set -yn "$i":"$nn" + done + 20260401: AFFECTS: users of security/openvpn AUTHOR: mandree@FreeBSD.org The openvpn 2.7 port update no longer installs the openvpn-client.up and openvpn-client.down scripts into libexec/, but instead a dns-updown script into libexec/openvpn/. Review your configuration, and the openvpn man page for --dns-updown. 20260329: AFFECTS: users of java/openjdk25 and java/openjdk26 with the jre flavor AUTHOR: jrm@FreeBSD.org The openjdk-jre packages for versions 25 and 26 have been renamed. Users with the old package names installed should run the following /bin/sh script with superuser privileges before upgrading. jre=$(pkg query -g %n-%v "*openjdk-jre-25*" "*openjdk-jre-26*") if echo "$jre" | grep -q "\-25"; then on=$(pkg query -g %n "*openjdk-jre-25*") nn="openjdk25-jre" elif echo "$jre" | grep -q "\-26"; then on=$(pkg query -g %n "*openjdk-jre-26*") nn="openjdk26-jre" fi if [ -n "$nn" ]; then pkg set -yn "$on":"$nn" fi 20260327: AFFECTS: users of x11/nvidia-{driver, kmod} AUTHOR: junchoon@dec.sakura.ne.jp x11/nvidia-driver and x11/nvidia-kmod are upgraded to latest Production Branch [PB] of upstream driver package. Just as -devel variant upgraded 20260103, this version drops support for a bunch of old (pre-Turing generations of architecture) GPUs. You can find still supported GPUs below. https://us.download.nvidia.com/XFree86/FreeBSD-x86_64/595.58.03/README/supportedchips.html So anyone using related ports x11/nvidia-kmod x11/nvidia-driver graphics/nvidia-drm-{510|515|61|66|latest}-kmod x11/linux-nvidia-libs with dropped GPUs needs to switch to newly added legacy 580 ports. x11/nvidia-kmod-580 x11/nvidia-driver-580 graphics/nvidia-drm-{510|515|61|66|latest}-kmod-580 x11/linux-nvidia-libs-580 Deinstalling master ports above and reinstalling -580 variant of ports above would do the right things. If any of above hesitates to upgrade with version conflicts of graphics/eglexternalplatform, upgrade it first and retrying failed ones should help. 20260326: AFFECTS: users of databases/mysql80-(server|client) AUTHOR: joneum@FreeBSD.org The default MySQL version has been updated from 8.0 to 8.4. If you compile your own ports you may keep 8.0 as the default version by adding the following lines to your /etc/make.conf file: # # Keep MySQL 8.0 as default version # DEFAULT_VERSIONS+=mysql=8.0 If you wish to update to the new default version, you need to first stop any running server instance. Then, you will need to follow these steps, depending on installed packages. # pkg set -o databases/mysql80-client:databases/mysql84-client # pkg set -o databases/mysql80-server:databases/mysql84-server # pkg upgrade 20260325: AFFECTS: users of math/coq AUTHOR: jrm@FreeBSD.org Upstream no longer installs Emacs lisp, so the Emacs flavors have been removed. In order for a `pkg upgrade` to install new versions of coq, any installed package for a non-default flavor must be renamed. Do this by running the commands below under /bin/sh with superuser privileges: on=$(pkg query -g %n coq-emacs_*) nn=$(pkg query -g %n g coq-emacs_* | sed -e 's/-emacs_[a-z_]*//') pkg set -n "$on":"$nn" 20260304: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org 1. With the NetBox 4.5 release Python 3.10 and 3.11 are officially no longer supported. The whole code can still be compiled without any problems using Python 3.11, which is the current default version in the ports tree. Therefore, the minimum version for Python doesn't need to be raised for the time being, but this may change at any time as soon as backward-incompatible changes to the code lands into upstream for the next release. Thus, no further action is required at this time. However, it's still recommended to switch to Python 3.12 or newer in the near future. 2. Please also check the pkg-message and the changelogs for further info. 20260325: AFFECTS: Users of net-mgmt/ping_exporter AUTHOR: ivy@FreeBSD.org The format of ping_exporter's configuration file has changed. Refer to https://github.com/czerwonk/ping_exporter/releases/tag/v1.2.0 for upstream documentation on how to migrate. 20260301: AFFECTS: users of databases/postgresql* and other software using PostgreSQL to run AUTHOR: kbowling@FreeBSD.org The default version of PostgreSQL has been switched from 17 to 18. The upgrade procedure can use up twice the space the databases currently needs. If you have a big amount of stored data take a closer look at the manpage of pg_upgrade for avoidance and/or speedup of the upgrade. The upgrade instructions consider a basic usage and do not match complex scenarios like replication, sharding, or similar. Upgrade instructions: First stop your PostgreSQL, create PostgreSQL-binaries and backup your data. If you have another Version of PostgreSQL installed, for example 17, your files are named according to this. # service postgresql stop # pkg create postgresql17-server postgresql17-contrib # mkdir /tmp/pg-upgrade # tar xf postgresql17-server-17.9.pkg -C /tmp/pg-upgrade # tar xf postgresql17-contrib-17.9.pkg -C /tmp/pg-upgrade # pkg delete -f databases/postgresql17-server databases/postgresql17-contrib databases/postgresql17-client Now update PostgreSQL: pkg user: # pkg install databases/postgresql18-server databases/postgresql18-contrib # pkg upgrade Portmaster users: # portmaster databases/postgresql18-server databases/postgresql18-contrib # portmaster -a Portupgrade users: # portinstall databases/postgresql18-server databases/postgresql18-contrib # portupgrade -a After installing the new PostgreSQL version you need to convert all your databases to new version: # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C --no-data-checksums -D /var/db/postgres/data18 -U postgres" # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data17/ -B /usr/local/bin/ -D /var/db/postgres/data18/ -U postgres " Now the migration is finished. You can start PostgreSQL again with: # service postgresql start ATTENTION: 1) If you use non-default initdb options, you have to adjust the initdb-command accordingly 2) The initdb in the upgrade procedure uses '--no-data-checksums' to enable pg_upgrade from before this change. You should review the documentation and decide whether you want to then enable checksums with pg_checksums. Future upgrade instructions for PostgreSQL 19 and later will assume a default initdb, and therefore that checksums are enabled. 20260226: AFFECTS: users of sysutils/symon AUTHOR: jamie@catflap.org The old WITHOUT_SYMON and WITHOUT_SYMUX knobs have been replaced with the port options SYMON and SYMUX. The legacy "WITHOUT_RRD" knob has been retired. 20260226: AFFECTS: users of java/openjdk* AUTHOR: ronald@FreeBSD.org Version JAVA_DEFAULT is updated from 8 to 21. No specific action should be needed, just a heads-up to test before deploying to production as this is quite a big step in versions. 20260225: AFFECTS: users of net-im/gotosocial AUTHOR: tilde@ultros.pro net-im/gotosocial has been updated to 0.21.0 New configuration options have been added and the upgrade involves lengthy database migrations which must not be interrupted. Upgrade procedure: 1. # service gotosocial stop 2. Backup database 3. # pkg upgrade gotosocial 4. Merge new options from etc/gotosocial/config.yaml.sample 5. # service gotosocial start (do not interrupt database migrations!) See details at https://codeberg.org/superseriousbusiness/gotosocial/releases/tag/v0.21.0 20260206: AFFECTS: users of devel/freebsd-git-devtools AUTHOR: jrm@FreeBSD.org To improve discoverability with pkg search, devel/freebsd-git-devtools has been split into devel/freebsd-git-arc and devel/mfc-candidates. To remove the old package and install the new ones, use: # pkg install freebsd-git-arc mfc-candidates 20260202: AFFECTS: users of www/bluefish AUTHOR: eduardo@FreeBSD.org www/bluefish has been updated to 2.4.0. Starting from 2.4 Bluefish will place config files no longer in ~/.bluefish. On FreeBSD it will be ~/.config and ~/.local/ See details at https://sourceforge.net/p/bluefish/code/HEAD/tree/tags/bluefish_2_4_0/ChangeLog 20260125: AFFECTS: users of dns/ddclient AUTHOR: mjl@luckie.org.nz dns/ddclient has been updated to v4.0.0. This release moves the default configuration file location from /usr/local/etc/ to /usr/local/etc/ddclient/. Please move your existing ddclient.conf to the new location before restarting ddclient. See details at https://github.com/ddclient/ddclient/releases/tag/v4.0.0 20260115: AFFECTS: users of lang/cython* and USE_PYTHON=cython* AUTHOR: sunpoet@FreeBSD.org lang/cython has been updated to 3.2.4. To support ports that still require the legacy 0.x branch, lang/cython0 has been added (version 0.29.37). lang/cython3 has been removed as it is now redundant with lang/cython. Port maintainers should note the following changes: - Ports requiring Cython 0.x now use USE_PYTHON=cython0{,_run}. - Ports previously using cython3{,_run,_test} now use USE_PYTHON=cython{,_run,_test}. 20260109: AFFECTS: users of net-mgmt/librenms AUTHOR: dvl@FreeBSD.org mysql-client is no longer a dependency. This allows users to select mysql or mariadb at run time. This was not possible before. 20260103: AFFECTS: users of x11/nvidia-{driver, kmod}-devel variants AUTHOR: junchoon@dec.sakura.ne.jp x11/nvidia-driver-devel and x11/nvidia-kmod-devel are upgraded to latest New Feature Branch [NFB] of upstream driver package. This version drops support for a bunch of old (pre-Turing generations of architecture) GPUs. You can find still supported GPUs below. https://us.download.nvidia.com/XFree86/FreeBSD-x86_64/590.48.01/README/supportedchips.html So anyone using -devel variants of related ports x11/nvidia-kmod-devel x11/nvidia-driver-devel graphics/nvidia-drm-{510|515|61|66|latest}-kmod-devel x11/linux-nvidia-libs-devel with dropped GPUs needs to switch to non-devel master ports. x11/nvidia-kmod x11/nvidia-driver graphics/nvidia-drm-{510|515|61|66|latest}-kmod x11/linux-nvidia-libs Deinstalling -devel variants above and reinstalling master ports above would do the right things. If any of above hesitates to upgrade with version conflicts of graphics/eglexternalplatform, upgrade it first and retrying failed ones should help. At the same time, 580.* and 590.* series of drivers for FreeBSD now work with 2 additional libraries installed via graphics/egl-x11. This is now one of the dependencies of x11/nvidia-driver{-devel}. It would be automatically pulled in on upgrades. Note that new legacy branch -580 would be created once Production Branch of upstream driver package switches to 590 series or later. 20251228: AFFECTS: users of net/rsync AUTHOR: rodrigo@FreeBSD.org Add a new option PYTHON that controls when the Python script sbin/rrsync is installed and adds the necessary dependencies. By default this option is off; updating the package will remove the rrsync script. 20251208: AFFECTS: users of net-mgmt/unifi{9,10} AUTHOR: otis@FreeBSD.org Version 10 of UniFi controller has been introduced, conflicting with version 9. Users are strongly advised to make a fresh backup of UniFi controller database from within the UI, prior to upgrade to unifi10. 20251201: AFFECTS: users of lang/php83 AUTHOR: bofh@FreeBSD.org The default version of PHP has been switched from 8.3 to 8.4. If you use binary packages you should make a list of php packages before running 'pkg upgrade': # pkg info \*php83\* > ~/installed-php-ports-list After the upgrade, check with such list if all your php extensions are still installed, and reinstall them if needed. If you use mod_php83 you need to deinstall it and install mod_php84. 20251201: AFFECTS: users of sysutils/tmux AUTHOR: jrm@FreeBSD.org tmux must be restarted after upgrading. This is particularly important with version 3.6 because one of the libraries that tmux uses has changed its protocol. If you see the following message when you try to attach, it likely means you forgot to restart tmux: open terminal failed: not a terminal 20251130: AFFECTS: users of www/node{22,24,25} AUTHOR: sunpoet@FreeBSD.org www/node{22,24,25} now uses databases/sqlite3 instead of the bundled one. It requires SESSION option (enabled by default) in databases/sqlite3. Please update your option configuration. Otherwise, the build fails. See PR 290509 and 290588 for details. 20251113: AFFECTS: users of deskutils/fet AUTHOR: uzsolt@FreeBSD.org Remove Qt flavors, only use Qt6. You should uninstall the flavored package and install the unflavored package. 20251105: AFFECTS: users of net/unison AUTHOR: madpilot@FreeBSD.org With the update to version 2.53.8 the port uses upstream install target. This causes the installed unison binary to always be the command line version, even when the port is compiled with xorg support. The UI binary is installed as unison-gui. The unison.desktop file provided with the port is adjusted to launch the new unison-gui binary. Please verify any local scripts using the unison binaries are adapted to this change. 20251019: AFFECTS: users of security/clamav AUTHOR: yasu@FreeBSD.org After security/clamav is updated to 1.5.0, some users report that build fails as below. /usr/ports/security/clamav/work/clamav-1.5.1/libclamav/others.c:623:23: error: use of undeclared identifier 'CERTSDIR' 623 | cvdcertsdir = CERTSDIR; | ^ 1 warning and 1 error generated. ninja: build stopped: subcommand failed. *** Error code 1 The error seems to happen with following conditions. * Non-base SSL stack is used. That is, in /etc/make.conf there is such setting as 'DEFAULT_VERSIONS+=ssl=openssl'. * Previous version (1.4.3) of clamav package is already installed. If you face it, you can work around it by uninstalling current clamav package first. 20251016: AFFECTS: users of devel/nexus2-oss AUTHOR: michaelo@FreeBSD.org With the upgrade to javaservicewrapper-3.6.3 Nexus won't start unless you remove all properties ending with '.stripquotes' in your %%ETCDIR%%/wrapper.conf. 20251016: AFFECTS: users of sysutils/javaservicewrapper AUTHOR: michaelo@FreeBSD.org With the upgrade to version 3.6.0+ support for all properties ending with '.stripquotes' in your wrapper.conf has been dropped and your application won't start again. Read the release notes for more details: https://wrapper.tanukisoftware.com/doc/english/release-notes.html#3.6.0 20251015: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org The port has been updated to the latest stable version 4.2 of LibreSSL. The shared library versions of the libraries have been bumped. After upgrading, manually update all packages that depend on any of the libraries provided by LibreSSL (libssl, libcrypto and libtls) since the versions of these libraries have changed. Normally, you can obtain the list of dependent software by running the following command: # pkg info -r libressl Then you should rebuild all ports depending on libressl to avoid dangling shared library dependencies. 20251011: AFFECTS: users of net-im/gotosocial AUTHOR: dinoex@FreeBSD.org The etc/gotosocial/config.yaml file needs to be edited. Also includes breaking changes to prometheus metrics. See release notes for details: https://codeberg.org/superseriousbusiness/gotosocial/releases/tag/v0.20.0 Requires a lengthy database migration which must not be interrupted! 20250930: AFFECTS: users of x11/nvidia-driver* AUTHOR: junchoon@dec.sakura.ne.jp Because of splitting out kernel modules (kmod) part from x11/nvidia-driver* into newly introduced x11/nvidia-kmod*, you need to deinstall currently installed x11/nvidia-driver* and freshly install it again with new version. This would pull in corresponding x11/nvidia-kmod* because x11/nvidia-driver* explicitly depends on corresponding x11/nvidia-kmod*. 20250918: AFFECTS: users of sysutils/py-mitogen AUTHOR: dch@FreeBSD.org Ansible 12 is soft deprecating the ANSIBLE_STRATEGY functionality that mitogen uses to integrate with Ansible. A future version of ansible-core may remove this. See https://github.com/mitogen-hq/mitogen/issues/1278 20250917: AFFECTS: users of mail/pflogsumm AUTHOR: flo@FreeBSD.org Some command line arguments were renamed in 1.1.11 and 1.1.12. For details, see https://jimsun.linxnet.com/downloads/ChangeLog-1.1.12 20250908: AFFECTS: users of www/mod_wsgi4 AUTHOR: michaelo@FreeBSD.org This port has been renamed to www/mod_wsgi to be able to upgrade to version 5. 20250828: AFFECTS: users of databases/mongodb70, databases/mongodb80 AUTHOR: ronald@FreeBSD.org Ports mongodb70 7.0.23 and mongodb80 since 8.0.0 contain a patch to implement waitable atomics for FreeBSD. This patch is developed by me. It did not go through QA of MongoDB Inc. I don't have full QA in place and could only do limited testing. I can't take any responsibility for the quality of the patch. Make backups and test for yourself in your setup before upgrading any critical production environment. 20250817: AFFECTS: users of lang/perl5.* AUTHOR: mat@FreeBSD.org The default Perl version has been switched to 5.42. See entry 20231017 for updating instructions. 20250815: AFFECTS: users of net/syncthing AUTHOR: dvl@FreeBSD.org Old single-dash long options are no longer supported, e.g. -home must be given as --home. Database backend switched from LevelDB to SQLite. No changes to run-time dependencies. There is a migration on first launch which can be lengthy for larger setups. More at https://github.com/syncthing/syncthing/releases/tag/v2.0.0 20250804: AFFECTS: users of databases/adminer AUTHOR: pkaipila@gmail.com Flavors have been added to the adminer port. Due to the change in PKGNAME, pkg will not notice the update. Replace the package with a flavored one such as php84-adminer. 20250728: AFFECTS: users of www/privatebin AUTHOR: dvl@FreeBSD.org This release changes configuration defaults including switching the template and removing legacy features. See details at https://github.com/PrivateBin/PrivateBin/releases/tag/2.0.0 20250720: AFFECTS: users of www/phpmyfaq AUTHOR: flo@FreeBSD.org Upgrading from 3.2.x is a major upgrade. Your existing templates will not work with phpMyFAQ 4.0. Please make a full backup before you run the upgrade! First, log in as admin into the admin section and enable the maintenance mode. (Configuration >> Edit Configuration >> Set FAQ in maintenance mode) Second, you have to delete all files except: in the directory config/ keep the file database.php only if using LDAP/ActiveDirectory support also keep the file ldap.php only if using EntraID support also keep the file azure.php the directory attachments/ the directory data/ the directory images/ Install the new version then open the following URL in your browser: https://www.example.com/faq/update Click the button of the update script, your version will automatically be updated. 20250709: AFFECTS: users of sysutils/bastille AUTHOR: jdhurtado@orbiware.com Potentially breaking changes since 1.0.20250714 Network: Bastille now handles all epairs dynamically, allowing both -V and -B VNET jails to coexist. Previous versions only supported one type per system. New naming scheme for network interfaces is e0a_jailname (host side) and e0b_jailname (jail side). Additional interfaces: e1a_jailname, e1b_jailname, etc (incrementing numbers). Long jail names are truncated with xx placeholder due to interface name limitations Required action after update: Restart all jails (preferably one at a time) to trigger automatic conversion. Bastille will auto-convert jail.conf and rc.conf files when jails are stopped. Manual intervention required: If you previously used the network sub-command to add interfaces, manually edit jail.conf and rc.conf files to update epair names (increment numbers for additional interfaces). Auto-conversion handles most cases, please report bugs if issues occur during the transition. Full release announcement: https://github.com/BastilleBSD/bastille/releases/tag/1.0.20250714 20250708: AFFECTS: users of shells/bash AUTHOR: michaelo@FreeBSD.org The SYSBASHRC option is now enabled by default. For those who use bash interactively the system-wide RC file shall be sourced automatically giving the user the same experience as invoking it as a login shell. 20250630: AFFECTS: users of mail/bogofilter-bdb AUTHOR: mandree@FreeBSD.org The mail/bogofilter-bdb port has expired and will be removed. 1. BEFORE uninstallation or changing to a different mail/bogofilter* variant, please use bogoutil to export all user data bases (wordlist.db) to text files, bogoutil has a -d option for that. 2. ONLY THEN install a different variant. The base port (bogofilter) uses LMDB, the -kc variant uses KyotoCabinet and -sqlite uses SQLite3 for their database backends. 3. THEN re-import the word list for each user with bogoutil -l. 20250629: AFFECTS: users of japanese/anthy AUTHOR: nobutaka@FreeBSD.org japanese/anthy has been removed. Please use japanese/anthy-unicode as the replacement. japanese/anthy and japanese/anthy-unicode use different user dictionary file location. japanese/anthy: ~/.anthy/private_words_default japanese/anthy-unicode: ~/.config/anthy/private_words_default You can migrate your user dictionary for japanese/anthy with anthy-dic-tool-unicode. anthy-dic-tool-unicode --migrate If you use the japanese-anthy or japanese-anthy-uim input method on Emacs, please change them in your Emacs init file such as ~/.emacs.el and ~/.emacs as follows: japanese-anthy -> japanese-anthy-unicode japanese-anthy-uim -> japanese-anthy-utf8-uim 20250627: AFFECTS: users of finance/ktoblzcheck AUTHOR: jhale@FreeBSD.org The bank data databases have been moved to finance/ktoblzcheck-data. It may be necessary to remove ktoblzcheck < 1.59 before upgrading to avoid conflicts. pkg delete -f ktoblzcheck 20250622: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org 1. Please make sure that the PostgreSQL server for the NetBox instance is running version 14 or higher. This is because Django 5.2 requires PostgreSQL 14 as a minimum. 2. Please also check the pkg-message and the changelogs for further info. 20250620: AFFECTS: users of x11/swww AUTHOR: nivit@FreeBSD.org Starting from version 0.10 the command swww init, previously deprecated, has been properly deleted. The correct way of initializing the daemon is calling swww-daemon directly. 20250613: AFFECTS: users of devel/py-gql, games/DDNet, net/mosquitto AUTHOR: michaelo@FreeBSD.org The WEBSOCKETS option has been renamed to WEBSOCKET to match the name from RFC 6455, other ports and the description from Mk/bsd.options.desc.mk. 20250610: AFFECTS: users of devel/git AUTHOR: michaelo@FreeBSD.org The HTMLDOCS option has been renamed to DOCS to match the option name with other ports and the description from Mk/bsd.options.desc.mk. 20250610: AFFECTS: users of security/krb5-12{0,1} AUTHOR: michaelo@FreeBSD.org The KRB5_{PDF,HTML} options have been consolidated into canonical DOCS option to match the name with other ports and the description from Mk/bsd.options.desc.mk. 20250606: AFFECTS: users of net-mgmt/unifi9 AUTHOR: ronald@FreeBSD.org The MongoDB dependency updates from 6.0 to 7.0. Please read 20250520 about the upgrade instructions of databases/mongodb60. Mind that the mongodb portnr for Unifi is 27117. The 20240606 instructions for net-mgmt/unifi8 can also be informative. Always backup/snapshot before upgrading. Turn off Unifi and MongoDB during the upgrade. (service unifi stop) MongoDB 7.0 does not formally support ARM systems without Large System Extensions (LSE) support. Please use the unifi9-armv80a package when running on RPI4 or similar systems. Running the non-armv80a package will result in an "illegal instruction" on these systems. 20250520: AFFECTS: users of databases/mongodb60 AUTHOR: ronald@FreeBSD.org MongoDB version 6.0 is End of Life starting August 2025. Please make sure you are running MongoDB version 7.0 or higher. In-place upgrades are supported from version 6.0 to 7.0. For an in-place upgrade it is important that the 'featureCompatibilityVersion' is set to 6.0 before the upgrade. See: https://www.mongodb.com/docs/v7.0/release-notes/7.0-upgrade-standalone/#feature-compatibility-version TL;DR, run these commands in mongodb60 before upgrading: (see `pkg info -D mongodb60` how to install mongosh) $ npx mongosh mongodb://127.0.0.1:27017/ # or use non-default port > db.adminCommand( { setFeatureCompatibilityVersion: "6.0" } ) > exit 20250519: AFFECTS: users of sysutils/screen AUTHOR: cy@FreeBSD.org sysutils/screen has been updated to 5.0.1 from 4.9.1. All currently running screen sessions must be terminated before upgrading. Failure to do so will result in orphaning remaining screen sessions. This is expected when updating from one major version of screen to another. 20250514: AFFECTS: users of lang/perl5.* AUTHOR: mat@FreeBSD.org The default Perl version has been switched to 5.40. See entry 20231017 for updating instructions. 20250511: AFFECTS: users of www/tt-rss AUTHOR: dereks@lifeofadishwasher.com tt-rss has dropped support for mysql/mariadb starting with commit 4cb8a84df46d46b. The next update (mid-June) to www/tt-rss will include this update. https://community.tt-rss.org/t/support-for-mysql-is-no-more/6897 You should migrate your data to databases/postgresqlXY-server. 20250510: AFFECTS: users of net-p2p/bitcoin and/or net-p2p/bitcoin-daemon AUTHOR: kbowling@FreeBSD.org 29.x is the last release series that will support the legacy BDB wallet format. We are already doing this awkwardly since the format is BDB 4.8 and we are building with BDB 5. This will be removed in 30.0 later this year. You should upgrade your wallet now if you are still using a legacy wallet. Instructions: https://github.com/bitcoin/bitcoin/blob/29.x/doc/managing-wallets.md#migrating-legacy-wallets-to-descriptor-wallets This release switches to CMake which results in a major refactoring of the port and underlying build. The result seems good, but please provide feedback if there are any unexpected changes or problems. This release dropped UPnP support due to security concerns. NAT-PMP is implemented as an alternative. 20250506: AFFECTS: users of databases/postgresql* and other software using PostgreSQL to run AUTHOR: kbowling@FreeBSD.org The default version of PostgreSQL has been switched from 16 to 17. The upgrade procedure can use up twice the space the databases currently needs. If you have a big amount of stored data take a closer look at the manpage of pg_upgrade for avoidance and/or speedup of the upgrade. The upgrade instructions consider a basic usage and do not match complex scenarios like replication, sharding, or similar. Upgrade instructions: First stop your PostgreSQL, create PostgreSQL-binaries and backup your data. If you have another Version of PostgreSQL installed, for example 16, your files are named according to this. # service postgresql stop # pkg create postgresql16-server postgresql16-contrib # mkdir /tmp/pg-upgrade # tar xf postgresql16-server-16.8.pkg -C /tmp/pg-upgrade # tar xf postgresql16-contrib-16.8.pkg -C /tmp/pg-upgrade # pkg delete -f databases/postgresql16-server databases/postgresql16-contrib databases/postgresql16-client Now update PostgreSQL: pkg user: # pkg install databases/postgresql17-server databases/postgresql17-contrib # pkg upgrade Portmaster users: # portmaster databases/postgresql17-server databases/postgresql17-contrib # portmaster -a Portupgrade users: # portinstall databases/postgresql17-server databases/postgresql17-contrib # portupgrade -a After installing the new PostgreSQL version you need to convert all your databases to new version: # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data17 -U postgres" # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data16/ -B /usr/local/bin/ -D /var/db/postgres/data17/ -U postgres " Now the migration is finished. You can start PostgreSQL again with: # service postgresql start ATTENTION: 1) If you use non-default initdb options, you have to adjust the initdb-command accordingly 20250503: AFFECTS: users of sysutils/bastille AUTHOR: jdhurtado@orbiware.com The `rcorder` has been deprecated, and new `boot` and `priority` options have been added to the jails. A boot file will be created with default values of `boot=on` and `priority=99` on jail creation. For existing jails, the boot file will be generated on the next subcommand execution to the jail. If you want to generate the file for all the jails, you can use `bastille restart ALL` to fill in the defaults. To change these values, use `bastille config TARGET set boot off` or `bastille config TARGET set priority 10` or some other number according to your needs. 20250503: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org The port has been updated to the latest stable version 4.1 of LibreSSL. The shared library versions of the libraries have been bumped. After upgrading, manually update all packages that depend on any of the libraries provided by LibreSSL (libssl, libcrypto and libtls) since the versions of these libraries have changed. Normally, you can obtain the list of dependent software by running the following command: # pkg info -r libressl Then you should rebuild all ports depending on libressl to avoid dangling shared library dependencies. 20250502: AFFECTS: users of databases/redis AUTHOR: yasu@FreeBSD.org The databases/redis port has been updated to 8.0. Users wanting to stay on 7.4 can replace databases/redis with databases/redis74 with one of the following commands. If you use pkg with binary packages: # pkg set -o databases/redis:databases/redis74 # pkg upgrade If you use portmaster: # portmaster -o databases/redis74 databases/redis If you use portupgrade: # portupgrade -o databases/redis74 databases/redis Keep in mind license term has changed with Redis 8.0. Now it is distributed under triple license of Redis Source Available License v2 (RSALv2), Server Side Public License v1 (SSPLv1) and GNU Affero General Public License v3 (AGPLv3). 20250408: AFFECTS: users of linux_base-c7 and any Linux application in Ports AUTHOR: arrowd@FreeBSD.org LINUX_DEFAULT was switched to "rl9" which corresponds to the Rocky Linux 9 base. All architectures except i386 are affected. To stay on the old base add DEFAULT_VERSIONS=linux=c7 to your /etc/make.conf Note that some older amd64 hardware (pre-Nehalem) might not support the instruction set that is targeted by Rocky Linux builders. If you're getting SIGILL crashes when running Linux apps consider switching LINUX_DEFAULT back to "c7". 20250404: AFFECTS: users of jetbrains-clion AUTHOR: fernape@FreeBSD.org The jetbrains-clion update to 2024.3.5 might fail under certain circumstances that are not clear. If this happens users are encouraged to check the contents of ~/.config/JetBrains/CLion2024.3/clion64.vmoptions and ensure that the following option IS NOT present: -Didea.suppressed.plugins.set.selector=radler If it is, change the value to: -Didea.suppressed.plugins.set.selector=classic References: https://youtrack.jetbrains.com/issue/CPP-44041#focus=Comments-27-11819516.0-0 https://youtrack.jetbrains.com/issue/IJPL-175884/Start-Failed#focus=Comments-27-11425743.0-0 20250402: AFFECTS: users of devel/glib20 and devel/gobject-introspection building outside of Poudriere AUTHOR: arrowd@FreeBSD.org New versions of glib started to require gobject-introspection as a build dependency, while gobject-introspection requires glib to build. This forms a dependency cycle that is dealt with by introducing the @bootstrap flavor for mentioned ports. This solution is suggested by the upstream as well, see https://discourse.gnome.org/t/dealing-with-glib-and-gobject-introspection-circular-dependency/18701 When building devel/glib20 in Poudriere no manual intervention is required. The devel/glib20@bootstrap gets built first and provides for devel/gobject-introspection@bootstrap. This in turn provides for a normal devel/glib20 build, which finally fulfills a dependency for normal devel/gobject-introspection Users that are building outside of the isolated environments will be ending up with useless glib-bootstrap and gobject-introspection-bootstrap packages installed after each update. These can be removed with pkg remove glib-bootstrap gobject-introspection-bootstrap 20250327: AFFECTS: users of thunderbird AUTHOR: cmt@FreeBSD.org The mail/thunderbird port switched to Thunderbird's new release train, with frequent major releases (ca. 4-weeks-cycle). Users wanting to stay with the 128-releases for now and the ESR releases in general should switch to the mail/thunderbird-esr port. 20250325: AFFECTS: users of TeX* AUTHOR: bofh@FreeBSD.org TeX system has been updated to 2025 from 2024. Normal pkg upgrade or portmaster -a should handle all the upgrade properly. In case not please create a ticket or send a mail to tex@FreeBSD.org Previously users have reported to delete texlive-texmf prior to starting update, or pkg-static will indicate there is a conflict during the upgrade of texlive-base : # pkg remove texlive-texmf 20250321: AFFECTS: users of mail/oama AUTHOR: nivit@FreeBSD.org Starting from version 0.15, when the GPG backend is used the encrypted credentials are stored in the $XDG_STATE_HOME/oama directory. If the XDG_STATE_HOME environment variable is not set then it defaults to $HOME/.local/state. That is a breaking change! If you use the GPG backend you need to manually move your credential ~/.local/var/oama/*.oama files into the new directory. 20250316: AFFECTS: users of graphics/gdk-pixbuf2 AUTHOR: vishwin@FreeBSD.org Loaders for ANI, BMP, ICNS, ICO, PNM, QTIF, TGA, XBM and XPM have been moved to a separate graphics/gdk-pixbuf-extra port. Install the aforementioned port if artefacts in those formats no longer load or otherwise cause errors, and report them so that USE_GNOME=gdkpixbufextra can be declared. Most should only need USE_GNOME=gdkpixbufextra:run, but for those also needing these loaders for build, leave out the :run. 20250315: AFFECTS: users of sysutils/snmp_exporter AUTHOR: lexi@hemlock.eden.le-fay.org BREAKING CHANGE: The new version of sysutils/snmp_exporter (0.28.0) introduces several breaking changes. If you don't want to migrate yet, switch to the new port sysutils/snmp_exporter20 which contains the previous version (0.20.0). 1. The exporter uses a new configuration file format for SNMP authentication, and configurations from the previous version will no longer work. This applies regardless of whether you use the configuration generator or write the configuration by hand. For migration instructions, see: https://github.com/prometheus/snmp_exporter/blob/main/auth-split-migration.md 2. Breaking changes were made affecting the 'synology', 'ddwrt' and 'kemp_loadmaster' modules. For migration instructions, see: https://github.com/prometheus/snmp_exporter/releases/tag/v0.27.0 3. The sysUpTime metric has been removed from the if_mib module. For migration instructions, see: https://github.com/prometheus/snmp_exporter/releases/tag/v0.28.0 4. (FreeBSD-specific) The port no longer patches the generator to hardcode ${PREFIX}/etc in the paths used by snmp_exporter_generator. If you were relying on this behaviour, you should update your scripts to specify the full pathname. 20250312: AFFECTS: users of net/samba4{19,20} AUTHOR: michaelo@FreeBSD.org The MANDOC option has been renamed to MANPAGES to match the option name with other ports and the description from Mk/bsd.options.desc.mk. 20250311: AFFECTS: users of databases/mongodb80 AUTHOR: ronald@FreeBSD.org Added flavor mongodb80-armv80a. See item 20250217 for the rationale. 20250310: AFFECTS: users of www/wget2 AUTHOR: michaelo@FreeBSD.org The default NGHTTP2 option has been renamed to HTTP2 to match the option name in ftp/curl and the description from Mk/bsd.options.desc.mk. 20250219: AFFECTS: users of comms/ser2net AUTHOR: rodrigo@FreeBSD.org ser2net 4.6.4 doesn't support 3.5.1 configuration which has to be converted over to use new YAML syntax. Please see the examples on ser2net.yaml sample configuration and read the ser2net.yaml manpage on how to configure the new version. Additional links and resources have been provided on the pkg-message. 20250217: AFFECTS: users of databases/mongodb70 AUTHOR: ronald@FreeBSD.org MongoDB on non-LSE ARM CPUs like Raspberry Pi 4 works but is unsupported upstream and can give corruption on high concurrency. Please read https://jira.mongodb.org/browse/SERVER-71772 for details. Port mongodb70 is flavored to create two packages: mongodb70 and mongodb70-armv80a Please install mongodb70-armv80a on RPI4 or similar ARM systems as pkg mongodb70 will fail on runtime with unsupported instruction error. 20250208: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org 1. Please make sure that the PostgreSQL server for the NetBox instance is running version 13 or higher. This is because PostgreSQL 12 reached its End of Life (EOL) on November 14, 2024 and was also removed from the ports tree at the beginning of 2025. 2. Please also check the pkg-message and the changelogs for further info. 20250205: AFFECTS: users of www/gitlab AUTHOR: mfechner@FreeBSD.org Make sure you compare your /usr/local/www/gitlab/config/puma.rb with /usr/local/www/gitlab/config/puma.rb.sample and make sure you have the: require "logger" line in your puma.rb. This fixes an error: /usr/local/lib/ruby/gems/3.2/gems/activesupport-7.0.8.7/lib/active_support/logger_thread_safe_level.rb:12:in `': uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError) Logger::Severity.constants.each do |severity| 20250203: AFFECTS: users of x11/kde5 and x11/kde6 AUTHOR: arrowd@FreeBSD.org All KDE ports were fully switched to Qt6/KF6. Plasma 5 ports were removed. KDE Applications were updated to 24.12. If you installed KDE via kde5 or kde6 packages, the upgrade path is # pkg remove -f kde[56] && pkg install kde If you installed KDE via the plasma5-plasma metapackage, the upgrade path is # pkg remove -f plasma5-plasma && pkg install plasma6-plasma Running "pkg autoremove" after the upgrade would clean unused dependencies. For the uncommon cases of building on the host with synth, portmaster, etc. the idea stays roughly the same - replace every plasma5 package with its plasma6 counterpart. 20250131: AFFECTS: users of security/easy-rsa AUTHOR: mandree@FreeBSD.org easy-rsa (easyrsa) versions between 3.0.5 and 3.1.7 inclusively may have chosen the wrong, a weak, cipher (des-ede3-cbc) when encrypting the CA private keys with the build-ca command, when running on a system where openssl was OpenSSL 3. Such CA private keys should be re-encrypted with a stronger cipher in order to protect them better, after upgrading EasyRSA to 3.2.1. To that end, the easyrsa set-pass ca command can be used. Details: https://community.openvpn.net/openvpn/wiki/CVE-2024-13454 20250125: AFFECTS: users of www/apache24 AUTHOR: brnrd@FreeBSD.org Apache 2.4.63 removed the (experimental, non-default) mod_tls module due to rustls-ffi API instability and it was moved to a standalone module. Users of the TLS option can use the new www/mod_tls port as a replacement. # pkg install ap24-mod_tls 20250111: AFFECTS: users of net/onedrive AUTHOR: hiroo.ono+freebsd@gmail.com The version 2.5.x introduces significant changes regarding how the integrity and validation of your data is determined and is not backwards compatible with v2.4.x. OneDrive Business Shared Folder Sync has been 100% re-written in v2.5.0. If you are using this feature, please read the new documentation carefully. The application function --download-only no longer automatically deletes local files. Please read the new documentation regarding this feature. 20250109: AFFECTS: users of www/kiwix-tools and devel/libkiwix AUTHOR: olce@FreeBSD.org Upstream released a new version (14.0.0) of kiwix-tools' dependency libkiwix that the latest release of kiwix-tools (unchanged at 3.7.0) does not support, and the devel/libkiwix port was updated to it by mistake. In order to fix the situation without reverting devel/libkiwix to 13.1.0 and bumping its PORTEPOCH, the new port devel/libkiwix13 has been created and www/kiwix-tools has been updated to depend on it rather than devel/libkiwix. This is expected to be temporary. As devel/libkiwix13 and devel/libkiwix conflict with each other, which apparently can confuse pkg (which proposes to delete www/kiwix-tools), users having www/kiwix-tools installed are advised to upgrade it first separately, e.g., by running: # pkg upgrade www/kiwix-tools 20250106: AFFECTS: users of comms/zigbee2mqtt AUTHOR: otis@FreeBSD.org There are possibly breaking changes, see https://github.com/Koenkk/zigbee2mqtt/discussions/24198 for full details. Users are STRONGLY advised to take backup of /var/db/z2m directory prior to the upgrade. 20241230: AFFECTS: users of net/xrdp-devel AUTHOR: meta@FreeBSD.org The port has been updated to the latest development snapshot. The directory for the config files has also changed from PREFIX/etc/xrdp to PREFIX/etc/xrdp-devel to prevent incompatible config files for net/xrdp and net/xrdp-devel from getting mixed up. When updating net/xrdp-devel from old versions, move the config files to the new directory. 20241224: AFFECTS: users of net/xrdp AUTHOR: meta@FreeBSD.org xrdp supports H.264 encoding in graphics remoting since v0.10.2. It reduces the amount of data transmitted over the network and provides a much smoother and more responsive experience compared to previous versions. When updating from older v0.10.x versions to v0.10.2, make sure to merge the new xrdp.ini with the old one because xrdp.ini has some new configuration parameters for H.264. See 20240704 if updating from v0.9.x. Furthermore, xrdp v0.10.2 supports running the xrdp daemon as an unprivileged user. See the xrdp.ini(5) man page for configuring xrdp to run as an unprivileged user. You can also check if xrdp is properly configured to run as an unprivileged user using the script located at: %%PREFIX%%/share/xrdp/xrdp-chkpriv 20241203: AFFECTS: users of deskutils/treesheets AUTHOR: eduardo@FreeBSD.org The binary has been renamed from treesheets to TreeSheets - https://github.com/aardappel/treesheets/pull/760 20241202: AFFECTS: users of net/gdrive AUTHOR: meta@FreeBSD.org The port net/gdrive has been updated to its successor product because the original upstream GitHub repo has been unmaintained & archived. Users upgrading from gdrive 2.x to 3.x need to reconfigure account credentials following the instructions provided by new upstream. - https://github.com/glotlabs/gdrive/blob/main/docs/basic_usage.md - https://github.com/glotlabs/gdrive/blob/main/docs/create_google_api_credentials.md 20241122: AFFECTS: users of databases/couchdb3 AUTHOR: dch@FreeBSD.org Users who installed or upgraded to CouchDB 3.3.3 *after* 2024-09-30, and who are also running 14.1-RELEASE or newer, will hit a nasty corruption bug, causing all CPUs to lock up, possibly crashing, and generating a lot of errors in log files. This bug is caused by corrupt docs after decompression, due to a clash between improved compiler optimisations in clang18, and a bug in snappy itself. Given the above symptoms, all affected users will have noticed. Upgrade to 3.4.2 in ports, to resolve this issue. Please read more about this issue here: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=282217 20241115: AFFECTS: users of filesystems/zrepl-dsh2dsh AUTHOR: dsh@bamus.cz Users upgrading from before 0.9.0 need to modify configuration file: %%PREFIX%%/etc/zrepl/zrepl.yml Please read more about this change here: https://github.com/dsh2dsh/zrepl?tab=readme-ov-file#breaking-changes 20241112: AFFECTS: users of databases/prometheus-postgres-exporter AUTHOR: lexi@hemlock.eden.le-fay.org BREAKING CHANGE: In postgres_exporter 0.16.0 and later, the log message format has changed. From the upstream release notes: The logging system has been replaced with log/slog from the stdlib. This change is being made across the prometheus ecosystem. The logging output has changed, but the messages and levels remain the same. The ts label for the timestamp has been replaced with time, the accuracy is less, and the timezone is not forced to UTC. The caller field has been replaced by the source field, which now includes the full path to the source file. The level field now exposes the log level in capital letters. 20241110 AFFECTS: users of devel/apr1 and www/apache24 AUTHOR: brnrd@FreeBSD.org The default BerkeleyDB provider for apr-util was changed from BerkeleyDB 5 (deprecated) to BerkeleyDB 1 from base libc. The change of version results in a non-compatible database format. After upgrading, you must rebuild all BerkeleyDB databases used by apr-util (example: Apache databases created with `httxt2dbm -F db` 20241109: AFFECTS: all users of i386 AUTHOR: asomers@FreeBSD.org On i386 the lang/rust port has been updated to require SSE2 by default. Not only does the compiler itself require SSE2, but it unconditionally generates code that requires it, too. Over 500 ports include Rust code (www/firefox, security/py-cryptography, etc). Official binary packages of all of those ports will no longer work on Pentium III and older hardware. PIII users must now build their own lang/rust packages, clearing the SSE2 option, and rebuild any dependent ports. 20241104: AFFECTS: users of mail/fetchmail AUTHOR: chalpin@cs.wisc.edu OPIE and RPA have been made optional because both have significant security problems. OPIE support was not provided by the port on 14.x until the update to 6.5.0, when it was briefly re-activated. Because of its security flaws, it has now been disabled by default on both 13.x and 14.x. RPA is currently enabled by default, but this will change in a future update. 20241019: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org The port has been updated to the latest stable version 4.0 of LibreSSL. The shared library versions of the libraries have been bumped. After upgrading, manually update all packages that depend on any of the libraries provided by LibreSSL (libssl, libcrypto and libtls) since the versions of these libraries have changed. Normally, you can obtain the list of dependent software by running the following command: # pkg info -r libressl Then you should rebuild all ports depending on libressl to avoid dangling shared library dependencies. 20241004: AFFECTS: users of www/c-icap AUTHOR: rodrigo@FreeBSD.org The c-icap server version is moving from branch 5.X to 6.X. An in-place upgrade may require some changes in your current configuration. For installation instructions please refer : https://sourceforge.net/p/c-icap/wiki/configcicap https://sourceforge.net/p/c-icap/wiki 20240930: AFFECTS: users of sysutils/nq AUTHOR: 0mp@FreeBSD.org The nq upstream renamed the fq utility to nqtail and the tq utility to nqterm. 20240927: AFFECTS: users of databases/mongodb50 AUTHOR: ronald@FreeBSD.org MongoDB version 5.0 is End of Life starting October 2024. Please make sure you are running MongoDB version 6.0 or higher. In-place upgrades are supported from version 5.0 to 6.0. For an in-place upgrade it is important that the 'featureCompatibilityVersion' is set to 5.0. See: https://www.mongodb.com/docs/v6.0/release-notes/6.0-upgrade-standalone/#feature-compatibility-version TL;DR, run these commands in mongodb50 before upgrading: $ mongo --port > db.adminCommand( { setFeatureCompatibilityVersion: "5.0" } ) > exit 20240912: AFFECTS: security/clamav, security/clamav-lts AUTHOR: netchildFreeBSD.org The start scripts of clamav have been renamed to clamav_clamd, clamav_freshclam and clamav_milter for improved compatibility with other parts of the system. The automatic start at boot (rc.conf variable settings) is not affected, but if you have some other automatism you may want to change ".../etc/rc.d/clamav-clamd" to ".../etc/rc.d/clamav_clamd" ".../etc/rc.d/clamav-freshclam" to ".../etc/rc.d/clamav_freshclam" ".../etc/rc.d/clamav-milter" to ".../etc/rc.d/clamav_milter" or "service clamav-clamd ..." to "service clamav_clamd ..." "service clamav-freshclam" to "service clamav_freshclam ..." "service clamav-milter ..." to "service clamav_milter ..." 20240907: AFFECTS: www/tt-rss AUTHOR: dereks@lifeofadishwasher.com The ttrssd_local_db rc var has been removed in favor of using daemon's restart option -r to retry the ttrssd php scripts if database is not up before ttrssd starts. 20240829: AFFECTS: devel/binutils AUTHOR: cy@FreeBSD.org Historically devel/binutils would implicitly use devel/elfutils when it discovers it previously installed. This resulted in it depending on, though not explicitly if previously found, elfutils when built manually. This behavior has now changed. binutils will now disable any auto-dependency on elfutils. Users who build binutils manually and wish to have it depend on elfutils must now explicitly set the option when building binutils. There is no change to packages built by poudriere. 20240824: AFFECTS: dns/acme-dns AUTHOR: netchild@FreeBSD.org The start script of acme-dns has been renamed to acme_dns for improved compatibility with other parts of the system. The automatic start at boot (rc.conf variable settings) is not affected, but if you have some other automatism you may want to change ".../etc/rc.d/acme-dns" to ".../etc/rc.d/acme_dns" 20240816: AFFECTS: users of databases/redis AUTHOR: yasu@FreeBSD.org The databases/redis port has been updated to 7.4. Users wanting to stay on 7.2 can replace databases/redis with databases/redis72 with one of the following commands. If you use pkg with binary packages: # pkg set -o databases/redis:databases/redis72 # pkg upgrade If you use portmaster: # portmaster -o databases/redis72 databases/redis If you use portupgrade: # portupgrade -o databases/redis72 databases/redis Keep in mind license term has changed with Redis 7.4. Now it is distributed under dual license of Redis Source Available License v2 (RSALv2) and Server Side Public License v1 (SSPLv1). If you don't want to accept either of them, then Valkey (databases/valkey) may be alternative for you. It is fork of Redis 7.2 and distributed under 3-clause BSD license that is same as Redis 7.2 and before. 20240815: AFFECTS: users of devel/subversion-lts and devel/subversion AUTHOR: michaelo@FreeBSD.org The port option STATIC has been broken since 2022-01 because textproc/utf8proc does not provide an archive with CMake. Therefore, it has been removed. 20240809: AFFECTS: sysutils/amavisd-new AUTHOR: netchildFreeBSD.org The start scripts of amavisd have been renamed to amavisd_snmp and amavis_p0fanalyzer for improved compatibility with other parts of the system. The automatic start at boot (rc.conf variable settings) is not affected, but if you have some other automatism you may want to change ".../etc/rc.d/amavisd-snmp" to ".../etc/rc.d/amavisd_snmp" ".../etc/rc.d/amavis-p0fanalyzer" to ".../etc/rc.d/amavis-p0fanalyzer" or "service amavisd-snmp ..." to "service amavisd_snmp ..." "service amavis-p0fanalyzer ..." to "service amavis_p0fanalyzer ..." 20240727: AFFECTS: lang/php8[123] AUTHOR: netchildFreeBSD.org The start scripts of php-fpm have been renamed to php_fpm for improved compatibility with other parts of the system. The automatic start at boot (rc.conf variable settings) is not affected, but if you have some other automatism you may want to change ".../etc/rc.d/php-fpm" to ".../etc/rc.d/php_fpm" or "service php-fpm ..." to "service php_fpm ..." If you have custom start scripts which depend upon php-fpm, you need to change the REQUIRE lines in them from "php-fpm" to "php_fpm". 20240726: AFFECTS: users of archivers/py-borgbackup AUTHOR: mandree@FreeBSD.org Borgbackup has been upgraded to version 1.4.0. The FreeBSD port as of 2024-07-26 reinstates FreeBSD 13 compatibility. For users who wish to continue using version 1.2, use either of these commands for upgrading: With binary packages through pkg: pkg set -o archivers/py-borgbackup:archivers/py-borgbackup12 pkg upgrade With portmaster or portupgrade (replace the command accordingly): portmaster -o archivers/py-borgbackup12 archivers/py-borgbackup 20240723: AFFECTS: users of databases/postgresql* and other software using PostgreSQL to run AUTHOR: kbowling@FreeBSD.org The default version of PostgreSQL has been switched from 15 to 16. The upgrade procedure can use up twice the space the databases currently needs. If you have a big amount of stored data take a closer look at the manpage of pg_upgrade for avoidance and/or speedup of the upgrade. The upgrade instructions consider a basic usage and do not match complex scenarios like replication, sharding, or similar. Upgrade instructions: First stop your PostgreSQL, create PostgreSQL-binaries and backup your data. If you have another Version of PostgreSQL installed, for example 15, your files are named according to this. # service postgresql stop # pkg create postgresql15-server postgresql15-contrib # mkdir /tmp/pg-upgrade # tar xf postgresql15-server-15.7.pkg -C /tmp/pg-upgrade # tar xf postgresql15-contrib-15.7.pkg -C /tmp/pg-upgrade # pkg delete -f databases/postgresql15-server databases/postgresql15-contrib databases/postgresql15-client Now update PostgreSQL: pkg user: # pkg install databases/postgresql16-server databases/postgresql16-contrib # pkg upgrade Portmaster users: # portmaster databases/postgresql16-server databases/postgresql16-contrib # portmaster -a Portupgrade users: # portinstall databases/postgresql16-server databases/postgresql16-contrib # portupgrade -a After installing the new PostgreSQL version you need to convert all your databases to new version: # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data16 -U postgres" # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data15/ -B /usr/local/bin/ -D /var/db/postgres/data16/ -U postgres " Now the migration is finished. You can start PostgreSQL again with: # service postgresql start ATTENTION: 1) If you use non-default initdb options, you have to adjust the initdb-command accordingly 20240715: AFFECTS: net-mgmt/netbox AUTHOR: kai@FreeBSD.org The NetBox 4.0 release contains major changes, so at least the following items must be checked before proceeding with the upgrade: 1. NetBox v4.0 requires Python 3.10 or later. 2. Please also check the pkg-message and the changelogs for further info. 20240705: AFFECTS: sysutils/bacula*-{client,server} AUTHOR: netchildFreeBSD.org The start scripts of bacula have been renamed to bacula_fd, bacula_dir and bacula_sd for improved compatibility with other parts of the system. The automatic start at boot (rc.conf variable settings) is not affected, but if you have some other automatism you may want to change ".../etc/rc.d/bacula-fd" to ".../etc/rc.d/bacula_fd" ".../etc/rc.d/bacula-dir" to ".../etc/rc.d/bacula_dir" ".../etc/rc.d/bacula-sd" to ".../etc/rc.d/bacula_sd" or "service bacula-fd ..." to "service bacula_fd ..." "service bacula-dir ..." to "service bacula_dir ..." "service bacula-sd ..." to "service bacula_sd ..." 20240704: AFFECTS: net/xrdp and x11-drivers/xorgxrdp AUTHOR: meta@FreeBSD.org xrdp has been updated to the releases of the latest stable branch v0.10. This version significantly improves performance improvement especially if the client is Windows 11. There are two things to be careful about when updating. 1) Make sure to update both net/xrdp and x11-drivers/xorgxrdp ports simultaneously. 2) Config files require manual migration (follow the steps below). Review and backup changes you made to xrdp.ini and sesman.ini before updating xrdp. The following example only mentions xrdp.ini however make sure to do the same review, backup and migration for sesman.ini as well. Before updating xrdp, review and backup your changes. # cd /usr/local/etc/xrdp # diff -u xrdp.ini.sample xrdp.ini > xrdp.ini.diff After updating xrdp, migrate your changes to new configuration files. xrdp.ini.sample is replaced with new version at this point. See diff and manually apply changes. # cp xrdp.ini.sample xrdp.ini # vi xrdp.ini 20240620: AFFECTS: net-mgmt/net-snmp AUTHOR: markj@FreeBSD.org The snmpd and snmptrapd daemons now drop privileges by default when started using the rc scripts provided in the package. Make sure that snmpd configuration in /usr/local/share/snmp is readable by the "snmpd" user. If you have defined extension scripts in snmpd.conf, make sure that they can be executed by an unprivileged user. To revert to the old behavior of always running as root, set snmpd_sugid="NO" or snmptrapd_sugid="NO" in /etc/rc.conf. See the snmpd rc script for a hint on how to debug any permission problems that might arise as a result of this change. 20240615: AFFECTS: mail/cyrus-imapd25 AUTHOR: ume@FreeBSD.org The BDB option is disabled by default. If you are using the berkeley cyrusdb backend, we strongly recommend that you switch to something other than the berkeley cyrusdb backend. If you want to continue using the berkeley cyrusdb backend, build the cyrus-imapd25 port yourself with the BDB option enabled. 20240613: AFFECTS: multimedia/audacious and multimedia/audacious-plugins AUTHOR: madpilot@FreeBSD.org Upstream project made qt6 the new default, so the port flavors have been updated to follow this change. If you are using the qt6 flavor, you should uninstall it and install the unflavored package. If you want to keep using the qt5 version it will be updated automatically to the qt6 version. You should uninstall the unflavored package and install the qt5 flavor. 20240606: AFFECTS: users of net-mgmt/unifi8 AUTHOR: ronald@FreeBSD.org The default MongoDB version dependency has been switched from 5.0 to 6.0. Although MongoDB 5.0 -> MongoDB 6.0 datafiles in-place upgrade seem to work, users are strongly recommended to take full backup of unifi database prior to upgrade and start with clean installation afterwards. For an in-place upgrade it is important that the MongoDB 'featureCompatibilityVersion' is set to 5.0. See: https://www.mongodb.com/docs/v6.0/release-notes/6.0-upgrade-standalone/#feature-compatibility-version Run these commands in mongodb50 before upgrading (e.g. while unifi is running): $ mongo --port 27117 > db.adminCommand( { setFeatureCompatibilityVersion: "5.0" } ) > exit See updating entry 20230310 for a backup/restore upgrade. 20240604: AFFECTS: net-mgmt/net-snmp AUTHOR: markj@FreeBSD.org The net-snmp port's newsyslog(8) configuration has been updated such that the snmpd log file will be owned by the snmpd user following log rotation. This is done to make it easier to run snmpd as the snmpd user rather than as root, using the snmpd_sugid rc.conf option. For now snmpd still runs as root by default. This is expected to change in the future. 20240529: AFFECTS: users of TeX* AUTHOR: bofh@FreeBSD.org TeX system has been updated to 2024 from 2023. Normal pkg upgrade or portmaster -a should handle all the upgrade properly. In case not please create a ticket or send a mail to tex@FreeBSD.org Previously users have reported to delete texlive-texmf prior to starting update, or pkg-static will indicate there is a conflict during the upgrade of texlive-base : # pkg remove texlive-texmf 20240529: AFFECTS: users of python AUTHOR: rm@FreeBSD.org The default version of python3 and python was switched to 3.11. For ports users wanting to keep version 3.9 as default, add DEFAULT_VERSIONS+= python=3.9 python3=3.9 to make.conf Following procedures may ease the upgrade: For users of pre-build packages: # sh # for i in $(pkg query -g %n 'py39-*'); do pkg set -yn ${i}:py311-${i#py39-}; done # pkg upgrade For portmaster users: # sh # portmaster -o lang/python311 python39 # REINSTALL="$(pkg info -oq '*py39*')" # pkg delete -f "*py39*" # portmaster $REINSTALL # REBUILD=$(pkg query -g "%n:%dn" '*' | grep py3 | grep -v py311 | cut -d : -f 1 | sort -u) # portmaster $REBUILD # REBUILD2=$(pkg list | grep python-39 | xargs pkg which | awk '{print $6}' | sort -u) # portmaster $REBUILD2 Final steps (for pre-built packages & portmaster): If no longer required, Python 3.9 can be removed via "pkg remove python39" and the directory /usr/local/lib/python3.9 can then be deleted afterwards, if not empty. 20240522: AFFECTS: net-p2p/transmission-daemon The web interface has been separated from the daemon port into its own port. This allows users of transmission-gtk and transmission-qt to install the web interface. 20240521: AFFECTS: www/gitlab AUTHOR: mfechner@FreeBSD.org Make sure you upgrade first to 16.11.x before you upgrade to the today released version 17.0.0. For more details see: https://gitlab.fechner.net/mfechner/Gitlab-docu/-/blob/master/update/16.11-17.0-freebsd.md 20240517: AFFECTS: comms/tio AUTHOR: diizzy@FreeBSD.org As of 3.1 upstream have reworked configuration file layout and syntax so older configurations will not work. For more details, see https://github.com/tio/tio/releases/tag/v3.1 20240513: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org The port has been updated to the latest stable version 3.9 of LibreSSL. The shared library versions of the libraries have been bumped. After upgrading, manually update all packages that depend on any of the libraries provided by LibreSSL (libssl, libcrypto and libtls) since the versions of these libraries have changed. Normally, you can obtain the list of dependent software by running the following command: # pkg info -r libressl Then you should rebuild all ports depending on libressl to avoid dangling shared library dependencies. 20240509: AFFECTS: databases/timescaledb AUTHOR: kbowling@FreeBSD.org The Foreign Key storage in hypertables has changed in an incompatible way, after running ALTER EXTENSION, you must run the SQL script here: https://github.com/timescale/timescaledb-extras/blob/master/utils/2.15.X-fix_hypertable_foreign_keys.sql For more details, see https://github.com/timescale/timescaledb/pull/6797 20240508: AFFECTS: www/oauth2-proxy AUTHOR: netchild@FreeBSD.org The start script is converted to be instance aware. To use it: - cp /usr/local/etc/oauth2-proxy.cfg.sample /usr/local/etc/oauth2-proxy-myapp.cfg - vi /usr/local/etc/oauth2-proxy-myapp.cfg - ln -s oauth2_proxy /usr/local/etc/rc.d/oauth2_proxy_myapp - sysctl oauth2_proxy_myapp_enable=YES - service oauth2_proxy_myapp start This allows to easily start multiple instances on the same system. As part of this, the start script was renamed to oauth2_proxy. This only affects manual restarts, no change in rc.conf is needed. 20240430: AFFECTS: audio/py-pyradio AUTHOR: nivit@FreeBSD.org The new version of Pyradio moves some data files to new locations. To see what it really does, run pyradio from a terminal the first time. Besides that, the recordings are moved/saved into ~/pyradio-recordings. You can change that directory in the config file. For more details, see https://github.com/coderholic/pyradio/releases/tag/0.9.3 20240423: AFFECTS: textproc/vale AUTHOR: bofh@FreeBSD.org When upgrading to v3.0.0, the vocabularies need to be moved from $StylesPath/Vocab to $StylesPath/config/vocabularies. 20240421: AFFECTS: www/gitlab-ce AUTHOR: mfechner@FreeBSD.org With the upgrade to version 16.11 the default path for gitlab-ce changed: /usr/local/www/gitlab-ce -> /usr/local/www/gitlab Make sure you follow the upgrade manual very carefully: https://gitlab.fechner.net/mfechner/Gitlab-docu/-/blob/master/update/16.10-16.11-freebsd.md The gitlab port also got a new flavor gitlab@ee to make the Gitlab Enterprise Edition available (you will need a license for it). Please note, that the ee flavor is a draft, but any feedback is welcome. See also the installation and upgrade manual for more details. https://gitlab.fechner.net/mfechner/Gitlab-docu/-/blob/master/install/16.11-freebsd.md 20240408: AFFECTS: users of databases/p5-DBD-mysql AUTHOR: flo@FreeBSD.org Upstream removed support for MariaDB from the 5.0 branch. So if you use MariaDB you need to use databases/p5-DBD-mysql4 from now on. Portmaster users: portmaster -o databases/p5-DBD-mysql4 databases/p5-DBD-mysql portmaster -a Portupgrade users: portupgrade -o databases/p5-DBD-mysql4 -f databases/p5-DBD-mysql portupgrade -a 20240330: AFFECTS: users of mail/spamassassin AUTHOR: cy@FreeBSD.org sa-update must be run following update and prior to restarting sa-spamd else it will fail to start due to a syntax error. 20240326: AFFECTS: users of net/bird2 AUTHOR: olivier@FreeBSD.org The net/bird2 default flavor has been switched to netlink on FreeBSD >= 14.0. There is no change for FreeBSD < 14.0 (default flavor is still rtsock). 20240319: AFFECTS: users of net/rdist6 AUTHOR: cy@FreeBSD.org As of 52032b3d50c0 net/rdist6 will install its binary named rdist instead of rdist6. Base FreeBSD no longer has its own rdist binary. Therefore there is no need to rename the rdist6 binary to rdist6 to avoid confusion. The historical and default name of the rdist binary is "rdist". 20240318: AFFECTS: users of net-mgmt/unifi8 AUTHOR: otis@FreeBSD.org The default MongoDB version dependency has been switched from 4.4 to 5.0. Although MongoDB 4.4 -> MongoDB 5.0 datafiles in-place upgrade seem to work, users are strongly recommended to take full backup of unifi database prior to upgrade and start with clean installation afterwards. See updating entry 20230310 for details. 20240316: AFFECTS: users of net/rabbitmq AUTHOR: dch@FreeBSD.org In preparation for upgrading to future RabbitMQ releases, users *must* enable all feature flags before upgrading stepwise to v3.12.13, to be able to migrate later to v3.13.0 when it is released in 2024Q2. See https://www.rabbitmq.com/docs/upgrade for details. 20240228: AFFECTS: users of www/redmine50 AUTHOR: bofh@FreeBSD.org The default version of ruby has been switched from 3.1 to 3.2. However www/redmine50 does not support ruby 3.2. Users should add the following in their relevant make.conf file: DEFAULT_VERSIONS+=ruby=3.1 Although redmine 5.1.X supports ruby 3.2 and later but so far there is no redmine51 ports in the tree. 20240222: AFFECTS: users of databases/xtrabackup8 AUTHOR: eugen@FreeBSD.org The port databases/xtrabackup8 upgraded to version 8.0.35-30 and renamed to databases/xtrabackup80 in preparation for upcoming incompatible branch databases/xtrabackup81, to avoid confusion. 20231229: AFFECTS: users of databases/tarantool AUTHOR: arrowd@FreeBSD.org A new major version of the tarantool has been released. databases/tarantool renamed to databases/tarantool2. 2.11 is an LTS version and will be supported for a while. 20231125: AFFECTS: users of lang/php81 AUTHOR: bofh@FreeBSD.org The default version of PHP has been switched from 8.1 to 8.2. If you use binary packages you should make a list of php packages before running 'pkg upgrade': # pkg info \*php81\* > ~/installed-php-ports-list After the upgrade, check with such list if all your php extensions are still installed, and reinstall them if needed. If you use mod_php81 you need to deinstall it and install mod_php82. 20231104: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org The port has been updated to the latest stable version 3.8 of LibreSSL. The shared library versions of the libraries have been bumped. After upgrading, manually update all packages that depend on any of the libraries provided by LibreSSL (libssl, libcrypto and libtls) since the versions of these libraries have changed. Normally, you can obtain the list of dependent software by running the following command: # pkg info -r libressl Then you should rebuild all ports depending on libressl to avoid dangling shared library dependencies. 20231031: AFFECTS: users of devel/subversion-lts AUTHOR: michaelo@FreeBSD.org devel/subversion-lts has been updated from 1.10.x to the latest LTS version, 1.14.x. Some changes between these releases may require attention from administrators or users. Refer to https://subversion.apache.org/docs/release-notes/1.14.html#compat-misc for details. 20231028: AFFECTS: users of net-mgmt/nfdump nfdump-1.7.x is compatible to nfdump-1.6.18, which means it can read files created with nfdump-1.6.18 or newer. Flow files created with earlier nfdump versions may not contain all flow elements. If you have older files, it is recommended to use nfdump-1.6.17 to update the records. nfdump 1.7.x provides the same set of programs as 1.6.x and can be used almost as a drop-in replacement. This may change in future and older legacy programs may be removed. You can convert any old files from nfdump-1.6 to nfdump-1.7 format by reading/writing files: ./nfdump -r old-flowfile -y -w new-flowfile Please note, that only nfdump may read older flow files. All other programs rely on the new file format. 20231027: AFFECTS: users of net-mgmt/librenms AUTHOR: dvl@FreeBSD.org When updating to >= 23.10.0, a broken crontab is fixed. This breakage caused the validation error: Scheduler is not running After updating, If that error does not clear for you, run: sudo lnms config:cache 20231027: AFFECTS: users of print/ghostscript9* AUTHOR: michaelo@FreeBSD.org The default ghostscript version has been updated from 9 to 10. If you compile your own ports you may keep 9 as the default version by adding the following lines to your /etc/make.conf file: # # Keep ghostscript 9 as default version # DEFAULT_VERSIONS+=ghostscript=9 Please note that print/ghostscript9* will be removed in the future since it is not supported by upstream anymore. 20231026: AFFECTS: users of lang/chicken AUTHOR: gahr@FreeBSD.org The chicken binaries csc and csi, together with their manual pages, have been renamed to chicken-csc and chicken-csi, to avoid conflicts with lang/mono. This is in line with what several Linux distros do. See PR 274736. 20231023: AFFECTS: users of mail/mailman3 AUTHOR: einar@isnic.is logging.http section has now been split into two parts, logging.http is for the Mailman internal code and logging.gunicorn is for Gunicorn specifically since they have different logging formats. This should fix spurious errors with KeyError: t that was often confusing for users. Python 3.9 is now the minimum supported version of Python. 20231017: AFFECTS: users of lang/perl5* AUTHOR: delphij@FreeBSD.org The default Perl version has been switched to Perl 5.36. If you are using binary packages to upgrade your system, you do not have anything to do, pkg upgrade will do the right thing. For the other people, assuming you are migrating from 5.34 to 5.36, do: First, add to /etc/make.conf: DEFAULT_VERSIONS+= perl5=5.36 Portupgrade users: portupgrade -o lang/perl5.36 -f lang/perl5.34 You can now remove the DEFAULT_VERSIONS line added earlier from /etc/make.conf Then you will need to rebuild everything that uses libperl.so, you can do so with: portupgrade -f `pkg shlib -qR libperl.so.5.34` If, for some reason, this command fails at one point, it is safe to run it again, it will not rebuild what it already rebuilt, as the ports that have been rebuilt no longer depend on libperl.so.5.34 but on libperl.so.5.36. Portmaster users: portmaster -o lang/perl5.36 lang/perl5.34 You can now remove the DEFAULT_VERSIONS line added earlier from /etc/make.conf Then you will need to rebuild everything that uses libperl.so, you can do so with: portmaster -f `pkg shlib -qR libperl.so.5.34` If, for some reason, this command fails at one point, it is safe to run it again, it will not rebuild what it already rebuilt, as the ports that have been rebuilt no longer depend on libperl.so.5.34 but on libperl.so.5.36. 20231014: AFFECTS: users of security/openssl and security/openssl30 AUTHOR: brnrd@FreeBSD.org The openssl port was renamed to openssl111 and subsequently the openssl30 port was renamed to openssl. The shared library version of OpenSSL has been bumped. Users of DEFAULT_VERSIONS= ssl=openssl30 must update this to ssl=openssl. Users of DEFAULT_VERSIONS= ssl=openssl should not change this unless they use ports that require the deprecated OpenSSL 1.1.1 version. You must rebuild all ports that depend on OpenSSL if you use OpenSSL from ports. 20231011: AFFECTS: users of www/caddy AUTHOR: adamw@FreeBSD.org The default admin endpoint has changed from localhost:2019 to /var/run/caddy/caddy.sock. Using a Unix socket is more secure, allowing it to be secured by filesystem permissions rather than requiring a firewall. If you only control caddy from the rc(8) script (service caddy ...), you don't need to do anything. If you access the API yourself, you will want to update your scripts to use the new socket. To use the old endpoint, add the following to /etc/rc.conf: caddy_admin="localhost:2019" 20231009: AFFECTS: users of net/ntpd-rs AUTHOR: mikael@freebsd.org In 1.0.0 the configuration has been completely reworked, please check the documentation for details. Configuration will not automatically migrate. 20231004: AFFECTS: www/gitlab-ce AUTHOR: mfechner@FreeBSD.org Before you upgrade to version 16.4.x or higher, make sure you did the upgrade to 16.3.x! The database migration for 16.4.1 can fail due to unexpected name of a foreign key. So it is recommended to have a database backup available in case the solution described in the update manual does not work for you. The upgrade manual can be found as usual here: https://gitlab.fechner.net/mfechner/Gitlab-docu/-/blob/master/update/16.3-16.4-freebsd.md 20230930: AFFECTS: users of Transmission (net-p2p/transmission@*) AUTHOR: mondo.debater_0q@icloud.com Fixes Bug 274065 by reorganizing the port as a metaport (net-p2p/transmission) and components port (net-p2p/transmission-components). Each component may be installed through the flavors of transmission-componenents (@cli, @daemon, @docs, @gtk, @qt, @utils). Alternatively, one or more component may be installed by running make config on the metaport net-p2p/transmission. AFFECTS: users of devel/php-composer2 AUTHOR: madpilot@FreeBSD.org The composer2 ports has been moved over the old devel/php-composer port, which was still providing the old EOLed version 1 of the software. Please use `pkg install php81-composer` (substitute 81 with the PHP version you're using) to properly upgrade. 20230924: AFFECTS: users of XFCE desktop (x11-wm/xfce4) AUTHOR: madpilot@FreeBSD.org XFCE 4.18 is incompatible with the latest version of the adwaita icon theme (version 42.0 and newer), which was used as the default one. Due to this the default icon theme has been changed to x11-themes/xfce-icons-elementary. Users that have XFCE already installed and are using the adwaita icon theme will notice missing icons. To fix this you can install any other icon theme (like x11-themes/xfce-icons-elementary) and configure XFCE to use that via the "appearance" settings application, under the "icons" tab. 20230919: AFFECTS: users of net-p2p/transmission AUTHOR: mondo.debater_0q@icloud.com The 4.0 port haphazardly consolidated prior slave ports into flavors of a single port. The flavors have now been revised to better match releases prior to 4.0. The -full flavor included in the 4.0 port has been replaced with -default, which restores the compile-time options of prior release's metaport. Other flavors allow for more piecemeal installs. The prior -web slave port can be installed through the -default flavor or the -daemon flavor. See Bug 273841 for more details. 20230915: AFFECTS: users of print/ghostscript10 AUTHOR: michael.osipov@siemens.com The port flavors have been replaced with a default port option of X11. The flavors approach creates conflicting dependencies with other ports which cannot be solved this time with the ports framework. See PRs 270989 and 272541 for details. 20230910: AFFECTS: users of dns/powerdns AUTHOR: tremere@cainites.net In Authoritative Server 4.8, the LMDB backend gains a new Lightning Stream-compatible schema, which requires a data migration (this is automatic, and there is no migration back to the old schema). LMDB backend users should pay extra attention to the Upgrade Notes (https://doc.powerdns.com/authoritative/upgrading.html). 20230910: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org 1. Please make sure that the PostgreSQL server for the NetBox instance is running version 12 or higher. This is because Django 4.2 requires PostgreSQL 12 as a minimum. 2. Please also check the pkg-message and the changelogs for further info. 20230908: AFFECTS: users of databases/postgresql* and other software using PostgreSQL to run AUTHOR: kbowling@FreeBSD.org The default version of PostgreSQL has been switched from 13 to 15. The upgrade procedure can use up twice the space the databases currently needs. If you have a big amount of stored data take a closer look at the manpage of pg_upgrade for avoidance and/or speedup of the upgrade. The upgrade instructions consider a basic usage and do not match complex scenarios like replication, sharding, or similar. Upgrade instructions: First stop your PostgreSQL, create PostgreSQL-binaries and backup your data. If you have another Version of PostgreSQL installed, for example 13, your files are named according to this. # service postgresql stop # pkg create postgresql13-server postgresql13-contrib # mkdir /tmp/pg-upgrade # tar xf postgresql13-server-13.12.pkg -C /tmp/pg-upgrade # tar xf postgresql13-contrib-13.12.pkg -C /tmp/pg-upgrade # pkg delete -f databases/postgresql13-server databases/postgresql13-contrib databases/postgresql13-client Now update PostgreSQL: pkg user: # pkg install databases/postgresql15-server databases/postgresql15-contrib # pkg upgrade Portmaster users: # portmaster databases/postgresql15-server databases/postgresql15-contrib # portmaster -a Portupgrade users: # portinstall databases/postgresql15-server databases/postgresql15-contrib # portupgrade -a After installing the new PostgreSQL version you need to convert all your databases to new version: # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data15 -U postgres" # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data13/ -B /usr/local/bin/ -D /var/db/postgres/data15/ -U postgres " Now the migration is finished. You can start PostgreSQL again with: # service postgresql start ATTENTION: 1) The default user changed from "pgsql" to "postgres" in 11. The migration steps above now assume the "postgres" database user and FreeBSD user. 2) If you use non-default initdb options, you have to adjust the initdb-command accordingly 20230906: AUTHOR: jrm@FreeBSD.org AFFECTS: users of sysutils/devcpu-data* The CPU microcode ports have been reorganized. The new ports are: sysutils/cpu-microcode, sysutils/cpu-microcode-amd, sysutils/cpu-microcode-intel, and cpu-microcode-rc. To install all CPU microcode packages: pkg install cpu-microcode To install only packages for a specific CPU vendor: pkg install cpu-microcode-amd or pkg install cpu-microcode-intel To give users time to adjust to these changes, sysutils/devcpu-data will remain in the tree until the end of 2023. The port has been converted to a metaport and now provides the same functionality as sysutils/cpu-microcode. Refer to the commit log in bc7829212d153aeff69b439d08e2e3001ef88ba3 for an explanation as to why these changes were made. 20230904: AUTHOR: netchild@FreeBSD.org AFFECTS: users of misc/openhab The rc.d script of 4.0.2 had an error which didn't take the user to run openhab into account. After installing the update and stopping openhab run (for the default settings) chown -R openhab:openhab /var/db/openhab/userdata /var/log/openhab If you use other directories for the userdata and logs, you need to adapt accordingly. 20230822: AUTHOR: arrowd@FreeBSD.org AFFECTS: users of sysutils/polkit together with sysutils/consolekit2 ConsoleKit2 has grown some logind1 compatibility which resulted in breaking changes in its API. One of its consumers, Polkit, is patched to handle it, so make sure to update both ports simultaneously. 20230822: AUTHOR: leres@FreeBSD.org AFFECTS: users of security/zeek Zeek has been upgraded to 6.0.0 and the NETMAP option was removed; it was too difficult to build it without zeek being installed in %%PREFIX%%. The consensus was that this was a rarely used feature, please reach out to me if need this (I've done some work on a new security/zeek-netmap port that is probably the right way forward). When I upgraded zeek on my systems I found some cruft left over from previous versions. The way I recommend upgrading from 5.0.9 to 6.0.0 is: service zeek stop pkg delete -fy zeek py311-zkg [clean up leftover files in /usr/local/lib/zeek] pkg install -y zeek service zeek deploy 20230817: AFFECTS: users of databases/redis AUTHOR: yasu@FreeBSD.org The databases/redis port has been updated to 7.2. Users wanting to stay on 7.0 can replace databases/redis with databases/redis70 with one of the following commands. If you use pkg with binary packages: # pkg set -o databases/redis:databases/redis70 # pkg upgrade If you use portmaster: # portmaster -o databases/redis70 databases/redis If you use portupgrade: # portupgrade -o databases/redis70 databases/redis 20230814: AFFECTS: usrs of www/kdsoap AUTHOR: kde@FreeBSD.org The port www/kdsoap has been flavorized to support both Qt5 and Qt6. For symmetry, the Qt5 package has been renamed to kdsoap-qt5. 20230811: AFFECTS: users of www/p5-AnyEvent-WebSocket-Client AUTHOR: rodrigo@FreeBSD.org The update to AnyEvent-WebSocket-Client 0.55 introduce a change in behavior: close() default return code is now 1000 instead of 1005 20230730: AFFECTS: users of lang/perl5* AUTHOR: delphij@FreeBSD.org The default Perl version has been switched to Perl 5.34. If you are using binary packages to upgrade your system, you do not have anything to do, pkg upgrade will do the right thing. 20230726: AFFECTS: users of misc/openhab AUTHOR: netchild@FreeBSD.org The update to openhab 4.0.0 may require changes to the running 3.x setup. Read the release notes at https://github.com/openhab/openhab-distro/releases/tag/4.0.0 and the blog entry at https://www.openhab.org/blog/2023-07-23-openhab-4-0-release.html for manual changes which are required before updating the port. After the update the pkg-message provides some more info about manual changes which are required to perform before the first start of 4.0.0. Note, this includes a switch from java 11 to java 17. You can deinstall openjdk11 afterwards, if it is not needed for something else. 20230723: AFFECTS: users of security/py-cryptography AUTHOR: tcberner@FreeBSD.org Modern py-cryptography uses rust. In order to still support the Tier-2 architectures without rust support, a new default-version was added: PYCRYPTOGRAPHY it allows for the values 'rust' and 'legacy'. The default is 'rust' on all platforms supporting this. Note: users that are relying on the 'legacy' version will also take care of using a non-base OpenSSL in the future. 20230620: AFFECTS: users of lang/elixir-devel AUTHOR: dch@FreeBSD.org Note that Elixir now *requires* OTP25+ or better at runtime. For the -devel flavour you are still free to choose OTP25 or OTP26, but the default OTP24 from lang/erlang will *not* work. 20230618: AFFECTS: users of devel/soft-serve AUTHOR: ashish@FreeBSD.org soft-serve no longer uses config repository for configuration. To migrate configuration from 0.4.x to 0.5.x, please review the upgrade documentation at: https://github.com/charmbracelet/soft-serve/releases/tag/v0.5.0 The migration process has been incorporated in rc.d script's migrate command, and can be performed using following instructions: 0. Please make sure to backup repository data 1. Stop existing process: # /usr/local/etc/rc.d/soft-serve stop 2. Run the rc.d script to migrate, e.g. # /usr/local/etc/rc.d/soft-serve migrate INFO Setting SSH listen address... INFO Copying SSH host key... INFO Reading config repository... INFO Setting server settings... INFO Copying repos... INFO Copying repo ports INFO Copying readme from "config" to ".soft-serve" INFO Setting repos metadata & collabs... INFO Creating users & collabs... INFO Creating user "ashish" INFO Writing config... INFO Done! Another variable is introduced in rc.d script, soft_serve_data_path, indicating the path to data directory used by soft-serve. 20230618: AFFECTS: textproc/apache-solr* AUTHOR: mfechner@FreeBSD.org Apache solr is upgraded to version 9. Data migration is required, examples for dovecot data can be found here: https://dovecot.org/pipermail/dovecot/2022-May/124701.html https://dovecot.org/pipermail/dovecot/2022-May/124711.html If you like to stay on version8: # pkg delete apache-solr # pkg install apache-solr8 20230609: AFFECTS: users of security/sequoia AUTHOR: vishwin@FreeBSD.org sq has been split to security/sequoia-sq; security/sequoia becomes a meta-port, where security/sequoia-sq is currently the only dependency. As other programs are individually ported over, they will become OPTIONS in the meta-port. Per upstream, FFI is deprecated in favour of point solutions. 20230602: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org 1. If the plugin security/py-netbox-secretstore is used, which is no longer maintained by upstream, the following steps must be done before upgrading to NetBox 3.5: * Migrate from security/py-netbox-secretstore (= 1.4.2_2) to security/py-netbox-secrets (= 1.7.6) with a NetBox 3.4.x instance. It is very important that the versions of py-netbox-secretstore and py-netbox-secrets match as specified otherwise the migration will not be successful. The reason for this is that py-netbox-secrets 1.8.x is not backwards compatible with Netbox 3.4. For further details please see the updating instructions of py-netbox-secretstore or the UPDATING entry of 2023-05-11. 2. Please also check the pkg-message and the changelogs for further info. 20230531: AFFECTS: users of net-mgmt/netdisco AUTHOR: dgeo@centrale-marseille.fr The netdisco user now needs a HOME and a shell. For existing installs you will need to set HOME to /usr/local/etc/netdisco and shell to /bin/sh. For example in one shell line: pw user mod netdisco -d /usr/local/etc/netdisco -s /bin/sh 20230526: AFFECTS: users of mail/exim AUTHOR: pi@FreeBSD.org The port changes from USE_DB to USE_NDBM. Any existing configuration like ${lookup{$needle}dbm{haystack.db}} will need to change to ${lookup{$needle}dbm{haystack}}. Please also rename your old DBM files while the exim daemon is stopped: find /var/spool/exim/db/* -not -name \*.lockfile -exec mv -i {} {}.db \; 20230513: AFFECTS: users of www/tt-rss AUTHOR: dereks@lifeofadishwasher.com www/tt-rss now expects the user to install the database drivers by hand allowing the port to be database independent however it would be best if you mark the php driver packages as a non-automatic package such that pkg-autoremove doesn't uninstall them. Change 80 to your corresponding php version (80, 81, 82) mysql: pkg set -yA 0 php80-mysqli php80-pdo_mysql; pgsql: pkg set -yA 0 php80-pgsql php80-pdo_pgsql; 20230511: AFFECTS: users of net-mgmt/py-netbox-secretstore AUTHOR: kai@FreeBSD.org Upstream no longer maintains py-netbox-secretstore which it is not compatible with NetBox 3.5 or newer. To ensure compatibility with newer releases of NetBox, the py-netbox-secrets plugin should be used instead. To migrate from security/py-netbox-secretstore to security/py-netbox-secrets please do following steps: 1. Make a backup. 2. Install security/py-netbox-secrets 3. Enable both plugins by updating the following line in the netbox configuration (e.g. /usr/local/share/netbox/netbox/configuration.py): PLUGINS = ['netbox_secretstore', 'netbox_secrets'] 4. Run NetBox migrations: # cd /usr/local/share/netbox # python3.9 manage.py migrate 5. Re-adjust the indices for the netbox-secrets plugin: # python3.9 manage.py sqlsequencereset netbox_secrets > output.sql 6. Run the output of the previous command in the database, e.g.: # psql -d NETBOXDB < output.sql 7. You can now remove netbox-secretstore from the application by removing it from the PLUGINS line in the netbox configuration: PLUGINS = ['netbox_secrets'] 8. Collect static files of the netbox-secrets plugin: # python3.9 manage.py collectstatic --no-input 9. Restart WSGI/httpd environment (supervisord/apache/nginx/etc.). 10. You may have clean up your database of the old tables manually, e.g.: DROP TABLE netbox_secretstore_secret; DROP TABLE netbox_secretstore_secretrole; DROP TABLE netbox_secretstore_sessionkey; DROP TABLE netbox_secretstore_userkey; 11. Uninstall security/py-netbox-secretstore. 20230505: AFFECTS: users of mail/mutt AUTHOR: dereks@lifeofadishwasher.com The patches included in the mail/mutt port will be removed in approximately a month making the port more inline with upstream. If you require any of these features most are available in mail/neomutt or it's possible to use EXTRA_PATCH_TREE to patch a port when building locally. 20230504: AFFECTS: users of sysutils/py-mqttwarn AUTHOR: dvl@FreeBSD.org The redis option REISPUB has been renamed to REDISPUB You should update any make.conf setting etc which refer to this. e.g. change sysutils_py-mqttwarn_REISPUB to sysutils_py-mqttwarn_REDISPUB 20230416: AFFECTS: users of databases/mongodb50, databases/mongodb44 and databases/mongodb60 AUTHOR: ronald@FreeBSD.org MongoDB removed the settings 'fork' and 'pidFilePath' from the default etc/mongodb.conf file. This does not affect mongod started by etc/rc.d/mongod as the settings are passed as arguments. Please verify custom uses of mongod. 20230414: AFFECTS: users of www/gitea AUTHOR: fernape@FreeBSD.org Gitea 1.19.1 contains a breaking change. actions unit has ben renamed to to repo.actions. 20230407: AFFECTS: users of devel/sonarqube-community AUTHOR: netchild@FreeBSD.org You need to make sure to update missing and changed values in PREFIX/libexec/sonarqube/conf/sonar.properties from PREFIX/libexec/sonarqube/conf/sonar.properties.sample 20230318: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org The port has been updated to the latest stable version 3.6 of LibreSSL. The shared library versions of the libraries have been bumped. After upgrading, manually update all packages that depend on any of the libraries provided by LibreSSL (libssl, libcrypto and libtls) since the versions of these libraries have changed. Normally, you can obtain the list of dependent software by running the following command: # pkg info -r libressl Then you should rebuild all ports depending on libressl to avoid dangling shared library dependencies. 20230315: AFFECTS: users of lang/ruby30 AUTHOR: yasu@FreeBSD.org The default ruby version has been updated from 3.0 to 3.1. If you compile your own ports you may keep 3.0 as the default version by adding the following lines to your /etc/make.conf file: # # Keep ruby 3.0 as default version # DEFAULT_VERSIONS+=ruby=3.0 If you wish to update to the new default version, you need to first stop any software that uses ruby. Then, you will need to follow these steps, depending upon how you manage your system. If you use pkg, simply upgrade: # pkg upgrade If you do not use pkg, please check entry 20220421. The description there should also work for this version. 20230314: AFFECTS: users of security/openssl-devel AUTHOR: brnrd@FreeBSD.org Users using DEFAULT_VERSIONS=ssl=openssl-devel must update their configuration to DEFAULT_VERSIONS=ssl=openssl30 or openssl31. 20230313: AFFECTS: users of databases/sqlite3 AUTHOR: fuz@FreeBSD.org Due to various ports not being prepared for this change (see 20230227 entry), the DQS option of databases/sqlite3 has been reenabled as a stop gap measure. It is scheduled to be disabled again for good no earlier than 20240101, giving downstream software authors more time to fix their queries. See also: https://sqlite.org/quirks.html#dblquote 20230311: AFFECTS: users of net/dshell AUTHOR: nobutaka@FreeBSD.org net/dshell now depends on net/py-pcapy-ng instead of net/py-pcapy. Because net/py-pcapy-ng conflicts with net/py-pcapy, please uninstall py39-pcapy with the following command before upgrading: # pkg delete -f py39-pcapy 20230310: AFFECTS: users of net-mgmt/unifi7 AUTHOR: otis@FreeBSD.org The mongodb dependency has been changed from 36 to 44, as MongoDB 3.6 is long out out support and end of life. The upgrade path should be as following: 1. Take a backup from within the unifi7 application PRIOR to updating! 2. Stop the unifi7 service (if running) 3. Copy the "backup" directory from LOCALBASE/share/java/unifi/data to a safe location. Also copy keystore and system.properties if you have made any modifications to those files 4. Remove files and directories under LOCALBASE/share/java/unifi/data 5. Upgrade the package 6. Copy the "backup" directory from a safe location back to LOCALBASE/share/java/unifi/data 7. Start the service 8. Restore the configuration from backup As an optional step, review system.properties and keystore to merge any manual modifications you have made (this has to be done with the application stopped) 20230310: AFFECTS: user of benchmarks/ddosify AUTHOR: fernape@FreeBSD.org keep-alive is removed from config file. In default mode, the engine will use keep-alive for all requests. If you want to disable keep-alive for a step, you can add Connection: close header to the step. 20230306: AFFECTS: users of www/qt5-webengine AUTHOR: kai@FreeBSD.org Users that upgrade www/qt5-webengine without using pkg/poudriere might experience failures due to conflicts with the installed version of 5.15.2. In that case, pkg delete -f the qt5-webengine package before building the updated version. 20230304: AFFECTS: users of accessibility/atk and accessibilty/at-spi2-atk AUTHOR: tcberner@FreeBSD.org The packages accessibility/atk and accessibility/at-spi2-atk have been integrated upstream into at-spi2-core. Users of these packages can manually remove them prior to updating accessibility/at-spi2-core using pkg delete -f atk at-spi2-atk if the pkg update process fails due to conflicting files. 20230227: AFFECTS: users of databases/sqlite3 AUTHOR: fuz@FreeBSD.org Option DQS is now disabled by default. This option controls the "double quoted string literals are accepted" quirk, permitting the use of double quotes around string literals if enabled. Users who rely on this quirk need to manually build databases/sqlite3 with the DQS option enabled. See also: https://sqlite.org/quirks.html#dblquote 20230227: AFFECTS: users of mail/py-spf-engine AUTHOR: yasu@FreeBSD.org Default configuration file path of pyspf-milter has changed. Since it looks for ${PREFIX}/etc/etc/pyspf-milter/pyspf-milter.conf now, you should edit the file if you run pyspf-milter. Alternatively you can specify other configuration file path by setting pyspf_milter_conffile variable in /etc/rc.conf. 20230222: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org 1. Please make sure that the PostgreSQL server for the NetBox instance is running version 11 or higher. This is because PostgreSQL 10 is End-of-Life since November 2022 and Django 4.1 requires PostgreSQL 11 as a minimum. 2. Please also check the pkg-message and the changelogs for further info. 20230218: AFFECTS: users of databases/mysql57-(server|client) AUTHOR: joneum@FreeBSD.org The default MySQL version has been updated from 5.7 to 8.0. If you compile your own ports you may keep 5.7 as the default version by adding the following lines to your /etc/make.conf file: # # Keep MySQL 5.7 as default version # DEFAULT_VERSIONS+=mysql=5.7 If you wish to update to the new default version, you need to first stop any running server instance. Then, you will need to follow these steps, depending on installed packages. # pkg set -o databases/mysql57-client:databases/mysql80-client # pkg set -o databases/mysql57-server:databases/mysql80-server # pkg upgrade 20230213: Affects: users of sysutils/nut* AUTHOR: cy@FreeBSD.org The nut file ownership fixups due to the UID/GID change from uucp/uucp to nut/nut may not be desireable for all users. Some users with custom file ownership may wish ownership to remain untouched. This revision to the nut family of ports/packages allows users to optionally disable automatic fixup of nut file ownership. 20230213: AFFECTS: users of security/logcheck AUTHOR: yasu@FreeBSD.org Since 1.4.1 ${PREFIX}/etc/logcheck/logcheck.logfiles is empty and files to be checked by logcheck are specified in ${PREFIX}/etc/logcheck/logcheck.logfiles.d/syslog.logfiles. So if you previously edited the former, then you should edit the latter now. 20230210: AFFECTS: users of mail/fetchmail AUTHOR: fernape@FreeBSD.org Fetchmail now warns about OpenSSL before 1.1.1s or 3.0.7, and rejects wolfSSL older than 5.5.1. 20230209: AFFECTS: users of audio/jack AUTHOR: fernape@FreeBSD.org audio/jack 1.9.22 fixes an issue with latency correction on FreeBSD. Latency correction parameters have to be measured again after update. 20230130: AFFECTS: users of USES=nodejs, www/node*, www/npm* and www/yarn* AUTHOR: sunpoet@FreeBSD.org The current USES=nodejs has the following issues: - www/node is not the default version while www/node16 is. - It also means inconsistent naming of node ports. - www/npm duplicates with www/npm-node16. - www/yarn duplicates with www/yarn-node16. The notable changes are introduced to fix the above issues: - Rewrite Mk/Uses/nodejs.mk. - Add new LTS version of nodejs (www/node18). - Add new current version of nodejs (www/node19). - Change default nodejs version from 16 to 18 (latest LTS), - Use consistent naming for all supported node versions. - Convert www/node, www/npm and www/yarn to meta ports. After these changes: - All supported node versions are named as node{14,16,18,19}. - www/node is a meta port which depends on the default version (e.g. www/node18) - www/npm is a meta port which depends on the default version (e.g. www/npm-node18) - www/yarn is a meta port which depends on the default version (e.g. www/yarn-node18) 20230129: AFFECTS: users of benchmarks/ddosify AUTHOR: fernape@freebsd.org In 0.13.0 some configuration keys have been renamed for consistency. Have a look at https://github.com/ddosify/ddosify/releases/tag/v0.13.0 for details. 20230127: AFFECTS: users of security/openvpn AUTHOR: mandree@freebsd.org OpenVPN has been updated to the new upstream release v2.6.0, which is quite compatible with v2.5 versions. A copy of the latest v2.5.8 port is being kept as security/openvpn25 (or openvpn25 package) until end of March 2023. 20230116: AFFECTS: users of sysutils/nut and sysutils/nut-devel AUTHOR: cy@freebsd.org As of PR/268960 Network UPS Tools will now run under its own UID and GID instead of uucp. Users who wish to continue using the uucp user and group may add NUT_USER=uucp and NUT_GROUP=uucp to their make.conf. After upgrading sysutils/nut or sysutils/nut-devel with this patch, restart devd. Then restart nut. This will fix up the permissions of UPS USB devices and allow nut to start normally. 20230111: AFFECTS: users of sysutils/graylog AUTHOR: dch@freebsd.org Graylog 5.x and higher effectively constrains ElasticSearch dependencies, and in most cases will force a migration to OpenSearch 2.x, now available in ports. Plan accordingly. 20230104: AFFECTS: users of mail/spamassassin AUTHOR: cy@freebsd.org As of spamassassin 4.0.0 (3fdfceb36029) the deprecated HashCash plug-in was finally removed. Users using the HashCash plug-in will need to remove references to it. 20221226: AFFECTS: users of sysutils/zrepl AUTHOR: driesm@FreeBSD.org The Prometheus metric zrepl_version_daemon has been converted to the zrepl_start_time metric. The metric still reports the zrepl verison in a label. But the metric value is now the Unix timestamp at the time the daemon was started. The Grafana dashboard in dist/grafana has been updated. The RPC protocol version has also been bumped; all zrepl daemons in a setup must be updated and restarted before replication can resume. 20221220: AFFECTS: users of net-mgmt/unbound_exporter AUTHOR: thomas@beingboiled.info The config defaults for the log file and certificates have been changed. See /usr/local/etc/rc.d/unbound_exporter for possible options and adjust your rc.conf accordingly. 20221215: AFFECTS: users of security/clamav AUTHOR: yasu@FreeBSD.org Many users report that after updating ClamAV to 1.0.0 clamd and freshclam fails to start with integrity check error of databases. According to the result of investigation it happens with following conditions. 1. ClamAV is built on non-cleanroom environment (that is, neither FreeBSD official ClamAV package is used nor the package is built by user with poudriere). 2. math/tomsfastmath is installed in the system that ClamAV is built. So if the errror happens on you system, uninstall TomsFastMath first and then rebuild and reinstall ClamAV. The problem should disappear. 20221128: AFFECTS: devel/py-proxmoxer AUTHOR: einar@isnic.is AuthenticationError Moved proxmoxer.backends.https.AuthenticationError was moved to proxmoxer.AuthenticationError (the class itself is the same). Any imports or references to proxmoxer.backends.https.AuthenticationError should be changed to proxmoxer.AuthenticationError. ProxmoxResourceBase Removed While this should be a fully internal change, the ProxmoxResourceBase class was removed. Use ProxmoxResource instead. Removed ProxmoxHTTPTicketAuth The auth_token and csrf_token arguments are no longer supported. If an existing (still valid) token needs to be used, you can pass the token as password and proxmoxer will attempt to renew the ticket and retrieve a new token and CSRF token. 20221126: AFFECTS: textproc/kibana8 AUTHOR: otis@FreeBSD.org kibana8 now installs kibana-specific utilities into LOCALBASE/bin as symbolic links. Please check whether it will overwrite your local files with names same as these utilities and if so, please rename them or move out of the way in a different manner. 20221126: AFFECTS: textproc/elasticsearch8 AUTHOR: otis@FreeBSD.org elasticsearch8 now installs elasticsearch-specific utilities into LOCALBASE/bin as symbolic links (i.e. elasticsearch-cli and similar). Please check whether it will overwrite your local files with names same as these utilities and if so, please rename them or move out of the way in a different manner. 20221126: AFFECTS: users of lang/php80 AUTHOR: bofh@FreeBSD.org The default version of PHP has been switched from 8.0 to 8.1. If you use binary packages you should make a list of php packages before running 'pkg upgrade': # pkg info \*php80\* > ~/installed-php-ports-list After the upgrade, check with such list if all your php extensions are still installed, and reinstall them if needed. If you use mod_php80 you need to deinstall it and install mod_php81. 20221123: AFFECTS: x11-wm/jwm AUTHOR: fernape@FreeBSD.org jwm 2.4 introduces changes in the configuration. To convert an existing v2.3 configuration file using xsltproc, run: cp ~/.jwmrc ~/.jwmrc.old xsltproc jwm-2.4.xslt ~/.jwmrc.old > ~/.jwmrc If you have multiple configuration files, it may be necessary to apply the XSLT to some or all of them depending on what configuration options are stored in the file. 20221017: AFFECTS: archivers/star AUTHOR: fernape@FreeBSD.org With the update of devel/schilybase to 2022-10-16 a new port archivers/tartest has been splitted off from archivers/star. 20221016: AFFECTS: textproc/apache-solr AUTHOR: mfechner@FreeBSD.org Apache solr version 9 is released and made available as extra port textproc/apache-solr9. Version 9 cannot start directly with data from version 8. Additional steps for data migration is required. If you like to use the new version, deinstall the old version and install the new version: # pkg delete apache-solr # pkg install apache-solr9 After this you need to migrate data and migration, for this check the solr documentation. 20221015: AFFECTS: users of gstreamer1-* when upgrading via port builds on the host AUTHOR: riggs@FreeBSD.org The update of the gstreamer1-* ports to 1.20.3 requires a clean install of gstreamer1-* ports. In particular, when trying to update ports in-place using portupgrade or portmaster, the builds are likely to fail due to dependency mismatches. If this is your preferred update path, you need to deinstall (pkg delete -f) gstreamer1 and the plugins before reinstalling them from the ports tree. Note that pkg upgrade will do the right thing: If you use official FreeBSD packages or build your own set of packages using poudriere, nothing special is needed. 20221012: AFFECTS: devel/websvn AUTHOR: michael.osipov@siemens.com WebSVN 2.8.0 includes full PHP 8.x support which requires a change from PEAR to Composer 2. You must manually install dependencies through it, the ports system will not handle it anymore for you since */horde* (PR 266552) has been marked as incompatible with PHP 8.x for the time being. See pkg-message for detailed instructions. 20221011: AFFECTS: users of security/acme.sh AUTHOR: dvl@FreeBSD.org This update may break your install if you were using a symlink to %%EXAMPLESDIR%%/acme.sh.conf - that file is no longer installed. Instead, a log rotation configuration is now installed to etc/cron.d/acme.sh.sample you should modify etc/cron.d/acme.sh to needs. The port now installs a log rotation file to etc/newsyslog.d/acme.sh.sample and you you should update etc/newsyslog.d/acme.sh to suit your needs. This file has long been part of the port, but was never installed. Neither the log rotation nor the crontab are active until you remove the comments. 20221002: AFFECTS: users of shells/bash AUTHOR: ehaupt@FreeBSD.org Bash has been updated to version 5.2. In previous versions, the default port option-set used to link against libreadline from ports. However, the current version of devel/readline is too old for bash 5.2. For now, the default option has been switched to use the bundled version of libreadline and the other option is marked broken. Once devel/readline is updated this can be reverted. If you're updating bash from source and you've previously explicitly set to use use PORTS_READLINE, you'll have to disable the PORTS_READLINE option before updating: # cd /usr/ports/shells/bash # make config or flush it entirely: # cd /usr/ports/shells/bash # make rmconfig 20220929: AFFECTS: users of graphics/bmeps AUTHOR: takefu@airport.fm The executable name has been changed from this edition from bmpp to bitmap2pp 20220925: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org The port has been updated to the latest stable version 3.5 of LibreSSL. The shared library versions of the libraries have been bumped. After upgrading, manually update all packages that depend on any of the libraries provided by LibreSSL (libssl, libcrypto and libtls) since the versions of these libraries have changed. Normally, you can obtain the list of dependent software by running the following command: # pkg info -r libressl Then you should rebuild all ports depending on libressl to avoid dangling shared library dependencies. 20220919: AFFECTS: users of audio/strawberry AUTHOR: mandree@FreeBSD.org strawberry now uses FLAVORs based on the qt version, offering -qt5 and -qt6, with -qt5 the default. You may need to explicitly install either of the new flavors. 20220919: AFFECTS: users of sysutils/schilyutils AUTHOR: fuz@fuz.su Schilyutils has been split up into two ports. If you want the bosh shell, the new port is shells/bosh, which can be installed with: # pkg install bosh or # portmaster -o shells/bosh 20220918: AFFECTS: users of mail/roundcube AUTHOR: brnrd@FreeBSD.org Roundcube has been upgraded to 1.6.0 and introduces breaking changes to configuration options of remote services (imap, smtp, ldap, sieve). Check https://roundcube.net/news/2022/07/28/roundcube-1.6.0-released for details. Version 1.6 no longer includes the Classic and Larry skins, which are now available as separate mail/roundcube-classic and mail/roundcube-larry ports. 20220910: AFFECTS: users of devel/cmake AUTHOR: diizzy@FreeBSD.org CMake has been converted to a meta-port and new CMake packages created causes conflicts with old binary packages prior to this change. If CMake was installed using binary packages via pkg it needs to be uninstalled using pkg delete before installing CMake and related packages after this change. pkg delete cmake pkg install cmake-core If you're using portmaster you also need to delete the old CMake package before upgrading. 20220909: AFFECTS: users of emulators/qemu AUTHOR: bofh@FreeBSD.org emulators/qemu has been updated to 7.1.0. Previous 7.0.X branch has been repocopied to emulators/qemu70. If someone wants to stick with 7.0.X branch please use one of the following command: # pkg install qemu70/qemu70-nox11(based on flavor used) or # portmaster -o emulators/qemu70 emulators/qemu or # portupgrade -o emulators/qemu70 emulators/qemu 20220903: AFFECTS: users of editors/vim AUTHOR: adamw@FreeBSD.org The Vim port no longer installs a system-wide vimrc. It drastically affected config loading order, and led to various settings being clobbered, duplicated, or ignored. Vim's provided defaults.vim (/usr/local/share/vim/vim90/defaults.vim) continues to be read just as before, but its settings are no longer clobbered. Take a look in there for any settings you may want to change, and do ':h initialization' to see where Vim looks for config files. 20220903: AFFECTS: users of archivers/py-borgbackup AUTHOR: mandree@FreeBSD.org Borgbackup has been upgraded to version 1.2. For users who you wish to continue using version 1.1, use either of these commands for upgrading: With binary packages through pkg: pkg set -o archivers/py-borgbackup:archivers/py-borgbackup11 pkg upgrade With portmaster or portupgrade (replace the command accordingly): portmaster -o archivers/py-borgbackup11 archivers/py-borgbackup 20220901: AFFECTS: users of mail/rainloop-community AUTHOR: yasu@FreeBSD.org Since 1.17.0 upstream distributes only one "legacy" edition under MIT license and mail/rainloop-community is removed as a result. So please uninstall mail/rainloop-community (rainloop-community-phpXY) and install mail/rainloop (rainloop-phpXY) instead. 20220831: AFFECTS: users of x11/xscreensaver on 13.1-RELEASE AUTHOR: zirias@FreeBSD.org With the update to 6.04, xscreensaver now uses security/unix-selfauth-helper for PAM authentication. This relies on pam_exec.so, which had a bug causing a segfault on authentication attempts prior to 13.1-RELEASE-p1. For details, please see https://www.freebsd.org/security/advisories/FreeBSD-EN-22:19.pam_exec.asc Make sure your system is fully upgraded, otherwise you might be unable to unlock your screen. 20220825: AFFECTS: users of net/xrdp or net/xrdp-devel AUTHOR: meta@FreeBSD.org After xorg upgrade to 21.1.4, xorgxrdp session doesn't start as before This is because bin/Xorg has been replaced with X server binary wrapper. You must manually edit the Xorg section in etc/xrdp/sesman.ini to get it working again. The following is a short example of where, how to modify sesman.ini. Make sure to replace LOCALBASE with your actual path. [Xorg] ; Specify the path of non-suid Xorg executable. It might differ depending ; on your distribution and version. Find out the appropreate path for your ; environment. The typical path is known as follows: ; ; Fedora 26 or later : param=/usr/libexec/Xorg ; Debian 9 or later : param=/usr/lib/xorg/Xorg ; Ubuntu 16.04 or later : param=/usr/lib/xorg/Xorg ; Arch Linux : param=/usr/lib/Xorg ; CentOS 7 : param=/usr/bin/Xorg or param=Xorg ; CentOS 8 : param=/usr/libexec/Xorg ; -param=Xorg +param=LOCALBASE/libexec/Xorg 20220815: AFFECTS: users of net/keycloak AUTHOR: fernape@FreeBSD.org The flavors -mysql and -postgres were removed, the necessary configuration for those database backends was rolled into the base release by upstream. The configuration files changed completely, so they need to be rebuilt from scratch. 20220807: AFFECTS: users of news/inn AUTHOR: kbowling@FreeBSD.org The inn port has been updated to 2.7 release. Users upgrading from prior versions should read through the announcement for any manual upgrading steps that apply to your environment. https://lists.isc.org/pipermail/inn-announce/2022-July/000015.html 20220711: AFFECTS: users of security/stunnel AUTHOR: zi@FreeBSD.org The stunnel port has been updated to drop privileges to the stunnel user by default. As a result of this change, the pid file location has changed. If you have a running copy of stunnel, you should stop the process before performing the upgrade. Alternatively, you will need to # pkill stunnel;service stunnel start after the upgrade has been completed. 202207XYZ: AFFECTS: users of devel/maven-wrapper and devel/maven AUTHOR: michaelo@apache.org The environment variable M2_HOME has been replaced with more common MAVEN_HOME which can be used to pass a custom Maven home directory. 20220629: AFFECTS: updating x11-servers/xorg-server from a port AUTHOR: se@FreeBSD.org The xorg-server port now has a library dependency on x11/libxcvt, which cannot be installed when the previous version of xorg-server is present. To be able to update xorg-server from a port, the previous version needs to be manually deinstalled to allow libxcvt to be installed. 20220628: AFFECTS: users of Erlang and Elixir AUTHOR: dch@FreeBSD.org For more than a decade, the Elixir Mix tool and the Erlang rebar or erlang.mk build tools have been the de facto way of installing and managing packages for specific applications. All main-stream applications, from Riak, CouchDB, RabbitMQ, Phoenix, and Elixir, expect that packages are fetched and compiled into an OTP Release, with in-built version locking, external package management. There is no point in maintaining a large number of libraries, that are used neither for development, nor operations. Users are directed to https://rebar3.org/ https://erlang.mk/ or https://elixir-lang.org/getting-started/mix-otp/introduction-to-mix.html to fetch custom packages. https://www.freebsd.org/status/report-2021-07-2021-09/#_freebsd_erlang_ecosystem_ports_update 20220626: AFFECTS: users of python AUTHOR: thierry@FreeBSD.org The default version of python3 and python was switched to 3.9. For ports users wanting to keep version 3.8 as default, add DEFAULT_VERSIONS+= python=3.8 python3=3.8 to make.conf Following procedures may ease the upgrade: For users of pre-build packages: # sh # for i in $(pkg query -g %n 'py38-*'); do pkg set -yn ${i}:py39-${i#py38-}; done # pkg upgrade For portmaster users: # sh # portmaster -o lang/python39 python38 # REINSTALL="$(pkg info -o "*py38*" | awk '{printf "%s ", $2}')" # pkg delete -f "*py38*" # portmaster $REINSTALL # REBUILD=$(pkg query -g "%n:%dn" '*' | grep py3 | grep -v py39 | cut -d : -f 1 | sort -u) # portmaster $REBUILD # REBUILD2=$(pkg list | grep python-38 | xargs pkg which | awk '{print $6}' | sort -u) # portmaster $REBUILD2 Final steps (for pre-built packages & portmaster): If no longer required, Python 3.8 can be removed via "pkg remove python38" and the directory /usr/local/lib/python3.8 can then be deleted afterwards, if not empty. 20220625: AFFECTS: users of sysutils/fusefs-bindfs AUTHOR: doralitze@chaotikum.org Bindfs defaults to use direct I/O since version 1.16. While this results in major performance improvements as well as several bug fixes, this also breaks direct legacy calls to mmap. If your application still uses them consider these two options: 1. Mount using `--no-direct-io` 2. Upgrade your application in order to query mapping guards 20220623: AFFECTS: users of science/gramps AUTHOR: fernape@FreeBSD.org databases/py-bsddb3 is deprecated and will be removed in the future. With that gramps will lose the ability to load family trees using Berkeley DB. It is suggested to migrate all family trees using Berkeley DB by exporting them to gramps xml and import that gramps xml into a family tree using sqlite as database. 20220620: AFFECTS: users of www/selenium AUTHOR: fernape@FreeBSD.org The port has changed startup args so if you are using selenium_args= in rc.conf you need to add the parameter "standalone" manually. 20220616: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org /!\ WARNING /!\ The NetBox 3.2 release contains major changes, so at least items 1.), 2.) and 3.) must be checked before proceeding with the upgrade! /!\ WARNING /!\ 1. This release includes a database migration that will remove the "asn", "contact_name", "contact_phone", and "contact_email" fields from the site model. (These fields have been superseded by the ASN and contact models introduced in NetBox v3.1.) To protect against the accidental destruction of data, the upgrade process will fail if any sites still have data in any of these fields. To bypass this safeguard, set the NETBOX_DELETE_LEGACY_DATA environment variable when running the upgrade script, which will permit the destruction of legacy data. A set of migration scripts is available to assist with the migration of legacy site data: https://github.com/netbox-community/migration-scripts 2. NetBox v3.2 requires Python 3.8 or later. 3. If the NetBox Plugin "net-mgmt/py-netbox-plugin-extension" is used, please disable it before the migrations are applied. This can be done by removing the entry "netbox_plugin_extensions" from the "PLUGINS" section in the NetBox configuration. Once the upgrade is done, this port/package can be safely removed as it's no longer required. 4. Please also check the pkg-message and the changelogs for further info. 20220608: AFFECTS: devel/autoconf-wrapper, devel/autoconf213 AUTHOR: tijl@FreeBSD.org These ports have been renamed to devel/autoconf-switch and devel/autoconf2.13 respectively. If your favourite port updating tool cannot handle that then just remove the packages with "pkg delete" and then install the new port. 20220607: AFFECTS: security/openssh-portable AUTHOR: bdrewery@FreeBSD.org OpenSSH has been updated to 9.0p1 with incompatible changes. See https://www.openssh.com/txt/release-9.0 for details. 20220602: AFFECTS: sysutils/graylog AUTHOR: dch@FreeBSD.org Graylog 4.3.0+ fails to start if graylog's internal collector for system statistics is enabled. This will eventually be addressed upstream. Add disable_native_system_stats_collector=true to your graylog.conf. 20220513: AFFECTS: devel/nexus2-oss AUTHOR: michael.osipov@siemens.com Nexus 2.15.x introduces incompatible configuration changes. You must review changes in ETCDIR/wrapper.conf and ETCDIR/jetty*.xml with updated samples as well as NEXUS_WORKDIR/conf/logback-nexus.xml with its origin from DATADIR/nexus/WEB-INF/lib/nexus-core-VERSION.jar!/META-INF/log/logback-nexus.xml, grant write access to files in ETCDIR since Nexus itself might update files in place otherwise your instance will not properly work after the update. 20220510 AFFECTS: sysutils/zrepl AUTHOR: monwarez@gmail.com The zrepl update to 0.5.0.8 includes the following breaking changes: - The Prometheus metric zrepl_version_daemon was converted to zrepl_start_time The metric still reports the zrepl version in a label. But the metric *value* is now the Unix timestamp at the time the daemon was started. The Grafana dashboard in zrepl examples directory has been updated. 20220502: AFFECTS: mail/mutt AUTHOR: dereks@lifeofadishwasher.com Default header cache option has been changed to the new option LMDB using databases/lmdb. The BDB option still exists but now uses databases/db18 due to the EOL of databases/db5. 20220501: AFFECTS: users of drm-current-kmod and drm-devel-kmod AUTHOR: manu@FreeBSD.org Both ports where removed. If you were using either one of them directly (i.e. without using graphics/drm-kmod metaport) use graphics/drm-510-kmod. If you have some problems with this one try drm-54-kmod and report a bug on https://github.com/freebsd/drm-kmod. 20220428: AFFECTS: users of databases/redis AUTHOR: yasu@FreeBSD.org The databases/redis port has been updated to 7.0. Users wanting to stay on 6.2 can replace databases/redis with databases/redis62 with one of the following commands. If you use pkg with binary packages: # pkg set -o databases/redis:databases/redis62 # pkg upgrade If you use portmaster: # portmaster -o databases/redis62 databases/redis If you use portupgrade: # portupgrade -o databases/redis62 databases/redis 20220426: AFFECTS: users of deskutils/grantleetheme AUTHOR: kde@FreeBSD.org The pkg update of deskutils/grantleetheme to 22.04 can fail due to a filesystem location having changed from being a file to being a directory. This leads to pkg's temporary file creation throwing an error. To update to KDE Gear 22.04 please run # pkg delete -f grantleetheme prior to the update. 20220424: AFFECTS: users of emulators/qemu AUTHOR: bofh@FreeBSD.org emulators/qemu has been updated to 7.0.0. Previous 6.2.X branch has been repocopied to emulators/qemu6. If someone wants to stick with 6.2.X branch please use one of the following command: # pkg install qemu6/qemu6-nox11(based on flavor used) or # portmaster -o emulators/qemu6 emulators/qemu or # portupgrade -o emulators/qemu6 emulators/qemu 20220421: AFFECTS: users of lang/ruby27 AUTHOR: yasu@FreeBSD.org The default ruby version has been updated from 2.7 to 3.0. If you compile your own ports you may keep 2.7 as the default version by adding the following lines to your /etc/make.conf file: # # Keep ruby 2.7 as default version # DEFAULT_VERSIONS+=ruby=2.7 If you wish to update to the new default version, you need to first stop any software that uses ruby. Then, you will need to follow these steps, depending upon how you manage your system. If you use pkg, simply upgrade: # pkg upgrade If you do not use pkg, please use an adapted version of the below: If you compile your own ports you may keep 2.4 as the default version by adding the following lines to your /etc/make.conf file: # # Keep ruby 2.4 as default version # DEFAULT_VERSIONS+=ruby=2.4 If you wish to update to the new default version, you need to first stop any software that uses ruby. Then, you will need to follow these steps, depending upon how you manage your system. If you use pkgng, simply upgrade: # pkg upgrade If you use portmaster, install new ruby, then rebuild all ports that depend on ruby: # portmaster -o lang/ruby25 lang/ruby24 # portmaster -R -r ruby-2.5 If you use portupgrade, install new ruby, then rebuild all ports that depend on ruby: # pkg delete -f ruby portupgrade # make -C /usr/ports/ports-mgmt/portupgrade install clean # pkg set -o lang/ruby24:lang/ruby25 # portupgrade -x ruby-2.5.\* -fr lang/ruby25 20220413: AFFECTS: users of net-im/py-matrix-synapse AUTHOR: ports@skyforge.at Synapse will now refuse to start up if open registration is enabled, in order to help mitigate abuse across the federation. If you would like to provide registration to anyone, consider adding email, recaptcha or token-based verification in order to prevent automated registration from bad actors. This check can be disabled by setting the enable_registration_without_verification option in your homeserver configuration file to true. More details are available in the upgrade notes[0]. Synapse will additionally now refuse to start when using PostgreSQL with a non-C values for COLLATE and CTYPE, unless the config flag allow_unsafe_locale, found in the database section of the configuration file, is set to true. See the upgrade notes[1] for details. [0] https://matrix-org.github.io/synapse/v1.56/upgrade.html#open-registration-without-verification-is-now-disabled-by-default [1] https://matrix-org.github.io/synapse/v1.56/upgrade#change-in-behaviour-for-postgresql-databases-with-unsafe-locale 20220410: AFFECTS: users of sysutils/screen AUTHOR: cy@FreeBSD.org As of sysutils/screen-4.9.0_5, the MULTUSER option is default, reverting to the traditional setuid-root behavior. People who wish to secure their screen install must terminate all screen sessions, then install screen without the MULTIUSER option. The option was reversed because it caused too much astonishment among users of screen. 20220401: AFFECTS: security/sshguard AUTHOR: kevinz5000@gmail.com Blacklisting is now disabled by default to avoid overriding the setting in sshguard.conf. To enable blacklisting, uncomment the BLACKLIST_FILE line in sshguard.conf. 20220329: AFFECTS: users of sysutils/screen AUTHOR: cy@FreeBSD.org As of sysutils/screen-4.9.0_3, the multiuser feature is not supported by default. The multiuser feature requires setuid root to function. This creates a security risk. Some Linux distributions have had non-setuuid root screen for a dozen or more years. FreeBSD is following suit. A new MULTIUSER option has been added to enable users to install setuid root screen. The MULTIUSER option default is OFF. Users who wish to use the multiuser feature may, - Build screen using the MULTIUSER option, or - Poudriere users can use poudriere-options to enable the MULTIUSER option, or - Users can chmod the setuid bit for ${LOCALBASE}/bin/screen-4.9.0, making screen setuid root to enable the multiuser feature. 20220326: AFFECTS: users of misc/freebsd-doc-* AUTHOR: blackend@FreeBSD.org A change to the doc toolchain prevents the build of individual localized HTML versions of the documentation without building the en_US version. HTML option is currently disabled until a good solution is found. PDF version, the default option, is now the only available option. Please re-run "make config" to pick up this new default. 20220313: AFFECTS: users of net/unison AUTHOR: madpilot@FreeBSD.org unison has been updated to version 2.52. The new version introduces a new wire protocol and on disk archive format. This new version is compatible with 2.51 clients for communication, so it's now possible to upgrade one side and then the other. The archive files are automatically converted to the new version, but once they are converted the y are incompatible with the previous version. In case you need version 2.51, the previous version of the port is preserved in net/unison251. 20220311: AFFECTS: users of multimedia/get_iplayer AUTHOR: jamie@catflap.org get_iplayer has a number of changes to quality settings that may break existing configurations. Please see the release notes for further information: https://github.com/get-iplayer/get_iplayer/wiki/release320to329#release329 20220311: AFFECTS: users of emulators/virtualbox-ose AUTHOR: grembo@FreeBSD.org In order to comply to hier(7), VirtualBox's configuration of non-default IP ranges to be used in host-only mode moved from /etc/vbox/networks.conf to ${LOCALBASE}/etc/vbox/networks.conf. 20220311: AFFECTS: users of net/nats-server AUTHOR: olgeni@FreeBSD.org A dedicated 'nats' user was added, replacing 'nobody' in the startup script. You should check your configuration and assign updated ownership to your data files. 20220227: AFFECTS: users of graphics/bmeps AUTHOR: takefu@airport.fm The binary and man page have been renamed from bmpp{.1.gz} to bitmap2pp{.1.gz} 20220225: AFFECTS: users of x11-toolkits/py-wxPython40 AUTHOR: lbartoletti@FreeBSD.org x11-toolkits/py-wxPython40 has been removed to be replaced by the 4.1 version. However the new wxPython ports is now named x11-toolkits/py-wxPython4. Depending on the tools you use, you may have to remove the port before ports upgrade. 20220224: AFFECTS: users of net-im/openfire AUTHOR: nikita@druba.su The port version have been updated from 4.6.x to 4.7.x. It is recommended to do database and configs backup before updating. 20220219: AFFECTS: users of sysutils/intel-pcm-devel AUTHOR: egypcio@FreeBSD.org sysutils/intel-pcm-devel became quite obsolete once sysutils/intel-pcm is now pretty much following a constant and stable update cycle, so users of the -devel version are encouraged to switch to it. If you still have sysutils/intel-pcm-devel installed, please delete it from your system and install sysutils/intel-pcm instead: # pkg delete sysutils/intel-pcm-devel # pkg install sysutils/intel-pcm 20220219: AFFECTS: users of math/qhull* AUTHOR: stephen@FreeBSD.org Because of entries in MOVED, portupgrade can get confused updating qhull. It is recommended that you delete qhull and ports depending upon it, and then reinstalling all the dependent ports. 20220218: AFFECTS: users of TeX* AUTHOR: bofh@FreeBSD.org TeX system has been updated to 2021 from 2015. Normal pkg upgrade or portmaster -a should handle all the upgrade properly. In case not please create a ticket or send a mail to tex@FreeBSD.org print/tex-aleph has been removed as per upstream. This package should be removed manually. Additionally users have reported to delete texlive-texmf prior to starting update, or pkg-static will indicate there is a conflict during the upgrade of texlive-base : # pkg remove tex-aleph texlive-texmf 20220218: AFFECTS: users of net-mgmt/librenms AUTHOR: dvl@FreeBSD.org The storage directory has moved from WWWDIR to /var/db/librenms/storage to comply with man 7 hier. When upgrading, you may need to manually create this symlink. 20220212: AFFECTS: users of lang/php8[01][-extensions]? AUTHOR: bofh@FreeBSD.org Non-Default OPTION MYSQL80 has been removed in lieu of making php8[01]-openssl as part of DEFAULT php8[01] installation. Although for php74 it is not the case. Ports that depends on security/php8[01]-openssl will no longer be installed as these have been removed. There is no side effect of this for ports which have USE_PHP=openssl. In case for php74 as the default php74-openssl will be installed otherwise it will be used from php installation. If you are using pkg, you have to remove php8[01]-openssl manually after the upgrade : # pkg info \*php8\* > ~/installed-php-ports-list # pkg upgrade -y # pkg delete -f php8[01]-openssl # service -R While rebuilding from ports users old php.conf is not overwritten. So have to manually remove the ports. For portmaster users: # sh # REINSTALL="$(pkg info -o "*php80*" | grep -v openssl | awk '{printf "%s ", $2}')" # pkg delete -f "*php80*" # portmaster $REINSTALL # portmaster -a 20220207: AFFECTS: users of security/amavisd-new AUTHOR: flo@FreeBSD.org Amavis does now depend on archivers/7-zip (7zz) you might need to update your amavisd.conf and replace all ocurances of p7zip (7zr) accordingly. 20220129: AFFECTS: users of editors/neovim AUTHOR: adamw@FreeBSD.org Neovim now uses luajit-openresty as the Lua provider. Many neovim plugins compile some of their code (Packer does this, as do many LSP plugins). Neovim will produce errors and fail to load the plugins. Deleting and reinstalling any plugins that produce errors should fix the startup. If you use Packer, you also want to delete the startup cache: # rm -rf ~/.config/nvim/plugin/packer_compiled.lua 20220128: AFFECTS: users of x11-fonts/source-sans-ttf AUTHOR: fernape@FreeBSD.org The font name has changed its prefix from SourceSansPro* to SourceSans*. Users of this font might need to change their configurations to pick up the new names. 20220128: AFFECTS: users of net-im/dendrite AUTHOR: ashish@FreeBSD.org The configuration needs to be updated to version 2 following upgrade to Dendrite v0.6. Please refer to /usr/local/etc/dendrite/dendrite.yaml.sample for a sample configuration. 20220127: AFFECTS: users of PyQt AUTHOR: kde@FreeBSD.org Most of the PyQt ports have been merged into single port devel/py-qt5-pyqt. `pkg upgrade` will handle update automatically . 20220126: AFFECTS: users of mail/bogofilter, mail/bogofilter-lmdb AUTHOR: mandree@FreeBSD.org The default version of mail/bogofilter now uses LMDB instead of Berkeley DB. It is not compatible and cannot read databases. Your options are: 1. use bogoutil on each wordlist for each of your users first, ONLY THEN reinstall bogofilter, THEN reload the databases with bogoutil, OR 2. install the matching bogofilter version and If you had been using bogofilter-lmdb so far, install bogofilter. If you had been using bogofilter so far, install bogofilter-bdb. 20220125: AFFECTS: users of lang/php74 AUTHOR: tz@FreeBSD.org The default version of PHP has been switched from 7.4 to 8.0. If you use binary packages you should make a list of php packages before running 'pkg upgrade': # pkg info \*php7\* > ~/installed-php-ports-list After the upgrade, check with such list if all your php extensions are still installed, and reinstall them if needed. If you use mod_php74 you need to deinstall it and install mod_php80. 20220120: AFFECTS: users of x11-wm/dwm AUTHOR: 0mp@FreeBSD.org dwm has been updated to 6.3. The option RUGAPS is no longer available because it depends on a patch only available for version 6.2. RUGAPS can be reintroduced if desired once it is ported to 6.3 by the interested party. 20220118: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org 1. Please make sure that the PostgreSQL server for the NetBox instance is running version 10 or higher. This is because PostgreSQL 9.6 is End-of-Life since November 2021 and NetBox 3.1 makes use of the "macaddr8" field which was introduced with PostgreSQL 10. 2. Please also check the pkg-message and the changelogs for further info. 20220110: AFFECTS: users of security/bastillion AUTHOR: netchild@FreeBSD.org If you already performed the actions of the next entry, the following action in this entry needs to be performed regardless. If you did not already perform the actions of the next entry, only the action of this entry needs to be performed. The datastore of bastillion needs to be upgraded (if you do not see users / can not login, you forgot to upgrade it): java -jar %%PREFIX%%/jetty_bastillion/upgrade/bastillion-upgrade-4.00.01.jar %%PREFIX%%/jetty_bastillion/bastillion/WEB-INF/classes/BastillionConfig.properties 20220104: AFFECTS: users of security/bastillion AUTHOR: netchild@FreeBSD.org The datastore of bastillion needs to be upgraded (if you do not see users / can not login, you forgot to upgrade it): java -jar %%PREFIX%%/jetty_bastillion/upgrade/bastillion-upgrade-4.00.00.jar %%PREFIX%%/jetty_bastillion/bastillion/WEB-INF/classes/BastillionConfig.properties 20220102: AFFECTS: users of sysutils/py-azure-cli AUTHOR: dbaio@FreeBSD.org When upgrading to Azure CLI v2.31.0, you will need to re-authenticate on Azure services. $ az login --use-device-code Starting in version 2.30.0, Azure CLI uses MSAL as the underlying authentication library. MSAL uses AAD v2.0 authentication flow to provide more functionality and increases security for token cache. More info: https://docs.microsoft.com/en-us/cli/azure/msal-based-azure-cli 20211220: AFFECTS: users of devel/notcurses AUTHOR: nickblack@linux.com Notcurses 3 introduces a new SONAME and significant API/ABI changes. Dependent applications must be recompiled at a minimum. A complete guide to updating for the new API is available under "Porting API2 Applications to API3" at https://github.com/dankamongmen/notcurses/releases/tag/v3.0.0 20211220: AFFECTS: users of net-im/openfire AUTHOR: nikita@druba.su The port options have been renamed to be more readable. When not using the default options, they have to be regenerated. # cd /usr/ports/net-im/openfire # make config 20211213: AFFECTS: users of emulators/qemu-utils AUTHOR: bofh@FreeBSD.org New port emulators/qemu@tools has been introduced which is similar to emulators/qemu-utils. qemu-utils has also been DEPRECATED in favor for this as it's MASTER port has also been marked DEPRECATED and set to expire on 2022-01-09. For updating to qemu-tools please use one of the following command: # pkg install qemu-tools or # portmaster -o emulators/qemu-utils emulators/qemu@tools 20211116: AFFECTS: users of emulators/qemu50 AUTHOR: bofh@FreeBSD.org emulators/qemu50 has been moved to emulators/qemu5 and updated to 5.2.0 which is the last version from 5.X.X branch. This is done in preparation of updating emulators/qemu into latest 6.X branch. If someone wants to stick with 5.X.X branch please use one of the following command: # pkg install qemu5 or # portmaster -o emulators/qemu50 emulators/qemu5 This version also introduces a stripped nox11 version which can be installed with: # pkg install qemu5-nox11 or # portmaster emulators/qemu5@nox11 20211115: AFFECTS: AFFECTS: users of *-emacs2x-* packages AUTHOR: jrm@FreeBSD.org To avoid problems when editors/emacs or editors/emacs-devel are updated, the emacs major version has been removed from these package names. For example, the old and new package names of devel/magit are ----------------------------------------------------------- | Old Package Name | New Package Name | |-------------------------- |-----------------------------| | magit-emacs27 | magit | | magit-emacs27_nox | magit-emacs_nox | | magit-emacs27_canna | magit-emacs_canna | | | | | magit-emacs29_nox | magit-emacs_devel_nox | | magit-emacs29 | magit-emacs_devel | ----------------------------------------------------------- Simply running `pkg upgrade` will not upgrade, e.g., foo-emacs27_nox to foo-emacs_nox. Binary package users: To update these packages, run these commands under /bin/sh with superuser privileges before upgrading. # default flavor of editors/emacs installed for i in $(pkg query -g %n '*-emacs27'); do if [ "$i" != "notmuch-emacs27" ]; then nn=$(echo "$i" | sed -e 's/-emacs27//') else nn=$(echo "$i" | sed -e 's/-emacs27/-emacs/') fi pkg set -yn "$i":"$nn" done # canna or nox flavor of editors/emacs installed for i in $(pkg query -g %n '*-emacs27*'); do nn=$(echo "$i" | sed -e 's/emacs27/emacs/') pkg set -yn "$i":"$nn" done # editors/emacs-devel installed for i in $(pkg query -g %n '*-emacs29*'); do nn=$(echo "$i" | sed -e 's/emacs29/emacs_devel/') pkg set -yn "$i":"$nn" done portmaster users: portmaster -r emacs 20211110: AFFECTS: users of www/node*, www/npm*, www/yarn* AUTHOR: mfechner@FreeBSD.org The port framework was updated to use a default version for nodejs. The default version is pointing to the latest LTS version which is currently version 16. You can overwrite this by defining in /etc/make.conf, e.g. version 17: DEFAULT_VERSIONS=nodejs=17 Or if you would like to stick always to the current version use: DEFAULT_VERSIONS=nodejs=current If you would like to use yarn or npm together with nodejs version 17, just install the package that is pulling the wanted dependency to nodejs: # pkg install yarn-node17 # pkg install npm-node17 20211109: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org The port has been updated to the latest stable version 3.4 of LibreSSL. The shared library versions of the libraries have been bumped. After upgrading, manually update all packages that depend on any of the libraries provided by LibreSSL (libssl, libcrypto and libtls) since the versions of these libraries have changed. Normally, you can obtain the list of dependent software by running the following command: # pkg info -r libressl Then you should rebuild all ports depending on libressl to avoid dangling shared library dependencies. 20211107: AFFECTS: users of sysutils/devcpu-data AUTHOR: jrm@FreeBSD.org The RC variable name microcode_cpus is now deprecated. Users should instead use the variable microcode_update_cpus. Two new ports were branched from sysutils/devcpu-data, sysustils/devcpu-data-amd and sysustils/devcpu-data-intel. The two new ports contain only the CPU microcode updates for each vendor and sysutils/devcpu-data now only contains an RC script. Both new ports are on-by-default, optional dependencies of sysutils/devcpu-data. 20211101: AFFECTS: users of textproc/redisearch AUTHOR: osa@FreeBSD.org The textproc/redisearch port has been updated to the recent stable release - v2.2. Users wanting to stay on v2.0 can replace textproc/redisearch with textproc/redisearch20 with one of the following commands: # pkg install textproc/redisearch20 or # portmaster -o textproc/redisearch20 textproc/redisearch or # portupgrade -o textproc/redisearch20 textproc/redisearch NOTE: The textproc/redisearch20 brings a new name for the module, i.e. redisearch20.so, so be careful. 20211024: AFFECTS: sysutils/beats7 AUTHOR: otis@FreeBSD.org The following breaking changes apply to beats 7.15.0 and newer: - All beats: Loading Kibana assets (dashboards, index templates) rely on Saved Object API. So to provide a reliable service, Beats can only import and export dashboards using at least Kibana 7.15. - Filebeat: - Remove all alias fields pointing to ECS fields from modules. This affects the Suricata and Traefik modules. - Fix Crowdstrike ingest pipeline that was creating flattened process fields. - Rename log.path to log.file.path in filestream to be consistent with log input and ECS. - Heartbeat: - Remove long deprecated watch_poll functionality. - Fix inconsistency in event.dataset values between heartbeat and fleet by always setting this value to the monitor type / fleet dataset. - Metricbeat: - Fix Elasticsearch jvm.gc.collectors.old being exposed as young Full changelog: https://www.elastic.co/guide/en/beats/libbeat/current/release-notes-7.15.0.html https://www.elastic.co/guide/en/beats/libbeat/current/release-notes-7.15.1.html 20211024: AFFECTS: users of databases/postgresql* and other software using PostgreSQL to run AUTHOR: kbowling@FreeBSD.org The default version of PostgreSQL has been switched from 12 to 13. The upgrade procedure can use up twice the space the databases currently needs. If you have a big amount of stored data take a closer look at the manpage of pg_upgrade for avoidance and/or speedup of the upgrade. The upgrade instructions consider a basic usage and do not match complex scenarios like replication, sharding, or similar. Upgrade instructions: First stop your PostgreSQL, create PostgreSQL-binaries and backup your data. If you have another Version of PostgreSQL installed, for example 12.8, your files are named according to this. # service postgresql stop # pkg create postgresql12-server postgresql12-contrib # mkdir /tmp/pg-upgrade # tar xf postgresql12-server-12.8.pkg -C /tmp/pg-upgrade # tar xf postgresql12-contrib-12.8.pkg -C /tmp/pg-upgrade # pkg delete -f databases/postgresql12-server databases/postgresql12-contrib databases/postgresql12-client Now update PostgreSQL: pkg user: # pkg install databases/postgresql13-server databases/postgresql13-contrib # pkg upgrade Portmaster users: # portmaster databases/postgresql13-server databases/postgresql13-contrib # portmaster -a Portupgrade users: # portinstall databases/postgresql13-server databases/postgresql13-contrib # portupgrade -a After installing the new PostgreSQL version you need to convert all your databases to new version: # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data13 -U postgres" # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data12/ -B /usr/local/bin/ -D /var/db/postgres/data13/ -U postgres " Now the migration is finished. You can start PostgreSQL again with: # service postgresql start ATTENTION: 1) The default user changed from "pgsql" to "postgres" in 11. The migration steps above now assume the "postgres" database user and FreeBSD user. 2) If you use non-default initdb options, you have to adjust the initdb-command accordingly 20211023: AFFECTS: users of www/node AUTHOR: bhughes@FreeBSD.org The www/node port has been updated to Node.js v17.0.0, the latest upstream release. A new port, www/node16, has been created for the upcoming v16.x LTS branch. Users wanting to stay on v16.x can replace www/node with www/node16 with one of the following commands: # pkg install www/node16 or # portmaster -o www/node16 www/node or # portupgrade -o www/node16 www/node 20211012: AFFECTS: users of devel/git AUTHOR: garga@FreeBSD.org devel/git port was split into multiple sub-ports that depend on devel/git and install additional files: - devel/git-cvs - CVS related scripts and man pages - devel/git-gui - GUI related scripts and man pages - devel/git-p4 - Perforce related scripts and man pages - devel/git-svn - Subversion related scripts and man pages Due to these changes, CVS, GUI, PERFORCE, and SUBVERSION options as well as gui and svn flavors were removed from the port. 20211010: AFFECTS: users of gtk2 flavored devel/geany* AUTHOR: madpilot@FreeBSD.org Upstream dropped support for gtk2. Due to this the ports are now unflavored, installing only with gtk3 support. If you are already using the default gtk3 flavor will get the new version with a simple "pkg upgrade". To upgrade when using the gtk2 flavors you need to use "pkg install" to install the new unflavored gtk3 packages, pkg will automatically uninstall the old gtk2 flavors. If using ports, you will need to uninstall all geany packages and its plugins and reinstall from an updated ports tree. The "geany-plugin-multiterm" plugin was only available as a gtk2 flavor when installing the gtk2 flavor of geany and has not been ported to gtk3, so has been removed from the tree, so the geany-plugin-multiterm-gtk2 package should be removed from the system. 20211007: AFFECTS: user of security/clamav AUTHOR: yasu@FreeBSD.org Upstream changed end-of-life policy and introduced long time support (LTS) feature release. * LTS feature release will be identified approximately every two years and supported for at least three years from the initial publication date of that LTS feature version. * Regular (non-LTS) feature releases will be supported for at least four months from the initial publication date of the next feature release or until the feature release after that is published. According to it new port security/clamav-lts is added for users who want to use LTS version of ClamAV. Users wanting to switch to LTS version can replace security/clamav with security/clamav-lts with one of following commands. If you use pkg with binary packages: # pkg set -o security/clamav:security/clamav-lts # pkg upgrade If you use portmaster: # portmaster -o security/clamav-lts security/clamav If you use portupgrade: # portupgrade -o security/clamav-lts security/clamav 20211006: AFFECTS: users of misc/freebsd-doc-* AUTHOR: blackend@FreeBSD.org The misc/freebsd-doc-* ports have been updated to the new doc toolchain, and use a somewhat different arrangement of directories and symlinks, which pkg 1.17 does not handle well. Users are encouraged to delete the misc/freebsd-doc-* ports, then reinstall the new ones without using the pkg upgrade facility. 20211006: AFFECTS: users of net/kafkacat AUTHOR: sergey@akhmatov.ru kafkacat has been renamed to kcat upstream. So switch to net/kcat instead. 20211004: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org /!\ WARNING /!\ The NetBox 3.0 release contains major changes, so at least items 1.), 2.) and 3.) must be checked before proceeding with the upgrade! /!\ WARNING /!\ 1. Please ensure that your local installation of net-mgmt/netbox is at the 2.11 release before attempting to upgrade to NetBox 3.0 or later. 2. Please also note that the previously deprecated secrets functionality has been removed with NetBox 3.0. This means, all of the secrets still remain in the database once upgraded, only the secrets functionality on the part of NetBox is no longer given. In order to continue to be able to access the stored secrets as usual (and then possibly migrate them to another solution, e.g. security/vault), please install the security/py-netbox-secretstore port once NetBox has been upgraded to 3.x and follow its installation instructions how to enable the plugin. 3. If plugins are used, they should be temporarily deactivated to avoid disruptions during the upgrade process. 4. Please also check the pkg-message and the changelogs for further info. 20211004: AFFECTS: users of www/py-pyjwt AUTHOR: rhurlin@FreeBSD.org To make it possible to easily import py-pyjwt v2.x the current port was moved to a versioned directory. If you use portmaster: portmaster -o www/py-pyjwt1 www/py-pyjwt If you use portupgrade: portupgrade -fo www/py-pyjwt1 www/py-pyjwt If you use pkg with binary packages: pkg set -o www/py-pyjwt:www/py-pyjwt1 20210912: AFFECTS: x11-wm/cage, x11-wm/hikari, x11-wm/labwc, x11-wm/sway, x11-wm/wayfire AUTHOR: jbeich@FreeBSD.org SUID option has been removed in favor of seatd-launch(1) which doesn't require special handling in every consumer and doesn't bypass group permissions. If you've already enabled seatd service or use consolekit2 then nothing changes. Otherwise, $ sway 00:00:00.001 [ERROR] [wlr] [libseat] [libseat/libseat.c:83] No backend was able to open a seat 00:00:00.001 [ERROR] [wlr] [backend/session/session.c:84] Unable to create seat: Function not implemented 00:00:00.001 [ERROR] [wlr] [backend/session/session.c:218] Failed to load session backend 00:00:00.001 [ERROR] [wlr] [backend/backend.c:353] Failed to start a DRM session 00:00:00.001 [ERROR] [sway/server.c:53] Unable to create backend can be fixed by $ ck-launch-session sway or $ seatd-launch sway or # sysrc seatd_enable=YES # service seatd start $ sway Replace "sway" with your compositor e.g., "cage", "hikari", "labwc", "wayfire". 20210907: AFFECTS: consumers of math/eigen[23] AUTHOR: adridg@FreeBSD.org math/eigen2 has been marked deprecated. There do not seem to be any consumers in FreeBSD ports. math/eigen3 has had its options re-vamped. The default options previously pulled in multiple useless library dependencies. The options also forced a specific BLAS implementation. The new options depend only on the default BLAS (whatever USES=blaslapack picks), but this can be turned off. The previous multiple useless libraries -- which are not useless when running the tests in Eigen -- are now hidden behind the default-off TEST option. Users of a carefully-tuned Eigen build should re-evaluate the options available. 20210902: AFFECTS: users of editors/vim AUTHOR: adamw@FreeBSD.org The vim ports have been completely reworked to take advantage of flavors. The biggest change is that the `vim' package is now console-only. If you want the GTk3 GUI, you'll need to install the `vim-gtk3' package instead. All the GUI toolkits have their own package now: vim-gtk3, vim-gtk2, -athena, -motif, and -x11. The vim-tiny package still exists. Also: only python3 bindings are included now. There are very few plugins written in Perl or Ruby, so there really wasn't a need to bundle those languages with Vim. They still exist as OPTIONS, so you can still enable them if you'd like. Also, support for py27 has been dropped. 20210901: AFFECTS: users of audio/ampache AUTHOR: crees@FreeBSD.org With the upgrade to Ampache 5.0.0, the root Ampache folder has changed to %%WWWDIR%%/ampache/public. Please update your web server aliases, for example if you use Apache, then in httpd.conf make sure the lines look like this: Alias /ampache /usr/local/www/ampache/public If you have customised your .htaccess files to allow for a different alias, you'll need to move them to the new location after upgrading: # sh -c 'cd /usr/local/www/ampache && for f in */.htaccess; do mv $f public/$f; done' More upgrade notes can be found on Github: https://github.com/ampache/ampache/releases/tag/5.0.0 20210823: AFFECTS: users of mail/mu AUTHOR: hrs@FreeBSD.org mail/mu now uses XDG Base Directory Specification for the default locations for various files. The mu database now lives under ~/.cache/mu rather than ~/.mu by default. After upgrading, move the contents under ~/.mu to ~/.cache/mu. 20210823: AFFECTS: users of mail/postfixadmin AUTHOR: ports.maintainer@evilphi.com The 3.2->3.3 upgrade requires generating a new setup password hash. The normal post-upgrade visit to setup.php will walk you through the steps. For more information, see the "Version 3.3" section of the change log: https://github.com/postfixadmin/postfixadmin/blob/postfixadmin-3.3.9/CHANGELOG.TXT 20210818: AFFECTS: users of databases/redis AUTHOR: osa@FreeBSD.org The databases/redis port has been updated to the recent stable release. Users wanting to stay on v6.0 can replace databases/redis with databases/redis6 with one of the following commands: # pkg install databases/redis6 or # portmaster -o databases/redis6 databases/redis or # portupgrade -o databases/redis6 databases/redis 20210805: AFFECTS: users of sysutils/beats7 AUTHOR: otis@FreeBSD.org Beats may not be sending data to some distributions of Elasticsearch In this release, Elastic is enabling a licensing change that was broadly communicated earlier in 2021. This change would imply that 7.13 instances of Beats would fail to connect to 7.10 or earlier open source distributions of Elasticsearch and Kibana. The most visible effect is that sysutils/beats7 users can expect difficulties to send data to Elastic instances hosted in AWS. For more information, see: https://www.elastic.co/guide/en/beats/libbeat/current/breaking-changes-7.13.html 20210801: AFFECTS: users of OpenLDAP AUTHOR: delphij@FreeBSD.org SASL is now always enabled for OpenLDAP. If you use portmaster: portmaster -o net/openldap24-client openldap-sasl-client If you use portupgrade: portupgrade -fo net/openldap24-client openldap-sasl-client If you use pkg with binary packages: pkg set -o net/openldap24-sasl-client:net/openldap24-client 20210730: AFFECTS: users of multimedia/mlt, multimedia/mlt-qt and multimedia/py-mlt AUTHOR: kde@FreeBSD.org multimedia/{py-,}mlt{-qt5,} has been moved to multimedia/{py-,}mlt6{-qt5,} to make room for importin the next major version of the mlt framework. 20210721: AFFECTS: users of x11/rxvt-unicode AUTHOR: thierry@FreeBSD.org Since 9.26, there is a regression in resource parsing, which no longer accepts a prefix of the form "URxvt*keysym" ("*." is equivalent to "*"). Changing "*." to "." should make your bindings work again. 20210704: AFFECTS: users of misc/qtchooser AUTHOR: kde@FreeBSD.org QtChooser allows you to select your version of Qt among those installed. However, this tool is no longer supported upstream and will not be available for Qt6. By default, our Qt installations are done in: ${LOCALBASE}/lib/qt${QT_VERSION} as recommended. We have added symbolic linking for the main binaries to ${LOCALBASE}/bin with the suffix -qt5. 20210628: AFFECTS: users of misc/openhab AUTHOR: netchild@FreeBSD.org You need to run sed -i -e 's:^karaf.framework.equinox=.*:karaf.framework.equinox=mvn\:org.eclipse.platform/org.eclipse.osgi/3.16.200: ; s:^karaf.framework.felix=.*:karaf.framework.felix=mvn\:org.apache.felix/org.apache.felix.framework/6.0.4:' /var/db/openhab/userdata/etc/config.properties to update the version numbers of some components in a config file. 20210621: AFFECTS: users of www/gitlab-ce AUTHOR: mfechner@FreeBSD.org The upgrade of Gitlab 14.0.0 is in preparation. You must upgrade first to 13.12. For more information see here: https://about.gitlab.com/blog/2021/06/04/gitlab-moving-to-14-breaking-changes/ To do the upgrade, make sure you follow the upgrade manuals: https://gitlab.fechner.net/mfechner/Gitlab-docu/-/tree/master/update I will merge the 14.0.0 upgrade later to quarterly branch to give you some time for the upgrade to 13.12. 20210620: AFFECTS: users of misc/openhab2 AUTHOR: netchild@FreeBSD.org The openhab v3 port has been committed. Upstream has removed the version from the name, as such the FreeBSD port follows in all places (start script name, directory names, ...). Users are encouraged to migrate from misc/openhab2 to misc/openhab. No automatic config migration is available Both versions can be installed in parallel, but an users has to take care to not run both at the same time on the same port. 20210617: AFFECTS: users of graphics/mesa-libs and x11/nvidia-driver AUTHOR: kbowling@FreeBSD.org Some libraries from mesa-libs are now provided by libglvnd while others were renamed. nvidia-driver already used libglvnd but bundled a copy which is now provided as a separate package. When building outside poudriere make sure to remove mesa-libs and nvidia-driver first in order to avoid conflict with libglvnd. For portmaster users: # pkg delete -f mesa-libs nvidia-driver # portmaster -a For portupgrade users: # pkg delete -f mesa-libs nvidia-driver # portupgrade -a 20210523: AFFECTS: users of www/tt-rss AUTHOR: dereks@lifeofadishwasher.com tt-rss config.php syntax has changed. You can find detailed changes here https://tt-rss.org/wiki/GlobalConfig or look at config.php.sample. Expect your config.php to not work with newer www/tt-rss releases. Due to changes in ttrssd before updating you should stop ttrssd or otherwise kill the php process running update_daemon2.php. 20210516: AFFECTS: users of security/bitwarden_rs AUTHOR: mr@FreeBSD.org bitwarden_rs has been renamed to vaultwarden upstream. So switch to security/vaultwarden instead. 20210515: AFFECTS: users of databases/postgresql??-server AUTHOR: girgen@FreeBSD.org The rc.conf parameter for the login class of the postgresql daemon has changed name from postgresql_class to postgresql_login_class. rc.subr(8) states that the parameter should be named ${name}_login_class. 20210512: AFFECTS: users of sysutils/ansible* AUTHOR: 0mp@FreeBSD.org Ansible has been updated to 3.3.0. Please follow the porting guide to update the rulesets: https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_3.html 20210508: AFFECTS: users of devel/pycharm-ce AUTHOR: bsam@FreeBSD.org Pycharm-ce has switched to the supported java version 11. 20210506: AFFECTS: users of mail/postfix AUTHOR: ohauer@FreeBSD.org Postfix 3.6 and higher requires minimum OpenSSL 1.1.1 FreeBSD 11 users using base OpenSSL can switch to mail/postfix35 If you wish to use postfix35 until FreeBSD 11 EoL you might run the following command: # pkg set -o mail/postfix:mail/postfix35 # pkg upgrade 20210505: AFFECTS: users of sysutils/terraform AUTHOR: 0mp@FreeBSD.org Terraform has been updated from 0.13 to 0.15, which introduces several incompatible changes. Please follow upgrading guide when updating the package. https://www.terraform.io/upgrade-guides/0-14.html https://www.terraform.io/upgrade-guides/0-15.html 20210426: AFFECTS: users of x11-fonts/iosevka AUTHOR: 0mp@FreeBSD.org The selection of options for Iosevka has become less granular as the port has switched from TTF-based distfiles to super-TTC-based distfiles. Now all the spacing variants are contained within one file for each Iosevka style. 20210425: AFFECTS: users of python AUTHOR: kai@FreeBSD.org The default version of python3 and python was switched to 3.8. For ports users wanting to keep version 3.7 as default, add DEFAULT_VERSIONS+= python=3.7 python3=3.7 to make.conf Following procedures may ease the upgrade: For users of pre-build packages: # sh # for i in $(pkg query -g %n 'py37-*'); do pkg set -yn ${i}:py38-${i#py37-}; done # pkg upgrade For portmaster users: # sh # portmaster -o lang/python38 python37 # REINSTALL="$(pkg info -o "*py37*" | awk '{printf "%s ", $2}')" # pkg delete -f "*py37*" # portmaster $REINSTALL # REBUILD=$(pkg query -g "%n:%dn" '*' | grep py3 | grep -v py38 | cut -d : -f 1 | sort -u) # portmaster $REBUILD # REBUILD2=$(pkg list | grep python-37 | xargs pkg which | awk '{print $6}' | sort -u) # portmaster $REBUILD2 20210420: AFFECTS: users of www/node AUTHOR: bhughes@FreeBSD.org The www/node port has been updated to Node.js v16.0.0, the latest upstream release. This is a major release, including many significant changes. Users are encouraged to read the release announcements before upgrading: https://nodejs.org/en/blog/release/v16.0.0/ 20210416: AFFECTS: Users of shells/bash, shells/bash-static with PORTS_READLINE=off AUTHOR: olce.freebsd@certner.fr Bundled readline now will use LOCALBASE/etc/inputrc as its ultimate default inputrc file (instead of /etc/inputrc). This puts these ports in line with what devel/readline has been doing recently (since 20210103). 20210414: AFFECTS: users of graphics/OpenEXR or graphics/ilmbase AUTHOR: mandree@FreeBSD.org graphics/ilmbase was removed in favor of math/Imath 3.0.1, and graphics/OpenEXR was updated to 3.0.1. Ports that depend on OpenEXR and/or ilmbase according to INDEX were patched, for ports where OpenEXR is an option that defaults to off, these typical items needs to be changed - file bug reports in that case, preferably with tested patches: - The IlmBase parts Imath and half are now repackaged as Imath - The IlmThread and Iex libraries are now part of OpenEXR - Some header files were rearranged accordingly, into ${LOCALBASE}/include/OpenEXR vs. ${LOCALBASE}/include/Imath - Some code needs a few #include statements added, often #include or #include - Some classes were removed, and the C++11 standard library features need to be used, f. i. std::numeric_limits. - Some code used Int64 or SInt64 should use uint64_t or int64_t. Detailed porting hints are available here: https://github.com/AcademySoftwareFoundation/Imath/blob/v3.0.1/docs/PortingGuide2-3.md 20210411: AFFECTS: users or devel/py-RPyC AUTHOR: skozlov@FreeBSD.org devel/py-RPyC has been updated to version 5.0.1, which have some incompatibilities with 4.x branch. Be sure to check them out before upgrading: https://rpyc.readthedocs.io/en/latest/changelog.html#backwards-incompatible 20210414: AFFECTS: users of x11-fonts/oldschool-pc-fonts AUTHOR: evgeniy@khramtsov.org x11-fonts/oldschool-pc-fonts has been upgraded to 2.2. This version changed names of many fonts. If you have configuration files with specific font names set, you need to update your configurations after upgrade. 20210406: AFFECTS: users of www/phpvirtualbox AUTHOR: dereks@lifeofadishwasher.com www/phpvirtualbox has been updated to version 6.1. This new version only supports version 6.1 of VirtualBox. Version 5.x of phpvirtualbox has been preserved as www/phpvirtualbox-legacy. If you require support for VirtualBox 5.x please install this version. Remember to copy your configuration file in the new legacy installation. 20210328: AFFECTS: users of www/caddy AUTHOR: adamw@FreeBSD.org The default locations for caddy runtime files have changed. - Caddy's runtime log is now /var/log/caddy/caddy.log (was /var/log/caddy.log) - Automatic SSL certs are now stored in /var/db/caddy/data/caddy (was /root/.local/share/caddy) - Configuration autosaves are now stored in /var/db/caddy/config/caddy (was /root/.config/caddy) You can change these defaults. See /usr/local/etc/rc.d/caddy for the list of settings. 20210322: AFFECTS: users of net/wireguard AUTHOR: decke@FreeBSD.org A wireguard kernel implementation supporting FreeBSD 12.1 and newer was added as net/wireguard-kmod recently. The new default for users of net/wireguard is the kernel module. If you experience problems with it you can switch back to wireguard-go by removing net/wireguard-kmod and making sure net/wireguard-go is installed. The userland tools wg-quick(8) and wg(8) try to use kernel support if the kernel module is available and otherwise fall back to wireguard-go automatically. Config files are fully compatible. 20210317: AFFECTS: users of security/strongswan AUTHOR: driesm@FreeBSD.org The stroke starter interface has been deprecated by upstream for some time now. The default interface for controlling the charon daemon has switched from stroke to vici. Users still using the legacy config files such as ipsec.conf and ipsec.secret (stroke, starter) can easily revert to the old behavior by: # sysrc strongswan_interface="stroke" It is recommended to use the vici interface which is configured by swanctl.conf. Check : https://wiki.strongswan.org/projects/strongswan/wiki/Fromipsecconf to ease the transition from ipsec.* to swanctl.conf 20210313: AFFECTS: users of net-mgmt/phpipam AUTHOR: marko.cupac@mimar.rs ipaddresses table in phpipam database is likely to contain incorrect datetime values which prevent successful upgrade. Make sure to create backup of phpipam database. Before starting upgrade wizard in web interface run the following SQL query on phpipam database: UPDATE ipaddresses SET lastSeen='1970-01-01 00:00:01' WHERE lastSeen < '0000-01-01 00:00:00'; 20210310: AFFECTS: users of textproc/redisearch AUTHOR: osa@FreeBSD.org The textproc/redisearch port has been updated to the recent stable release - v2.0. Users wanting to stay on v1.6 can replace textproc/redisearch with textproc/redisearch16 with one of the following commands: # pkg install textproc/redisearch16 or # portmaster -o textproc/redisearch16 textproc/redisearch or # portupgrade -o textproc/redisearch16 textproc/redisearch NOTE: The textproc/redisearch16 brings a new name for the module, i.e. redisearch16.so, so be careful. 20210309: AFFECTS: users of emulators/virtualbox-ose AUTHOR: madpilot@FreeBSD.org emulators/virtualbox-ose has been updated to 6.1.18. This new version only works on amd64 hardware. Previous version 5.x of the virtualbox ports have been preserved as emulators/virtualbox-ose-legacy and similarly named ports for the other parts. If you can't run the latest version or wish to stay with the old version, please install the legacy ports. Also the additions at present build successfully only for amd64. If you need i386 additions you can fallback to the old legacy ones. NOTE: There is no support for moving saved running machine states across major updates of virtualbox. It is recommended to properly shutdown all virtual machines before upgrading. Otherwise the saved state can simply be discarded after the upgrade, if it's not important to preserve it. It should also be possible to downgrade to the legacy ports and shutdown the machine properly from the saved state and then upgrade back again. 20210302: AFFECTS: users of editors/emacs-devel AUTHOR: jrm@FreeBSD.org If you get the error "Symbol's value as variable is void: minor-modes", rebuild the offending Emacs packages. See https://lists.gnu.org/archive/html/emacs-devel/2021-02/msg01164.html for details. 20210220: AFFECTS: users of math/py-mathics AUTHOR: thierry@FreeBSD.org math/py-mathics has been split into several ports, and Mathics Core only provides a rudimentary command-line shell called mathics. To get the same functionality as in 1.x, you need to install either mathicsscript or Mathics-Django. 20210219: AFFECTS: users of games/mangband AUTHOR: adridg@FreeBSD.org The client has updated from 1.1.3 (which has a single public server left) to the current 1.5.3 (which has more public servers). If you update, you can NOT connect to the old server any more. Remember to finish your game before updating. 20210210: AFFECTS: users of audio/spotifyd AUTHOR: rodrigo@FreeBSD.org The configuration format for audio/spotifyd is now TOML, make sure to update your configuration file after upgrading the port. Look at the sample configuration file for a working example. https://github.com/Spotifyd/spotifyd/blob/master/docs/src/config/File.md 20210208: AFFECTS: users of mail/mailscanner AUTHOR: crees@FreeBSD.org The clamavmodule has finally been removed after a long deprecation period. Please remove all references to it in your mailscanner.conf as it will now count as a syntax error and may stop MailScanner starting! 20210204: AFFECTS: users of www/unit AUTHOR: osa@FreeBSD.org The default location for NGINX Unit's state directory has changed. It was moved from /usr/local/libexec/unit to /var/db/unit in order to avoid write operations on /usr/local filesystem. 20210130: AFFECTS: users of graphics/opencv-core AUTHOR: tcberner@FreeBSD.org graphics/opencv-core has been reintegrated into graphics/opencv. So there is no longer a circular dependency opencv-core -> ffmpeg -> opencv If you experience problems updating the packages, try pkg delete -f opencv-core 20210124: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org The Django templating language (DTL) is no longer supported for export templates. Please ensure that all export templates use Jinja2 before upgrading. Also the support for embedded graphs was completely removed and several changes to the REST API were made. Please check the changelogs for further details. 20210114: AFFECTS: users of net-im/matterircd AUTHOR: norrland@nullbyte.se Commandline switches Switched to viper for cmdline parsing, which does not support "short" flags. You'll need to use --flag instead of -flag. Eg ./matterircd --debug Bridge specific configuration is now only in configuration file. This means the following flags have been removed: -restrict,-mmteam,-mmserver, -mminsecure,-mmskiptlsverify. You can set those in matterircd.toml, see the example file. Config changes BlacklistUser feature for slack has been renamed to DenyUsers. JoinMpImOnTalk feature has been renamed to JoinDM and is available for slack/mattermost JoinInclude, JoinExclude now support regexp (see matterircd.toml.example) 20210113: AFFECTS: users of databases/redis[-devel] AUTHOR: osa@FreeBSD.org The databases/redis port has been updated to the recent stable release. Users wanting to stay on v5.x can replace databases/redis with databases/redis5 with one of the following commands: # pkg install databases/redis5 or # portmaster -o databases/redis5 databases/redis or # portupgrade -o databases/redis5 databases/redis diff --git a/audio/emms/Makefile b/audio/emms/Makefile index 82b2b927f0f0..6a795dad1b9b 100644 --- a/audio/emms/Makefile +++ b/audio/emms/Makefile @@ -1,27 +1,30 @@ PORTNAME= emms DISTVERSION= 25 +PORTREVISION= 1 CATEGORIES= audio elisp MASTER_SITES= https://elpa.gnu.org/packages/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= alven@FreeBSD.org COMMENT= GNU/Emacs Multimedia System WWW= https://www.gnu.org/software/emms/ \ https://elpa.gnu.org/packages/emms.html \ https://cgit.git.savannah.gnu.org/cgit/emms.git/ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING # do not depend on base texinfo on 10 BUILD_DEPENDS= texi2dvi:print/texinfo -USES= emacs gmake tar +USES= emacs:build gmake tar -CONFLICTS_INSTALL= emms emms-emacs_* # share/emacs/site-lisp/emms/emms-auto.el +CONFLICTS_INSTALL= emms-emacs_* NO_ARCH= yes INFO= emms +do-build: + ${GMAKE} -C ${WRKSRC} emms-auto.el docs + .include diff --git a/audio/emms/files/patch-Makefile b/audio/emms/files/patch-Makefile index fd420f3483cc..756f4fbd9796 100644 --- a/audio/emms/files/patch-Makefile +++ b/audio/emms/files/patch-Makefile @@ -1,20 +1,28 @@ --- Makefile.orig 2023-05-25 21:02:56 UTC +++ Makefile -@@ -37,7 +37,7 @@ +@@ -37,7 +37,7 @@ PREFIX=$(DESTDIR)/usr/local DESTDIR= PREFIX=$(DESTDIR)/usr/local -INFODIR=$(PREFIX)/info +INFODIR=$(PREFIX)/share/info MAN1DIR=$(PREFIX)/share/man/man1 BINDIR=$(PREFIX)/bin SITELISP=$(PREFIX)/share/emacs/site-lisp/emms -@@ -48,7 +48,7 @@ +@@ -48,7 +48,7 @@ GINSTALLINFO = /usr/bin/ginstall-info --info-dir=$(INF GINSTALLINFO = /usr/bin/ginstall-info --info-dir=$(INFODIR) # For systems without ginstall-info -INSTALLINFO = /usr/bin/install-info --info-dir=$(INFODIR) +INSTALLINFO = /usr/local/bin/install-info --info-dir=$(INFODIR) CHANGELOG_CMD = git log --pretty=medium --no-merges # The currently released version of EMMS (no longer in use) +@@ -91,7 +91,6 @@ install: + test -d $(SITELISP) || mkdir -p $(SITELISP) + test -d $(INFODIR) || install -d $(INFODIR) + install -m 644 $(ALLSOURCE) $(SITELISP) +- install -m 644 $(ALLCOMPILED) $(SITELISP) + install -m 0644 $(DOCDIR)emms.info $(INFODIR)/emms.info + for p in $(MAN1PAGES) ; do $(GZIP) -9c $$p > $(MAN1DIR)/$$p.gz ; done + if [ -x /usr/bin/ginstall-info ]; then \ diff --git a/audio/emms/pkg-plist b/audio/emms/pkg-plist index 21c773d54500..ec2b68471fa1 100644 --- a/audio/emms/pkg-plist +++ b/audio/emms/pkg-plist @@ -1,143 +1,73 @@ %%EMACS_SITE_LISPDIR%%/emms/emms-auto.el %%EMACS_SITE_LISPDIR%%/emms/emms-bookmarks.el -%%EMACS_SITE_LISPDIR%%/emms/emms-bookmarks.elc %%EMACS_SITE_LISPDIR%%/emms/emms-browser.el -%%EMACS_SITE_LISPDIR%%/emms/emms-browser.elc %%EMACS_SITE_LISPDIR%%/emms/emms-cache.el -%%EMACS_SITE_LISPDIR%%/emms/emms-cache.elc %%EMACS_SITE_LISPDIR%%/emms/emms-compat.el -%%EMACS_SITE_LISPDIR%%/emms/emms-compat.elc %%EMACS_SITE_LISPDIR%%/emms/emms-cue.el -%%EMACS_SITE_LISPDIR%%/emms/emms-cue.elc %%EMACS_SITE_LISPDIR%%/emms/emms-filters.el -%%EMACS_SITE_LISPDIR%%/emms/emms-filters.elc %%EMACS_SITE_LISPDIR%%/emms/emms-history.el -%%EMACS_SITE_LISPDIR%%/emms/emms-history.elc %%EMACS_SITE_LISPDIR%%/emms/emms-i18n.el -%%EMACS_SITE_LISPDIR%%/emms/emms-i18n.elc %%EMACS_SITE_LISPDIR%%/emms/emms-idapi-browser.el -%%EMACS_SITE_LISPDIR%%/emms/emms-idapi-browser.elc %%EMACS_SITE_LISPDIR%%/emms/emms-idapi-musicbrainz.el -%%EMACS_SITE_LISPDIR%%/emms/emms-idapi-musicbrainz.elc %%EMACS_SITE_LISPDIR%%/emms/emms-idapi.el -%%EMACS_SITE_LISPDIR%%/emms/emms-idapi.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-exiftool.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-exiftool.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-libtag.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-libtag.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-metaflac.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-metaflac.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-mp3info.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-mp3info.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-native-flac.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-native-flac.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-native-mp3.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-native-mp3.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-native-ogg.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-native-ogg.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-native-opus.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-native-opus.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-native-spc.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-native-spc.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-native-vorbis.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-native-vorbis.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-native.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-native.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-ogginfo.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-ogginfo.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-opusinfo.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-opusinfo.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info-tinytag.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info-tinytag.elc %%EMACS_SITE_LISPDIR%%/emms/emms-info.el -%%EMACS_SITE_LISPDIR%%/emms/emms-info.elc %%EMACS_SITE_LISPDIR%%/emms/emms-jack.el -%%EMACS_SITE_LISPDIR%%/emms/emms-jack.elc %%EMACS_SITE_LISPDIR%%/emms/emms-last-played.el -%%EMACS_SITE_LISPDIR%%/emms/emms-last-played.elc %%EMACS_SITE_LISPDIR%%/emms/emms-later-do.el -%%EMACS_SITE_LISPDIR%%/emms/emms-later-do.elc %%EMACS_SITE_LISPDIR%%/emms/emms-librefm-scrobbler.el -%%EMACS_SITE_LISPDIR%%/emms/emms-librefm-scrobbler.elc %%EMACS_SITE_LISPDIR%%/emms/emms-librefm-stream.el -%%EMACS_SITE_LISPDIR%%/emms/emms-librefm-stream.elc %%EMACS_SITE_LISPDIR%%/emms/emms-listenbrainz-scrobbler.el -%%EMACS_SITE_LISPDIR%%/emms/emms-listenbrainz-scrobbler.elc %%EMACS_SITE_LISPDIR%%/emms/emms-lyrics-lrclib.el -%%EMACS_SITE_LISPDIR%%/emms/emms-lyrics-lrclib.elc %%EMACS_SITE_LISPDIR%%/emms/emms-lyrics.el -%%EMACS_SITE_LISPDIR%%/emms/emms-lyrics.elc %%EMACS_SITE_LISPDIR%%/emms/emms-maint.el -%%EMACS_SITE_LISPDIR%%/emms/emms-maint.elc %%EMACS_SITE_LISPDIR%%/emms/emms-mark.el -%%EMACS_SITE_LISPDIR%%/emms/emms-mark.elc %%EMACS_SITE_LISPDIR%%/emms/emms-metaplaylist-mode.el -%%EMACS_SITE_LISPDIR%%/emms/emms-metaplaylist-mode.elc %%EMACS_SITE_LISPDIR%%/emms/emms-mode-line-icon.el -%%EMACS_SITE_LISPDIR%%/emms/emms-mode-line-icon.elc %%EMACS_SITE_LISPDIR%%/emms/emms-mode-line.el -%%EMACS_SITE_LISPDIR%%/emms/emms-mode-line.elc %%EMACS_SITE_LISPDIR%%/emms/emms-mpris.el -%%EMACS_SITE_LISPDIR%%/emms/emms-mpris.elc %%EMACS_SITE_LISPDIR%%/emms/emms-pkg.el %%EMACS_SITE_LISPDIR%%/emms/emms-player-mpd.el -%%EMACS_SITE_LISPDIR%%/emms/emms-player-mpd.elc %%EMACS_SITE_LISPDIR%%/emms/emms-player-mpg321-remote.el -%%EMACS_SITE_LISPDIR%%/emms/emms-player-mpg321-remote.elc %%EMACS_SITE_LISPDIR%%/emms/emms-player-mplayer.el -%%EMACS_SITE_LISPDIR%%/emms/emms-player-mplayer.elc %%EMACS_SITE_LISPDIR%%/emms/emms-player-mpv.el -%%EMACS_SITE_LISPDIR%%/emms/emms-player-mpv.elc %%EMACS_SITE_LISPDIR%%/emms/emms-player-simple.el -%%EMACS_SITE_LISPDIR%%/emms/emms-player-simple.elc %%EMACS_SITE_LISPDIR%%/emms/emms-player-vlc.el -%%EMACS_SITE_LISPDIR%%/emms/emms-player-vlc.elc %%EMACS_SITE_LISPDIR%%/emms/emms-player-xine.el -%%EMACS_SITE_LISPDIR%%/emms/emms-player-xine.elc %%EMACS_SITE_LISPDIR%%/emms/emms-playing-time.el -%%EMACS_SITE_LISPDIR%%/emms/emms-playing-time.elc %%EMACS_SITE_LISPDIR%%/emms/emms-playlist-limit.el -%%EMACS_SITE_LISPDIR%%/emms/emms-playlist-limit.elc %%EMACS_SITE_LISPDIR%%/emms/emms-playlist-mode.el -%%EMACS_SITE_LISPDIR%%/emms/emms-playlist-mode.elc %%EMACS_SITE_LISPDIR%%/emms/emms-playlist-sort.el -%%EMACS_SITE_LISPDIR%%/emms/emms-playlist-sort.elc %%EMACS_SITE_LISPDIR%%/emms/emms-radio-browser.el -%%EMACS_SITE_LISPDIR%%/emms/emms-radio-browser.elc %%EMACS_SITE_LISPDIR%%/emms/emms-score.el -%%EMACS_SITE_LISPDIR%%/emms/emms-score.elc %%EMACS_SITE_LISPDIR%%/emms/emms-setup.el -%%EMACS_SITE_LISPDIR%%/emms/emms-setup.elc %%EMACS_SITE_LISPDIR%%/emms/emms-show-all.el -%%EMACS_SITE_LISPDIR%%/emms/emms-show-all.elc %%EMACS_SITE_LISPDIR%%/emms/emms-source-beets.el -%%EMACS_SITE_LISPDIR%%/emms/emms-source-beets.elc %%EMACS_SITE_LISPDIR%%/emms/emms-source-file.el -%%EMACS_SITE_LISPDIR%%/emms/emms-source-file.elc %%EMACS_SITE_LISPDIR%%/emms/emms-source-playlist.el -%%EMACS_SITE_LISPDIR%%/emms/emms-source-playlist.elc %%EMACS_SITE_LISPDIR%%/emms/emms-stream-info.el -%%EMACS_SITE_LISPDIR%%/emms/emms-stream-info.elc %%EMACS_SITE_LISPDIR%%/emms/emms-streams.el -%%EMACS_SITE_LISPDIR%%/emms/emms-streams.elc %%EMACS_SITE_LISPDIR%%/emms/emms-tag-editor.el -%%EMACS_SITE_LISPDIR%%/emms/emms-tag-editor.elc %%EMACS_SITE_LISPDIR%%/emms/emms-tag-tracktag.el -%%EMACS_SITE_LISPDIR%%/emms/emms-tag-tracktag.elc %%EMACS_SITE_LISPDIR%%/emms/emms-url.el -%%EMACS_SITE_LISPDIR%%/emms/emms-url.elc %%EMACS_SITE_LISPDIR%%/emms/emms-volume-amixer.el -%%EMACS_SITE_LISPDIR%%/emms/emms-volume-amixer.elc %%EMACS_SITE_LISPDIR%%/emms/emms-volume-mixerctl.el -%%EMACS_SITE_LISPDIR%%/emms/emms-volume-mixerctl.elc %%EMACS_SITE_LISPDIR%%/emms/emms-volume-mpv.el -%%EMACS_SITE_LISPDIR%%/emms/emms-volume-mpv.elc %%EMACS_SITE_LISPDIR%%/emms/emms-volume-pulse.el -%%EMACS_SITE_LISPDIR%%/emms/emms-volume-pulse.elc %%EMACS_SITE_LISPDIR%%/emms/emms-volume-sndioctl.el -%%EMACS_SITE_LISPDIR%%/emms/emms-volume-sndioctl.elc %%EMACS_SITE_LISPDIR%%/emms/emms-volume.el -%%EMACS_SITE_LISPDIR%%/emms/emms-volume.elc %%EMACS_SITE_LISPDIR%%/emms/emms.el -%%EMACS_SITE_LISPDIR%%/emms/emms.elc share/man/man1/emms-print-metadata.1.gz diff --git a/audio/mpg123.el/Makefile b/audio/mpg123.el/Makefile index 876d611253f9..e8f96d161562 100644 --- a/audio/mpg123.el/Makefile +++ b/audio/mpg123.el/Makefile @@ -1,46 +1,46 @@ PORTNAME= mpg123.el PORTVERSION= 1.65 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio elisp MASTER_SITES= http://www.gentei.org/~yuuji/software/mpg123el/ PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= mpg123el.cgi?${PORTVERSION} EXTRACT_SUFX= # empty EXTRACT_ONLY= # empty MAINTAINER= mce@FreeBSD.org COMMENT= Front-end to mpg123/ogg123 audio player for Emacsen WWW= http://www.gentei.org/~yuuji/software/mpg123el/ LICENSE= BSD2CLAUSE USES= emacs +CONFLICTS_INSTALL= mpg123.el-emacs_* + OPTIONS_SINGLE= PLAYER OPTIONS_SINGLE_PLAYER= MPG123 MPLAYER OPTIONS_DEFAULT= MPLAYER MPG123_DESC= Use mpg123/ogg123 as audio player MPLAYER_DESC= Use mplayer as audio player PLAYER_DESC= Default audio player MPLAYER_RUN_DEPENDS= mplayer:multimedia/mplayer MPG123_RUN_DEPENDS= mpg123:audio/mpg123 \ ogg123:audio/vorbis-tools MPG123_EXTRA_PATCHES= ${FILESDIR}/extra-mpg123-patch-mpg123.el -CONFLICTS= mpg123-emacs - NO_WRKSUBDIR= yes NO_ARCH= yes NO_BUILD= yes PLIST_FILES= ${EMACS_SITE_LISPDIR}/mpg123.el FETCH_ARGS= -AR FETCH_BEFORE_ARGS= -o mpg123el.cgi?${PORTVERSION} do-extract: ${CP} ${DISTDIR}/mpg123el.cgi?${PORTVERSION} ${EXTRACT_WRKDIR}/${PORTNAME} do-install: ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/audio/mpg123.el/pkg-message b/audio/mpg123.el/pkg-message index f50b93b8fdd1..e1d445f73e52 100644 --- a/audio/mpg123.el/pkg-message +++ b/audio/mpg123.el/pkg-message @@ -1,9 +1,9 @@ [ { type: install message: <0:cad/verilog-mode.el@${EMACS_FLAVOR} +EMACS_USES= emacs +EMACS_RUN_DEPENDS= verilog-mode.el>0:cad/verilog-mode.el EMACS_PLIST_FILES= ${EMACS_SITE_LISPDIR}/dinotrace.el ${EMACS_SITE_LISPDIR}/sim-log.el post-patch: @${REINPLACE_CMD} -e 's|"-O3"|""|' ${WRKSRC}/configure post-install-EMACS-on: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .for F in dinotrace.el sim-log.el ${INSTALL_DATA} ${WRKSRC}/lisp/${F} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .endfor .include diff --git a/cad/dinotrace/pkg-message b/cad/dinotrace/pkg-message index a0d53aafdc46..d81a1a1d3398 100644 --- a/cad/dinotrace/pkg-message +++ b/cad/dinotrace/pkg-message @@ -1,18 +1,15 @@ [ { type: install message: < ${PORTNAME} - -NO_WRKSUBDIR= yes NO_BUILD= yes -USES= emacs:run - -CONFLICTS_INSTALL= verilog-mode.el verilog-mode.el-emacs_* # share/emacs/site-lisp/verilog-mode.el +NO_WRKSUBDIR= yes PLIST_FILES= ${EMACS_SITE_LISPDIR}/${PORTNAME} do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/cad/verilog-mode.el/pkg-message b/cad/verilog-mode.el/pkg-message index f47abf9c4d59..c7cf422df4fa 100644 --- a/cad/verilog-mode.el/pkg-message +++ b/cad/verilog-mode.el/pkg-message @@ -1,11 +1,10 @@ [ { type: install message: < diff --git a/comms/emacs-eat/pkg-plist b/comms/emacs-eat/pkg-plist index 622545878ecb..ff2c7c1b8d82 100644 --- a/comms/emacs-eat/pkg-plist +++ b/comms/emacs-eat/pkg-plist @@ -1,11 +1,10 @@ %%EMACS_SITE_LISPDIR%%/eat.el -%%EMACS_SITE_LISPDIR%%/eat.elc share/terminfo/65/eat-256color share/terminfo/65/eat-color share/terminfo/65/eat-mono share/terminfo/65/eat-truecolor share/terminfo/e/eat-256color share/terminfo/e/eat-color share/terminfo/e/eat-mono share/terminfo/e/eat-truecolor %%PORTDOCS%%%%DOCSDIR%%/README.org diff --git a/databases/bbdb/Makefile b/databases/bbdb/Makefile index 58c06d74cbaa..ad6875a67648 100644 --- a/databases/bbdb/Makefile +++ b/databases/bbdb/Makefile @@ -1,56 +1,47 @@ PORTNAME= bbdb DISTVERSIONPREFIX= v DISTVERSION= 3.2.2a -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= databases elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= emacs@FreeBSD.org COMMENT= Big Brother Database WWW= https://savannah.nongnu.org/projects/bbdb/ LICENSE= GPLv3+ BUILD_DEPENDS= texi2dvi:print/texinfo -USES= autoreconf emacs +USES= autoreconf emacs:build USE_GITHUB= yes GH_ACCOUNT= emacsmirror GH_TAGNAME= a50c89a +CONFLICTS_INSTALL= bbdb-emacs_* + BBDB_LISPDIR= ${EMACS_SITE_LISPDIR}/${PORTNAME} GNU_CONFIGURE= yes -CONFLICTS_INSTALL= bbdb bbdb-emacs_* # share/doc/bbdb/bbdb.pdf - # Do not install the info file. Upstream has yet to add any real content to it. #INFO= bbdb PORTDOCS= bbdb.pdf NO_ARCH= yes PLIST_SUB+= BBDB_LISPDIR=${BBDB_LISPDIR} OPTIONS_DEFINE= DOCS DOCS_USES= tex DOCS_USE= TEX=latex:build DOCS_CONFIGURE_ENABLE= docs -# See http://lists.nongnu.org/archive/html/bbdb-user/2018-11/msg00003.html -.if ${FLAVOR:U} != devel_full && ${FLAVOR:U} != devel_nox -post-configure: - ${REINPLACE_CMD} -e '/[[:blank:]]*--eval '\''(setq byte-compile-dest-file-function (lambda (_) "$$@"))'\'' \\/d' \ - ${WRKSRC}/lisp/Makefile -.endif - do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${BBDB_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/lisp/*.el ${WRKSRC}/lisp/*.elc \ - ${STAGEDIR}${PREFIX}/${BBDB_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/lisp/*.el ${STAGEDIR}${PREFIX}/${BBDB_LISPDIR} # Do not install the info file. Upstream has yet to add any real content to it. # ${INSTALL_DATA} ${WRKSRC}/doc/${PORTNAME}.info \ # ${STAGEDIR}${PREFIX}/${INFO_PATH} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/bbdb.pdf ${STAGEDIR}${DOCSDIR} .include diff --git a/databases/bbdb/pkg-plist b/databases/bbdb/pkg-plist index 6c76a7c01dff..ab466874311d 100644 --- a/databases/bbdb/pkg-plist +++ b/databases/bbdb/pkg-plist @@ -1,38 +1,22 @@ %%BBDB_LISPDIR%%/bbdb-anniv.el -%%BBDB_LISPDIR%%/bbdb-anniv.elc %%BBDB_LISPDIR%%/bbdb-com.el -%%BBDB_LISPDIR%%/bbdb-com.elc %%BBDB_LISPDIR%%/bbdb-gnus-aux.el -%%BBDB_LISPDIR%%/bbdb-gnus-aux.elc %%BBDB_LISPDIR%%/bbdb-gnus.el -%%BBDB_LISPDIR%%/bbdb-gnus.elc %%BBDB_LISPDIR%%/bbdb-ispell.el -%%BBDB_LISPDIR%%/bbdb-ispell.elc %%BBDB_LISPDIR%%/bbdb-loaddefs.el %%BBDB_LISPDIR%%/bbdb-message.el -%%BBDB_LISPDIR%%/bbdb-message.elc %%BBDB_LISPDIR%%/bbdb-mhe.el -%%BBDB_LISPDIR%%/bbdb-mhe.elc %%BBDB_LISPDIR%%/bbdb-migrate.el -%%BBDB_LISPDIR%%/bbdb-migrate.elc %%BBDB_LISPDIR%%/bbdb-mu4e.el %%BBDB_LISPDIR%%/bbdb-mua.el -%%BBDB_LISPDIR%%/bbdb-mua.elc %%BBDB_LISPDIR%%/bbdb-pgp.el -%%BBDB_LISPDIR%%/bbdb-pgp.elc %%BBDB_LISPDIR%%/bbdb-pkg.el %%BBDB_LISPDIR%%/bbdb-rmail.el -%%BBDB_LISPDIR%%/bbdb-rmail.elc %%BBDB_LISPDIR%%/bbdb-sc.el -%%BBDB_LISPDIR%%/bbdb-sc.elc %%BBDB_LISPDIR%%/bbdb-site.el -%%BBDB_LISPDIR%%/bbdb-site.elc %%BBDB_LISPDIR%%/bbdb-snarf.el -%%BBDB_LISPDIR%%/bbdb-snarf.elc %%BBDB_LISPDIR%%/bbdb-tex.el -%%BBDB_LISPDIR%%/bbdb-tex.elc %%BBDB_LISPDIR%%/bbdb-vm-aux.el %%BBDB_LISPDIR%%/bbdb-vm.el %%BBDB_LISPDIR%%/bbdb-wl.el %%BBDB_LISPDIR%%/bbdb.el -%%BBDB_LISPDIR%%/bbdb.elc diff --git a/databases/closql/Makefile b/databases/closql/Makefile index 104c2c441ab0..f3098c9083f2 100644 --- a/databases/closql/Makefile +++ b/databases/closql/Makefile @@ -1,53 +1,47 @@ PORTNAME= closql DISTVERSIONPREFIX= v DISTVERSION= 2.4.0 +PORTREVISION= 2 CATEGORIES= databases elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Store EIEIO objects using EmacSQL WWW= https://github.com/magit/closql LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.0.0.0:misc/compat.el@${EMACS_FLAVOR} \ - emacsql${EMACS_PKGNAMESUFFIX}>=4.3.1:databases/emacsql@${EMACS_FLAVOR} \ - cond-let${EMACS_PKGNAMESUFFIX}>=0.2.1:devel/cond-let@${EMACS_FLAVOR} -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.0.0.0:misc/compat.el@${EMACS_FLAVOR} \ - emacsql${EMACS_PKGNAMESUFFIX}>=4.3.1:databases/emacsql@${EMACS_FLAVOR} \ - cond-let${EMACS_PKGNAMESUFFIX}>=0.2.1:devel/cond-let@${EMACS_FLAVOR} +BUILD_DEPENDS= compat.el>=30.0.0.0:misc/compat.el \ + cond-let>=0.2.1:devel/cond-let \ + emacsql>=4.3.1:databases/emacsql +RUN_DEPENDS= compat.el>=30.0.0.0:misc/compat.el \ + cond-let>=0.2.1:devel/cond-let \ + emacsql>=4.3.1:databases/emacsql -USES= emacs gmake +USES= emacs:build gmake USE_GITHUB= yes GH_ACCOUNT= magit -MAKE_ENV+= LOAD_PATH="${LOAD_PATH}" -MAKE_JOBS_UNSAFE= Opening input file: No such file or directory, /wrkdirs/usr/ports/databases/closql/work-full/closql-2.2.0/.#closql-autoloads.el +ALL_TARGET= autoloads -CONFLICTS_INSTALL= closql closql-devel* closql-emacs_* +CONFLICTS_INSTALL= closql-emacs_* NO_ARCH= yes -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/closql-autoloads.el \ - ${EMACS_VERSION_SITE_LISPDIR}/closql.el \ - ${EMACS_VERSION_SITE_LISPDIR}/closql.elc +PLIST_FILES= ${EMACS_SITE_LISPDIR}/closql-autoloads.el \ + ${EMACS_SITE_LISPDIR}/closql.el PORTDOCS= README.org OPTIONS_DEFINE= DOCS -LOAD_PATH= -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/compat \ - -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/emacsql \ - -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} *.el* \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}) + ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} *.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}) do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.org ${STAGEDIR}${DOCSDIR} .include diff --git a/databases/emacsql/Makefile b/databases/emacsql/Makefile index 3c42b3a3967a..d8dbe615e33d 100644 --- a/databases/emacsql/Makefile +++ b/databases/emacsql/Makefile @@ -1,42 +1,44 @@ PORTNAME= emacsql DISTVERSIONPREFIX= v DISTVERSION= 4.3.5 +PORTREVISION= 1 CATEGORIES= databases elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= High-level Emacs Lisp RDBMS front-end WWW= https://github.com/magit/emacsql LICENSE= UNLICENSE LICENSE_FILE= ${WRKSRC}/UNLICENSE -BUILD_DEPENDS= pg.el${EMACS_PKGNAMESUFFIX}>=0.39:databases/pg.el@${EMACS_FLAVOR} -RUN_DEPENDS= pg.el${EMACS_PKGNAMESUFFIX}>=0.39:databases/pg.el@${EMACS_FLAVOR} +BUILD_DEPENDS= pg.el>=0.39:databases/pg.el +RUN_DEPENDS= pg.el>=0.39:databases/pg.el -USES= emacs gmake +USES= emacs:build gmake USE_GITHUB= yes GH_ACCOUNT= magit -MAKE_ENV+= LOAD_PATH="-L ${PREFIX}/${EMACS_SITE_LISPDIR} -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}" +MAKE_ENV+= LOAD_PATH="-L ${PREFIX}/${EMACS_SITE_LISPDIR}" MAKE_JOBS_UNSAFE= yes TEST_TARGET= test -CONFLICTS_INSTALL= emacsql emacsql-devel* emacsql-emacs_* +CONFLICTS_INSTALL= emacsql-emacs_* + +NO_ARCH= yes PORTDOCS= README.md OPTIONS_DEFINE= DOCS do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/bin \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/*.el ${WRKSRC}/*.elc \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/*.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/databases/emacsql/pkg-plist b/databases/emacsql/pkg-plist index db8d7d73c1a4..3e6bad1865c9 100644 --- a/databases/emacsql/pkg-plist +++ b/databases/emacsql/pkg-plist @@ -1,17 +1,9 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-autoloads.el -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-compiler.el -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-compiler.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-mysql.el -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-mysql.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-pg.el -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-pg.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-psql.el -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-psql.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-sqlite-builtin.el -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-sqlite-builtin.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-sqlite-module.el -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-sqlite-module.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-sqlite.el -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql-sqlite.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql.el -%%EMACS_VERSION_SITE_LISPDIR%%/emacsql/emacsql.elc +%%EMACS_SITE_LISPDIR%%/emacsql/emacsql-autoloads.el +%%EMACS_SITE_LISPDIR%%/emacsql/emacsql-compiler.el +%%EMACS_SITE_LISPDIR%%/emacsql/emacsql-mysql.el +%%EMACS_SITE_LISPDIR%%/emacsql/emacsql-pg.el +%%EMACS_SITE_LISPDIR%%/emacsql/emacsql-psql.el +%%EMACS_SITE_LISPDIR%%/emacsql/emacsql-sqlite-builtin.el +%%EMACS_SITE_LISPDIR%%/emacsql/emacsql-sqlite-module.el +%%EMACS_SITE_LISPDIR%%/emacsql/emacsql-sqlite.el +%%EMACS_SITE_LISPDIR%%/emacsql/emacsql.el diff --git a/databases/pg.el/Makefile b/databases/pg.el/Makefile index 6805f841e975..02de967bf0af 100644 --- a/databases/pg.el/Makefile +++ b/databases/pg.el/Makefile @@ -1,45 +1,41 @@ PORTNAME= pg.el DISTVERSIONPREFIX= v DISTVERSION= 0.63 +PORTREVISION= 1 CATEGORIES= databases elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= PostgreSQL Elisp interface WWW= https://github.com/emarsden/pg-el LICENSE= GPLv2+ USES= emacs USE_GITHUB= yes GH_ACCOUNT= emarsden GH_PROJECT= pg-el -CONFLICTS_INSTALL= pg.el pg.el-emacs_* # share/doc/pg.el/README +CONFLICTS_INSTALL= pg.el-emacs_* NO_ARCH= yes +NO_BUILD= yes PLIST_SUB+= ELISPDIR=${ELISPDIR} PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= DOCS -ELISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} - -do-build: - (cd ${WRKSRC} \ - && ${EMACS_CMD} -Q -batch -L . -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} \ - -f batch-byte-compile *.el) +ELISPDIR= ${EMACS_SITE_LISPDIR}/${PORTNAME} do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${ELISPDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} *.el* \ + (cd ${WRKSRC} && ${INSTALL_DATA} *.el \ ${STAGEDIR}${PREFIX}/${ELISPDIR}) do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:C/^/${WRKSRC}\//g} ${STAGEDIR}${DOCSDIR} .include diff --git a/databases/pg.el/pkg-plist b/databases/pg.el/pkg-plist index 342da167b203..c94ffa9396ac 100644 --- a/databases/pg.el/pkg-plist +++ b/databases/pg.el/pkg-plist @@ -1,10 +1,5 @@ %%ELISPDIR%%/pg-bm25.el -%%ELISPDIR%%/pg-bm25.elc %%ELISPDIR%%/pg-geometry.el -%%ELISPDIR%%/pg-geometry.elc %%ELISPDIR%%/pg-gis.el -%%ELISPDIR%%/pg-gis.elc %%ELISPDIR%%/pg-lo.el -%%ELISPDIR%%/pg-lo.elc %%ELISPDIR%%/pg.el -%%ELISPDIR%%/pg.elc diff --git a/deskutils/howm/Makefile b/deskutils/howm/Makefile index 0fd12074b856..3cb392a41624 100644 --- a/deskutils/howm/Makefile +++ b/deskutils/howm/Makefile @@ -1,42 +1,39 @@ PORTNAME= howm PORTVERSION= 1.4.8 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= deskutils MASTER_SITES= http://howm.sourceforge.jp/a/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Write fragmentarily and read collectively WWW= http://howm.sourceforge.jp/index.html LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= emacs -EMACS_FLAVORS_EXCLUDE=devel_full devel_nox # Debugger entered--Lisp error: (wrong-type-argument stringp nil) -GNU_CONFIGURE= yes +CONFLICTS_INSTALL= howm-emacs_* -CONFLICTS_INSTALL= howm howm-emacs_* # share/doc/howm/README-j.html +NO_ARCH= yes +NO_BUILD= yes PORTDOCS= *.html *.png PORTEXAMPLES= en/0000-00-00-000000.txt ja/0000-00-00-000000.txt OPTIONS_DEFINE= DOCS EXAMPLES -NO_ARCH= yes - do-install: - cd ${WRKSRC} && ${INSTALL_DATA} *.el *.elc \ + cd ${WRKSRC} && ${INSTALL_DATA} *.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/doc && ${INSTALL_DATA} *.html *.png ${STAGEDIR}${DOCSDIR}) do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/en ${STAGEDIR}${EXAMPLESDIR}/ja (cd ${WRKSRC} && ${INSTALL_DATA} ja/0* ${STAGEDIR}${EXAMPLESDIR}/ja) (cd ${WRKSRC} && ${INSTALL_DATA} en/0* ${STAGEDIR}${EXAMPLESDIR}/en) .include diff --git a/deskutils/howm/pkg-message b/deskutils/howm/pkg-message index 9f39dee983ee..41c61dc0da5d 100644 --- a/deskutils/howm/pkg-message +++ b/deskutils/howm/pkg-message @@ -1,11 +1,10 @@ [ { type: install message: < diff --git a/devel/clojure-cider/Makefile b/devel/clojure-cider/Makefile index 0012beabdfd6..3eda798cd578 100644 --- a/devel/clojure-cider/Makefile +++ b/devel/clojure-cider/Makefile @@ -1,29 +1,31 @@ PORTNAME= clojure-cider DISTVERSIONPREFIX= v DISTVERSION= 1.21.0 +PORTREVISION= 1 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= bofh@FreeBSD.org COMMENT= Clojure IDE and REPL for Emacs WWW= https://github.com/clojure-emacs/cider LICENSE= GPLv3+ -RUN_DEPENDS= clojure-mode.el${EMACS_PKGNAMESUFFIX}>0:lang/clojure-mode.el@${EMACS_FLAVOR} \ - dash.el${EMACS_PKGNAMESUFFIX}>0:devel/dash.el@${EMACS_FLAVOR} \ - epl.el${EMACS_PKGNAMESUFFIX}>0:devel/epl.el@${EMACS_FLAVOR} \ - pkg-info.el${EMACS_PKGNAMESUFFIX}>0:devel/pkg-info.el@${EMACS_FLAVOR} +RUN_DEPENDS= clojure-mode.el>0:lang/clojure-mode.el \ + dash.el>0:devel/dash.el \ + epl.el>0:devel/epl.el \ + pkg-info.el>0:devel/pkg-info.el USES= emacs USE_GITHUB= yes GH_ACCOUNT= clojure-emacs GH_PROJECT= cider +CONFLICTS_INSTALL= clojure-cider-emacs_* + NO_ARCH= yes NO_BUILD= yes do-install: ${INSTALL_DATA} ${WRKSRC}/lisp/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/devel/coccinelle/Makefile b/devel/coccinelle/Makefile index f013bc2be4fc..9da6ce4c813a 100644 --- a/devel/coccinelle/Makefile +++ b/devel/coccinelle/Makefile @@ -1,66 +1,65 @@ PORTNAME= coccinelle DISTVERSION= 1.3 PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://coccinelle.gitlabpages.inria.fr/website/distrib/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= freebsd@dev.thsi.be COMMENT= Program matching and transformation engine WWW= https://coccinelle.gitlabpages.inria.fr/website/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/license.txt BUILD_DEPENDS= menhir:devel/menhir \ ocaml-parmap>=0:devel/ocaml-parmap \ ocaml-pcre>=0:devel/ocaml-pcre LIB_DEPENDS= libpcre.so:devel/pcre TEST_DEPENDS= bash:shells/bash USES= autoreconf gmake ocaml:camlp4 perl5 pkgconfig:build python shebangfix USE_GITHUB= nodefault # until coccinelle/stdcompat releases with ocaml 5.2 support. GH_TUPLE= thierry-martinez:stdcompat:d53390d788027fe0a2282c4745eb3d1626341f99:stdcompat USE_PERL5= build SHEBANG_FILES= tools/pycocci scripts/cpptests.sh GNU_CONFIGURE= yes CONFIGURE_ENV= PYTHON="${PYTHON_CMD}" PYVER="${PYTHON_VER}" MAKE_ARGS= PYTHON_VERSION="${PYTHON_VER}" BINARY_ALIAS= make=${GMAKE} TEST_TARGET= check check-cpp OPTIONS_DEFINE= EMACS VIM OPTIONS_DEFAULT= EMACS VIM OPTIONS_SUB= yes EMACS_DESC= Emacs plugin VIM_DESC= Vim plugin EMACS_USES= emacs -EMACS_NO_DEPENDS= yes post-extract: ${RM} -r ${WRKSRC}/bundles/stdcompat/stdcompat-current (cd ${WRKSRC_stdcompat} && ${COPYTREE_SHARE} . \ ${WRKSRC}/bundles/stdcompat/stdcompat-current) post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/spatch ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/spgen ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/coccinelle/*.so post-install-EMACS-on: ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/cocci cd ${WRKSRC}/editors/emacs && \ ${INSTALL_DATA} cocci-ediff.el cocci.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/cocci post-install-VIM-on: .for d in ftdetect syntax ${MKDIR} ${STAGEDIR}${PREFIX}/share/vim/vimfiles/${d} ${INSTALL_DATA} ${WRKSRC}/editors/vim/${d}/cocci.vim \ ${STAGEDIR}${PREFIX}/share/vim/vimfiles/${d} .endfor .include diff --git a/devel/cond-let/Makefile b/devel/cond-let/Makefile index 681cdf74e363..a4d5b6a7e8d5 100644 --- a/devel/cond-let/Makefile +++ b/devel/cond-let/Makefile @@ -1,38 +1,39 @@ PORTNAME= cond-let DISTVERSIONPREFIX= v DISTVERSION= 0.2.2 +PORTREVISION= 1 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= jrm@FreeBSD.org COMMENT= Additional and improved binding conditionals in Emacs Lisp WWW= https://github.com/tarsius/cond-let LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -USES= emacs gmake +USES= emacs:build gmake USE_GITHUB= yes GH_ACCOUNT= tarsius +CONFLICTS_INSTALL= cond-let-emacs_* + NO_ARCH= yes -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/cond-let-autoloads.el \ - ${EMACS_VERSION_SITE_LISPDIR}/cond-let.el \ - ${EMACS_VERSION_SITE_LISPDIR}/cond-let.elc +PLIST_FILES= ${EMACS_SITE_LISPDIR}/cond-let-autoloads.el \ + ${EMACS_SITE_LISPDIR}/cond-let.el PORTDOCS= README.org OPTIONS_DEFINE= DOCS -ELISP_FILES= cond-let-autoloads.el cond-let.el cond-let.elc +ELISP_FILES= cond-let-autoloads.el cond-let.el do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${ELISP_FILES:C/^/${WRKSRC}\//} \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:C/^/${WRKSRC}\//} ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/dash.el/Makefile b/devel/dash.el/Makefile index 04c1cc1f74e6..f2772a9ae6e7 100644 --- a/devel/dash.el/Makefile +++ b/devel/dash.el/Makefile @@ -1,31 +1,28 @@ PORTNAME= dash.el DISTVERSION= 2.20.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Modern list library for Emacs WWW= https://github.com/magnars/dash.el LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= emacs USE_GITHUB= yes GH_ACCOUNT= magnars -NO_ARCH= yes -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/dash.el \ - ${EMACS_VERSION_SITE_LISPDIR}/dash.elc +CONFLICTS_INSTALL= dash.el-emacs_* -do-build: - (cd ${WRKSRC} \ - && ${EMACS_CMD} -Q -batch -L . -f batch-byte-compile dash.el) +NO_ARCH= yes +NO_BUILD= yes +PLIST_FILES= ${EMACS_SITE_LISPDIR}/dash.el do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} dash.el* \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}) + ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} dash.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}) .include diff --git a/devel/distel/Makefile b/devel/distel/Makefile index 82b12d9fc574..bb2ebe84d725 100644 --- a/devel/distel/Makefile +++ b/devel/distel/Makefile @@ -1,49 +1,50 @@ PORTNAME= distel PORTVERSION= 4.1.1 -PORTREVISION= 20 +PORTREVISION= 22 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= erlang@FreeBSD.org COMMENT= Distel extends Emacs Lisp with Erlang-style message passing WWW= http://www.bluetail.com/~luke/distel/ LICENSE= MIT BUILD_DEPENDS+= erlc:lang/erlang USES= emacs USE_GITHUB= yes GH_ACCOUNT= massemanet -PLIST_SUB= VERSION="${PORTVERSION}" +CONFLICTS_INSTALL= distel-emacs_* NO_ARCH= yes +PLIST_SUB= VERSION="${PORTVERSION}" + DISTEL_DOCS= AUTHORS ChangeLog INSTALL INSTALL.WIN32 NEWS README README.ie-session DISTEL_ROOT= ${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION} OPTIONS_DEFINE= DOCS do-build: @${MKDIR} ${WRKSRC}/ebin @cd ${WRKSRC} && erlc -W0 -o ebin/ +debug_info src/*.erl do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/elisp/*el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} @${MKDIR} ${STAGEDIR}${DOCSDIR} for FILE in ${DISTEL_DOCS}; do \ ${INSTALL_DATA} ${WRKSRC}/$${FILE} ${STAGEDIR}${DOCSDIR}; \ done ${INSTALL_DATA} ${WRKSRC}/doc/*.pdf ${STAGEDIR}${DOCSDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR}/html ${INSTALL_DATA} ${WRKSRC}/doc/distel/*.html ${STAGEDIR}${DOCSDIR}/html @${MKDIR} ${STAGEDIR}${DISTEL_ROOT}/src @${MKDIR} ${STAGEDIR}${DISTEL_ROOT}/ebin ${INSTALL_DATA} ${WRKSRC}/src/*.erl ${STAGEDIR}${DISTEL_ROOT}/src ${INSTALL_DATA} ${WRKSRC}/ebin/*.beam ${STAGEDIR}${DISTEL_ROOT}/ebin .include diff --git a/devel/epl.el/Makefile b/devel/epl.el/Makefile index d4ea55542a4e..e711faab2566 100644 --- a/devel/epl.el/Makefile +++ b/devel/epl.el/Makefile @@ -1,25 +1,26 @@ PORTNAME= epl.el PORTVERSION= 0.8 -PORTREVISION= 20 +PORTREVISION= 22 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= hrs@FreeBSD.org COMMENT= Emacs Package Library WWW= https://github.com/cask/epl LICENSE= GPLv3 USES= emacs USE_GITHUB= yes GH_ACCOUNT= cask GH_PROJECT= epl +CONFLICTS_INSTALL= epl.el-emacs_* + NO_BUILD= yes PLIST_FILES= ${EMACS_SITE_LISPDIR}/epl.el do-install: (cd ${WRKSRC} && ${INSTALL_DATA} ${PLIST_FILES:M*.el:T} \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}) .include diff --git a/devel/forge/Makefile b/devel/forge/Makefile index 8963c3fb9fef..dba34777c89d 100644 --- a/devel/forge/Makefile +++ b/devel/forge/Makefile @@ -1,87 +1,71 @@ PORTNAME= forge DISTVERSIONPREFIX= v DISTVERSION= 0.6.2 +PORTREVISION= 1 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Work with Git forges from the comfort of Magit WWW= https://github.com/magit/forge LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= closql${EMACS_PKGNAMESUFFIX}>=2.3:databases/closql@${EMACS_FLAVOR} \ - compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} \ - cond-let${EMACS_PKGNAMESUFFIX}>=0.2:devel/cond-let@${EMACS_FLAVOR} \ - emacsql${EMACS_PKGNAMESUFFIX}>=4.3.1:databases/emacsql@${EMACS_FLAVOR} \ - ghub${EMACS_PKGNAMESUFFIX}>=5.0:devel/ghub@${EMACS_FLAVOR} \ - llama.el${EMACS_PKGNAMESUFFIX}>=1.0:devel/llama.el@${EMACS_FLAVOR} \ - magit${EMACS_PKGNAMESUFFIX}>=4.4:devel/magit@${EMACS_FLAVOR} \ - markdown-mode.el${EMACS_PKGNAMESUFFIX}>=2.7:textproc/markdown-mode.el@${EMACS_FLAVOR} \ - transient${EMACS_PKGNAMESUFFIX}>=0.10:devel/transient@${EMACS_FLAVOR} \ - yaml.el${EMACS_PKGNAMESUFFIX}>=1.2.0:textproc/yaml.el@${EMACS_FLAVOR} -RUN_DEPENDS= closql${EMACS_PKGNAMESUFFIX}>=2.3:databases/closql@${EMACS_FLAVOR} \ - compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} \ - cond-let${EMACS_PKGNAMESUFFIX}>=0.2:devel/cond-let@${EMACS_FLAVOR} \ - emacsql${EMACS_PKGNAMESUFFIX}>=4.3.1:databases/emacsql@${EMACS_FLAVOR} \ - ghub${EMACS_PKGNAMESUFFIX}>=5.0:devel/ghub@${EMACS_FLAVOR} \ - llama.el${EMACS_PKGNAMESUFFIX}>=1.0:devel/llama.el@${EMACS_FLAVOR} \ - magit${EMACS_PKGNAMESUFFIX}>=4.4:devel/magit@${EMACS_FLAVOR} \ - markdown-mode.el${EMACS_PKGNAMESUFFIX}>=2.7:textproc/markdown-mode.el@${EMACS_FLAVOR} \ - transient${EMACS_PKGNAMESUFFIX}>=0.10:devel/transient@${EMACS_FLAVOR} \ - yaml.el${EMACS_PKGNAMESUFFIX}>=1.2.0:textproc/yaml.el@${EMACS_FLAVOR} - -USES= emacs gmake makeinfo +RUN_DEPENDS= closql>=2.3:databases/closql \ + compat.el>=30.1.0.0:misc/compat.el \ + cond-let>=0.2:devel/cond-let \ + emacsql>=4.3.1:databases/emacsql \ + ghub>=5.0:devel/ghub \ + llama.el>=1.0:devel/llama.el \ + magit>=4.4:devel/magit \ + markdown-mode.el>=2.7:textproc/markdown-mode.el \ + transient>=0.10:devel/transient \ + yaml.el>=1.2.0:textproc/yaml.el + +USES= emacs:build gmake makeinfo USE_GITHUB= yes GH_ACCOUNT= magit -MAKE_ENV+= INSTALL_INFO=install-info \ - LOAD_PATH="${LOAD_PATH}" -# Parallel build fails if Emacs is built with native compilation enabled -MAKE_JOBS_UNSAFE= yes -ALL_TARGET= lisp info - -CONFLICTS_INSTALL= forge-devel* +CONFLICTS_INSTALL= forge-emacs_* NO_ARCH= yes INFO= forge PORTDOCS= CHANGELOG README.org forge.html OPTIONS_DEFINE= DOCS PDF OPTIONS_SUB= yes PDF_DESC= Build and install PDF document DOCS_BUILD_DEPENDS= gsed:textproc/gsed -DOCS_ALL_TARGET= html -DOCS_BINARY_ALIAS= sed=gsed PDF_BUILD_DEPENDS= texi2pdf:print/texinfo PDF_USES= tex PDF_USE= TEX=dvipdfmx:build -PDF_ALL_TARGET= pdf -LOAD_PATH= -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} -L \ - ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/closql -L \ - ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/compat -L \ - ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/emacsql -L \ - ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/ghub -L \ - ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/magit +do-build: + ${GMAKE} -C ${WRKSRC}/lisp autoloads + ${GMAKE} -C ${WRKSRC}/docs info + +do-build-DOCS-on: + ${GMAKE} -C ${WRKSRC}/docs html + +do-build-PDF-on: + ${GMAKE} -C ${WRKSRC}/docs pdf do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/lisp/*.el* \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/lisp/*.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/docs/*.info ${STAGEDIR}${PREFIX}/${INFO_PATH} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${WRKSRC}/README.org \ ${WRKSRC}/docs/forge.html ${STAGEDIR}${DOCSDIR} do-install-PDF-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/forge.pdf ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/forge/files/patch-docs_Makefile b/devel/forge/files/patch-docs_Makefile index aa21316d8c9d..4e664471eb49 100644 --- a/devel/forge/files/patch-docs_Makefile +++ b/devel/forge/files/patch-docs_Makefile @@ -1,11 +1,25 @@ ---- docs/Makefile.orig 2022-03-07 17:47:08 UTC +--- docs/Makefile.orig 2025-11-01 21:28:16 UTC +++ docs/Makefile -@@ -50,7 +50,7 @@ html-dir: $(PKG).texi +@@ -50,19 +50,19 @@ HTML_FIXUP_MENU = '/<\/body>/i
/dev/null + @texi2pdf $< > /dev/null PUBLISH_PATH ?= /manual/ RELEASE_PATH ?= /manual/$(VERSION)/ diff --git a/devel/forge/pkg-plist b/devel/forge/pkg-plist index 8b21eace414f..25264b51cf40 100644 --- a/devel/forge/pkg-plist +++ b/devel/forge/pkg-plist @@ -1,48 +1,25 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-autoloads.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-bitbucket.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-bitbucket.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-client.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-client.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-commands.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-commands.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-core.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-core.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-db.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-db.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-discussion.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-discussion.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-forgejo.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-forgejo.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-gitea.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-gitea.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-github.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-github.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-gitlab.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-gitlab.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-gogs.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-gogs.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-issue.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-issue.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-notify.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-notify.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-post.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-post.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-pullreq.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-pullreq.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-repo.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-repo.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-repos.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-repos.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-revnote.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-revnote.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-semi.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-semi.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-tablist.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-tablist.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-topic.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-topic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-topics.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge-topics.elc -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge.el -%%EMACS_VERSION_SITE_LISPDIR%%/forge/forge.elc +%%EMACS_SITE_LISPDIR%%/forge/forge-autoloads.el +%%EMACS_SITE_LISPDIR%%/forge/forge-bitbucket.el +%%EMACS_SITE_LISPDIR%%/forge/forge-client.el +%%EMACS_SITE_LISPDIR%%/forge/forge-commands.el +%%EMACS_SITE_LISPDIR%%/forge/forge-core.el +%%EMACS_SITE_LISPDIR%%/forge/forge-db.el +%%EMACS_SITE_LISPDIR%%/forge/forge-discussion.el +%%EMACS_SITE_LISPDIR%%/forge/forge-forgejo.el +%%EMACS_SITE_LISPDIR%%/forge/forge-gitea.el +%%EMACS_SITE_LISPDIR%%/forge/forge-github.el +%%EMACS_SITE_LISPDIR%%/forge/forge-gitlab.el +%%EMACS_SITE_LISPDIR%%/forge/forge-gogs.el +%%EMACS_SITE_LISPDIR%%/forge/forge-issue.el +%%EMACS_SITE_LISPDIR%%/forge/forge-notify.el +%%EMACS_SITE_LISPDIR%%/forge/forge-post.el +%%EMACS_SITE_LISPDIR%%/forge/forge-pullreq.el +%%EMACS_SITE_LISPDIR%%/forge/forge-repo.el +%%EMACS_SITE_LISPDIR%%/forge/forge-repos.el +%%EMACS_SITE_LISPDIR%%/forge/forge-revnote.el +%%EMACS_SITE_LISPDIR%%/forge/forge-semi.el +%%EMACS_SITE_LISPDIR%%/forge/forge-tablist.el +%%EMACS_SITE_LISPDIR%%/forge/forge-topic.el +%%EMACS_SITE_LISPDIR%%/forge/forge-topics.el +%%EMACS_SITE_LISPDIR%%/forge/forge.el %%PDF%%%%DOCSDIR%%/forge.pdf diff --git a/devel/gettext-po-mode/Makefile b/devel/gettext-po-mode/Makefile index 54f8e3d3d6cd..58ca0850ef2f 100644 --- a/devel/gettext-po-mode/Makefile +++ b/devel/gettext-po-mode/Makefile @@ -1,31 +1,31 @@ PORTNAME= gettext-po-mode -PORTREVISION= 0 +PORTREVISION= 1 -MAINTAINER= mandree@FreeBSD.org +MAINTAINER= tijl@FreeBSD.org COMMENT= GNU gettext po-mode for emacs WWW= https://www.gnu.org/software/gettext/ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/../COPYING .include "${.CURDIR}/../gettext/Makefile.common" BUILD_DEPENDS= libtextstyle>=${PORTVERSION}:devel/libtextstyle LIB_DEPENDS= libtextstyle.so:devel/libtextstyle -USES= cpe emacs:build tar:xz +USES= cpe emacs tar:xz CPE_VENDOR= gnu CPE_PRODUCT= gettext -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-emacs --without-git ac_cv_lib_rt_sched_yield=no -INSTALL_TARGET= install +NO_ARCH= yes +NO_BUILD= yes -BUILD_WRKSRC= ${WRKSRC}/emacs -INSTALL_WRKSRC= ${BUILD_WRKSRC} WRKSRC_SUBDIR= gettext-tools -PLIST_SUB= PORTVERSION=${PORTVERSION} VERSION=${PORTVERSION} +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/emacs/*.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/devel/gettext-po-mode/pkg-plist b/devel/gettext-po-mode/pkg-plist index d7fb3bd02c9d..1bdf0941daa2 100644 --- a/devel/gettext-po-mode/pkg-plist +++ b/devel/gettext-po-mode/pkg-plist @@ -1,6 +1,3 @@ %%EMACS_SITE_LISPDIR%%/po-compat.el -%%EMACS_SITE_LISPDIR%%/po-compat.elc %%EMACS_SITE_LISPDIR%%/po-mode.el -%%EMACS_SITE_LISPDIR%%/po-mode.elc %%EMACS_SITE_LISPDIR%%/start-po.el -%%EMACS_SITE_LISPDIR%%/start-po.elc diff --git a/devel/ghub/Makefile b/devel/ghub/Makefile index 26d80f6d4a40..ada73c2b0730 100644 --- a/devel/ghub/Makefile +++ b/devel/ghub/Makefile @@ -1,68 +1,66 @@ PORTNAME= ghub DISTVERSIONPREFIX= v DISTVERSION= 5.0.2 +PORTREVISION= 1 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= jrm@FreeBSD.org COMMENT= Client libraries for the APIs of various Git forges WWW= https://github.com/magit/ghub LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} \ - llama.el${EMACS_PKGNAMESUFFIX}>=1.0:devel/llama.el@${EMACS_FLAVOR} \ - treepy.el${EMACS_PKGNAMESUFFIX}>=0.1.2:devel/treepy.el@${EMACS_FLAVOR} -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} \ - llama.el${EMACS_PKGNAMESUFFIX}>=1.0:devel/llama.el@${EMACS_FLAVOR} \ - treepy.el${EMACS_PKGNAMESUFFIX}>=0.1.2:devel/treepy.el@${EMACS_FLAVOR} +BUILD_DEPENDS= compat.el>=30.1.0.0:misc/compat.el \ + llama.el>=1.0:devel/llama.el \ + treepy.el>=0.1.2:devel/treepy.el +RUN_DEPENDS= compat.el>=30.1.0.0:misc/compat.el \ + llama.el>=1.0:devel/llama.el \ + treepy.el>=0.1.2:devel/treepy.el -USES= emacs gmake makeinfo +USES= emacs:build gmake makeinfo USE_GITHUB= yes GH_ACCOUNT= magit -MAKE_ARGS= LOAD_PATH=" -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/compat -L ." +MAKE_ARGS= LOAD_PATH=" -L ${PREFIX}/${EMACS_SITE_LISPDIR} -L ${PREFIX}/${EMACS_SITE_LISPDIR}/compat -L ." MAKE_JOBS_UNSAFE= yes ALL_TARGET= lisp info -CONFLICTS_INSTALL= ghub-emacs* +CONFLICTS_INSTALL= ghub-emacs_* NO_ARCH= yes INFO= ghub PORTDOCS= CHANGELOG README.org ghub.html OPTIONS_DEFINE= DOCS PDF PDF_DESC= Build and install PDF document DOCS_BUILD_DEPENDS= gsed:textproc/gsed DOCS_ALL_TARGET= html DOCS_BINARY_ALIAS= sed=gsed PDF_BUILD_DEPENDS= texi2pdf:print/texinfo PDF_USES= tex PDF_USE= TEX=dvipdfmx:build PDF_ALL_TARGET= pdf PDF_PLIST_FILES= ${DOCSDIR}/ghub.pdf -ELISP_FILES= ghub-autoloads.el ghub-graphql.el ghub-graphql.elc \ - ghub-legacy.el ghub-legacy.elc ghub.el ghub.elc gsexp.el \ - gsexp.elc +ELISP_FILES= ghub-autoloads.el ghub-graphql.el ghub-legacy.el ghub.el gsexp.el do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} ${INSTALL_DATA} ${ELISP_FILES:C/^/${WRKSRC}\/lisp\//} \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/docs/*.info ${STAGEDIR}${PREFIX}/${INFO_PATH} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${WRKSRC}/README.org \ ${WRKSRC}/docs/ghub.html ${STAGEDIR}${DOCSDIR} do-install-PDF-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/ghub.pdf ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/ghub/pkg-plist b/devel/ghub/pkg-plist index 532712139f63..6492fec526cd 100644 --- a/devel/ghub/pkg-plist +++ b/devel/ghub/pkg-plist @@ -1,9 +1,5 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/ghub/ghub-autoloads.el -%%EMACS_VERSION_SITE_LISPDIR%%/ghub/ghub-graphql.el -%%EMACS_VERSION_SITE_LISPDIR%%/ghub/ghub-graphql.elc -%%EMACS_VERSION_SITE_LISPDIR%%/ghub/ghub-legacy.el -%%EMACS_VERSION_SITE_LISPDIR%%/ghub/ghub-legacy.elc -%%EMACS_VERSION_SITE_LISPDIR%%/ghub/ghub.el -%%EMACS_VERSION_SITE_LISPDIR%%/ghub/ghub.elc -%%EMACS_VERSION_SITE_LISPDIR%%/ghub/gsexp.el -%%EMACS_VERSION_SITE_LISPDIR%%/ghub/gsexp.elc +%%EMACS_SITE_LISPDIR%%/ghub/ghub-autoloads.el +%%EMACS_SITE_LISPDIR%%/ghub/ghub-graphql.el +%%EMACS_SITE_LISPDIR%%/ghub/ghub-legacy.el +%%EMACS_SITE_LISPDIR%%/ghub/ghub.el +%%EMACS_SITE_LISPDIR%%/ghub/gsexp.el diff --git a/devel/git-modes/Makefile b/devel/git-modes/Makefile index d056753f7d3e..2565a64437f3 100644 --- a/devel/git-modes/Makefile +++ b/devel/git-modes/Makefile @@ -1,44 +1,44 @@ PORTNAME= git-modes DISTVERSIONPREFIX= v DISTVERSION= 1.4.8 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= GNU Emacs modes for Git-related files WWW= https://github.com/magit/git-modes LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} \ +BUILD_DEPENDS= compat.el>=30.1.0.0:misc/compat.el +RUN_DEPENDS= compat.el>=30.1.0.0:misc/compat.el \ git:devel/git -USES= emacs gmake +USES= emacs:build gmake USE_GITHUB= yes GH_ACCOUNT= magit -MAKE_ENV+= LOAD_PATH="-L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/compat" -MAKE_JOBS_UNSAFE= yes +ALL_TARGET= autoloads + +CONFLICTS_INSTALL= git-modes-emacs_* NO_ARCH= yes PLIST_SUB= ELISPDIR=${ELISPDIR} PORTDOCS= README.org OPTIONS_DEFINE= DOCS -ELISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +ELISPDIR= ${EMACS_SITE_LISPDIR}/${PORTNAME} do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${ELISPDIR} - ${INSTALL_DATA} ${WRKSRC}/*.el ${WRKSRC}/*.elc \ - ${STAGEDIR}${PREFIX}/${ELISPDIR} + ${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/${ELISPDIR} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.org ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/git-modes/pkg-plist b/devel/git-modes/pkg-plist index c5e0995399a5..e379c7911436 100644 --- a/devel/git-modes/pkg-plist +++ b/devel/git-modes/pkg-plist @@ -1,9 +1,5 @@ %%ELISPDIR%%/git-modes-autoloads.el %%ELISPDIR%%/git-modes.el -%%ELISPDIR%%/git-modes.elc %%ELISPDIR%%/gitattributes-mode.el -%%ELISPDIR%%/gitattributes-mode.elc %%ELISPDIR%%/gitconfig-mode.el -%%ELISPDIR%%/gitconfig-mode.elc %%ELISPDIR%%/gitignore-mode.el -%%ELISPDIR%%/gitignore-mode.elc diff --git a/devel/go-mode.el/Makefile b/devel/go-mode.el/Makefile index fe87501d29fc..d0c8aeabbeb2 100644 --- a/devel/go-mode.el/Makefile +++ b/devel/go-mode.el/Makefile @@ -1,33 +1,32 @@ PORTNAME= go-mode.el DISTVERSIONPREFIX= v DISTVERSION= 1.6.0 PORTREVISION= 1 CATEGORIES= devel MAINTAINER= pat@patmaddox.com COMMENT= Emacs mode for the Go programming language WWW= https://github.com/dominikh/go-mode.el LICENSE= BSD3CLAUSE USES= emacs -EMACS_NO_DEPENDS= yes USE_GITHUB= yes GH_ACCOUNT= dominikh GH_PROJECT= go-mode.el NO_ARCH= yes NO_BUILD= yes OPTIONS_DEFINE= DOCS do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/llama.el/Makefile b/devel/llama.el/Makefile index ee248e849fb8..f1919fa3156f 100644 --- a/devel/llama.el/Makefile +++ b/devel/llama.el/Makefile @@ -1,45 +1,47 @@ PORTNAME= llama.el DISTVERSIONPREFIX= v DISTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= jrm@FreeBSD.org COMMENT= Compact syntax for short lambda in Emacs Lisp WWW= https://github.com/tarsius/llama LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} +BUILD_DEPENDS= compat.el>=30.1.0.0:misc/compat.el +RUN_DEPENDS= compat.el>=30.1.0.0:misc/compat.el -USES= emacs gmake +USES= emacs:build gmake USE_GITHUB= yes GH_ACCOUNT= tarsius GH_PROJECT= llama -MAKE_ARGS= LOAD_PATH=" -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/compat -L ." +MAKE_ARGS= LOAD_PATH=" -L ${PREFIX}/${EMACS_SITE_LISPDIR} -L ." MAKE_JOBS_UNSAFE= Opening input file: No such file or directory, /wrkdirs/usr/ports/devel/llama.el/work-nox/llama-0.6.0/.#llama-autoloads.el +CONFLICTS_INSTALL= llama.el-emacs_* + NO_ARCH= yes -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/llama-autoloads.el \ - ${EMACS_VERSION_SITE_LISPDIR}/llama.el \ - ${EMACS_VERSION_SITE_LISPDIR}/llama.elc + +PLIST_FILES= ${EMACS_SITE_LISPDIR}/llama-autoloads.el \ + ${EMACS_SITE_LISPDIR}/llama.el PORTDOCS= README.org OPTIONS_DEFINE= DOCS -ELISP_FILES= llama-autoloads.el llama.el llama.elc +ELISP_FILES= llama-autoloads.el llama.el do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${ELISP_FILES:C/^/${WRKSRC}\//} \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:C/^/${WRKSRC}\//} ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/lua-mode/Makefile b/devel/lua-mode/Makefile index a2e4e0233b24..95e833853f30 100644 --- a/devel/lua-mode/Makefile +++ b/devel/lua-mode/Makefile @@ -1,28 +1,29 @@ PORTNAME= lua-mode PORTVERSION= 20210802 -PORTREVISION= 11 DISTVERSIONPREFIX=v +PORTREVISION= 12 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= se@FreeBSD.org COMMENT= Minor mode for LUA WWW= https://github.com/immerrr/lua-mode LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= emacs USE_GITHUB= yes GH_ACCOUNT= immerrr +CONFLICTS_INSTALL= lua-mode-emacs_* + NO_ARCH= yes NO_BUILD= yes PLIST_FILES= ${EMACS_SITE_LISPDIR}/lua-mode.el do-install: ${INSTALL_DATA} ${WRKSRC}/lua-mode.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/ .include diff --git a/devel/magit/Makefile b/devel/magit/Makefile index 0a46f2652017..6b49471a0a26 100644 --- a/devel/magit/Makefile +++ b/devel/magit/Makefile @@ -1,74 +1,86 @@ PORTNAME= magit DISTVERSIONPREFIX= v DISTVERSION= 4.5.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= jrm@FreeBSD.org COMMENT= Interface to Git for Emacs WWW= https://magit.vc/ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} \ - cond-let${EMACS_PKGNAMESUFFIX}>=0.1:devel/cond-let@${EMACS_FLAVOR} \ +BUILD_DEPENDS= compat.el>=30.1.0.0:misc/compat.el \ + cond-let>=0.1:devel/cond-let \ git:devel/git \ - llama.el${EMACS_PKGNAMESUFFIX}>=1.0.0:devel/llama.el@${EMACS_FLAVOR} \ - transient${EMACS_PKGNAMESUFFIX}>=0.10.0:devel/transient@${EMACS_FLAVOR} \ - with-editor${EMACS_PKGNAMESUFFIX}>=3.4.4:editors/with-editor@${EMACS_FLAVOR} -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} \ - cond-let${EMACS_PKGNAMESUFFIX}>=0.1:devel/cond-let@${EMACS_FLAVOR} \ + llama.el>=1.0.0:devel/llama.el \ + transient>=0.10.0:devel/transient \ + with-editor>=3.4.4:editors/with-editor +RUN_DEPENDS= compat.el>=30.1.0.0:misc/compat.el \ + cond-let>=0.1:devel/cond-let \ git:devel/git \ - llama.el${EMACS_PKGNAMESUFFIX}>=1.0.0:devel/llama.el@${EMACS_FLAVOR} \ - transient${EMACS_PKGNAMESUFFIX}>=0.10.0:devel/transient@${EMACS_FLAVOR} \ - with-editor${EMACS_PKGNAMESUFFIX}>=3.4.4:editors/with-editor@${EMACS_FLAVOR} + llama.el>=1.0.0:devel/llama.el \ + transient>=0.10.0:devel/transient \ + with-editor>=3.4.4:editors/with-editor -USES= emacs gmake makeinfo +USES= emacs:build gmake makeinfo USE_GITHUB= yes MAKE_ENV+= docdir=${DOCSDIR} \ infodir=${PREFIX}/${INFO_PATH} \ INSTALL_INFO=install-info \ lispdir=${PREFIX}/${ELISPDIR} \ - LOAD_PATH="-L ${WRKSRC}/lisp -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/compat" \ + LOAD_PATH="-L ${WRKSRC}/lisp -L ${PREFIX}/${EMACS_SITE_LISPDIR} -L ${PREFIX}/${EMACS_SITE_LISPDIR}/compat" \ VERSION=${PORTVERSION} # Parallel build fails if Emacs is built with native compilation enabled MAKE_JOBS_UNSAFE= yes -ALL_TARGET= lisp info -INSTALL_TARGET= install-lisp install-info +#ALL_TARGET= lisp info +#INSTALL_TARGET= install-lisp install-info -CONFLICTS_INSTALL= magit-devel-emacs* +CONFLICTS_INSTALL= magit-emacs_* NO_ARCH= yes INFO= magit magit-section PLIST_SUB+= ELISPDIR=${ELISPDIR} PORTDOCS= *.html *.md RelNotes/* OPTIONS_DEFINE= DOCS PDF OPTIONS_SUB= yes PDF_DESC= Build and install PDF document DOCS_BUILD_DEPENDS= gsed:textproc/gsed DOCS_ALL_TARGET= html DOCS_BINARY_ALIAS= sed=gsed PDF_BUILD_DEPENDS= texi2pdf:print/texinfo PDF_USES= tex PDF_USE= TEX=dvipdfmx:build PDF_ALL_TARGET= pdf -ELISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +ELISPDIR= ${EMACS_SITE_LISPDIR}/${PORTNAME} + +do-build: + ${GMAKE} -C ${WRKSRC}/lisp autoloads versionlib + ${GMAKE} -C ${WRKSRC}/docs info + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${ELISPDIR} + ${INSTALL_DATA} ${WRKSRC}/lisp/*.el \ + ${STAGEDIR}${PREFIX}/${ELISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/share/info + ${INSTALL_DATA} ${WRKSRC}/docs/magit.info \ + ${WRKSRC}/docs/magit-section.info \ + ${STAGEDIR}${PREFIX}/share/info do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR}/RelNotes ${INSTALL_DATA} ${WRKSRC}/docs/*.md ${STAGEDIR}${DOCSDIR} ${COPYTREE_SHARE} ${WRKSRC}/docs/RelNotes ${STAGEDIR}${DOCSDIR}/RelNotes do-install-PDF-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/*.pdf ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/magit/pkg-message b/devel/magit/pkg-message deleted file mode 100644 index c9bce0ac8361..000000000000 --- a/devel/magit/pkg-message +++ /dev/null @@ -1,9 +0,0 @@ -[ -{ type: install - message: < diff --git a/devel/p5-Sepia/Makefile b/devel/p5-Sepia/Makefile index 78878c136ff8..3f9be7ac8b4b 100644 --- a/devel/p5-Sepia/Makefile +++ b/devel/p5-Sepia/Makefile @@ -1,32 +1,35 @@ PORTNAME= Sepia PORTVERSION= 0.992 -PORTREVISION= 30 +PORTREVISION= 31 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ashish@FreeBSD.org COMMENT= Simple Emacs-Perl Interface WWW= https://metacpan.org/release/Sepia LICENSE= ART10 GPLv1+ LICENSE_COMB= dual BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Devel-Size>=0:devel/p5-Devel-Size \ p5-IO-Stringy>=0:devel/p5-IO-Stringy \ p5-PadWalker>=0:devel/p5-PadWalker \ p5-Devel-LexAlias>=0:devel/p5-Devel-LexAlias \ p5-libwww>=0:www/p5-libwww \ p5-Module-Info>=0:devel/p5-Module-Info \ p5-BSD-Resource>=0:devel/p5-BSD-Resource USES= emacs gmake makeinfo perl5 USE_PERL5= configure -CONFIGURE_ARGS+= --emacs ${EMACS_CMD} --lisp ${PREFIX}/${EMACS_SITE_LISPDIR}/sepia --info ${PREFIX}/${INFO_PATH} +CONFIGURE_ARGS+= --lisp ${PREFIX}/${EMACS_SITE_LISPDIR}/sepia --info ${PREFIX}/${INFO_PATH} + +CONFLICTS_INSTALL= p5-Sepia-emacs_* + +NO_ARCH= yes INFO= sepia .include diff --git a/devel/p5-Sepia/pkg-plist b/devel/p5-Sepia/pkg-plist index 9f8fb54402f7..cacb1f2956b7 100644 --- a/devel/p5-Sepia/pkg-plist +++ b/devel/p5-Sepia/pkg-plist @@ -1,18 +1,15 @@ bin/sepl %%PERL5_MAN1%%/sepl.1.gz %%PERL5_MAN3%%/Sepia.3.gz %%PERL5_MAN3%%/Sepia::Xref.3.gz %%SITE_PERL%%/Sepia/Debug.pm %%SITE_PERL%%/Sepia/CPAN.pm %%SITE_PERL%%/Sepia/Xref.pm %%SITE_PERL%%/Sepia/ReadLine.pm %%SITE_PERL%%/Sepia.pm %%EMACS_SITE_LISPDIR%%/sepia/sepia-cpan.el %%EMACS_SITE_LISPDIR%%/sepia/sepia-ido.el %%EMACS_SITE_LISPDIR%%/sepia/sepia-snippet.el %%EMACS_SITE_LISPDIR%%/sepia/sepia-tree.el %%EMACS_SITE_LISPDIR%%/sepia/sepia-w3m.el %%EMACS_SITE_LISPDIR%%/sepia/sepia.el -%%EMACS_SITE_LISPDIR%%/sepia/sepia-cpan.elc -%%EMACS_SITE_LISPDIR%%/sepia/sepia-ido.elc -%%EMACS_SITE_LISPDIR%%/sepia/sepia-tree.elc diff --git a/devel/pkg-info.el/Makefile b/devel/pkg-info.el/Makefile index 0788e820c035..71d16744cbf2 100644 --- a/devel/pkg-info.el/Makefile +++ b/devel/pkg-info.el/Makefile @@ -1,25 +1,26 @@ PORTNAME= pkg-info.el PORTVERSION= 0.6 -PORTREVISION= 19 +PORTREVISION= 20 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= hrs@FreeBSD.org COMMENT= Provide information about Emacs packages WWW= https://github.com/lunaryorn/pkg-info.el LICENSE= GPLv3 USES= emacs USE_GITHUB= yes GH_ACCOUNT= lunaryorn +CONFLICTS_INSTALL= pkg-info.el-emacs_* + NO_ARCH= yes NO_BUILD= yes PLIST_FILES= ${EMACS_SITE_LISPDIR}/pkg-info.el do-install: (cd ${WRKSRC} && ${INSTALL_DATA} ${PLIST_FILES:M*.el:T} \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}) .include diff --git a/devel/psvn/Makefile b/devel/psvn/Makefile index f6ab01bc3850..304f38738f6a 100644 --- a/devel/psvn/Makefile +++ b/devel/psvn/Makefile @@ -1,41 +1,41 @@ PORTNAME= psvn PORTVERSION= 20150720.214200 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= devel elisp MASTER_SITES= http://www.xsteve.at/prg/emacs/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= psvn.el EXTRACT_SUFX= # empty MAINTAINER= ports@FreeBSD.org COMMENT= Subversion interface for Emacs WWW= http://www.xsteve.at/prg/emacs/ LICENSE= GPLv2+ .if ${WITH_SUBVERSION_VER:U} == LTS RUN_DEPENDS= svn:devel/subversion-lts .else RUN_DEPENDS= svn:devel/subversion .endif USES= emacs -NO_WRKSUBDIR= yes +CONFLICTS_INSTALL= psvn-emacs_* + EXTRACT_CMD= ${CP} EXTRACT_BEFORE_ARGS= # empty EXTRACT_AFTER_ARGS= ${WRKSRC}/psvn.el +NO_ARCH= yes +NO_BUILD= yes -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}/psvn.el \ - ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}/psvn.elc +NO_WRKSUBDIR= yes -ELISPDIR= ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +PLIST_FILES= ${EMACS_SITE_LISPDIR}/${PORTNAME}/psvn.el -do-build: - (cd ${WRKSRC} && ${EMACS_CMD} -batch -q -f batch-byte-compile psvn.el) +ELISPDIR= ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} do-install: @${MKDIR} ${ELISPDIR} ${INSTALL_DATA} ${WRKSRC}/psvn.* ${ELISPDIR} .include diff --git a/devel/psvn/pkg-message b/devel/psvn/pkg-message index 648032ace712..4e1b41366ecf 100644 --- a/devel/psvn/pkg-message +++ b/devel/psvn/pkg-message @@ -1,11 +1,11 @@ [ { type: install message: < diff --git a/devel/tablist/Makefile b/devel/tablist/Makefile index 783af7ff41c7..94e3d18f9bfd 100644 --- a/devel/tablist/Makefile +++ b/devel/tablist/Makefile @@ -1,34 +1,31 @@ PORTNAME= tablist DISTVERSIONPREFIX= v DISTVERSION= 1.0-13 -PORTREVISION= 11 DISTVERSIONSUFFIX= -gfaab7a0 +PORTREVISION= 12 CATEGORIES= devel elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= jrm@FreeBSD.org COMMENT= Emacs package for extended tabulated-list-mode WWW= https://github.com/politza/tablist LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING USES= emacs USE_GITHUB= yes GH_ACCOUNT= politza -NO_ARCH= yes -PLIST_FILES= ${EMACS_SITE_LISPDIR}/tablist.el \ - ${EMACS_SITE_LISPDIR}/tablist.elc \ - ${EMACS_SITE_LISPDIR}/tablist-filter.el \ - ${EMACS_SITE_LISPDIR}/tablist-filter.elc +CONFLICTS_INSTALL= tablist-emacs_* -do-build: - ${EMACS_CMD} -Q --batch -L ${WRKSRC} -f batch-byte-compile ${WRKSRC}/*.el +NO_ARCH= yes +NO_BUILD= yes +PLIST_FILES= ${EMACS_SITE_LISPDIR}/tablist-filter.el \ + ${EMACS_SITE_LISPDIR}/tablist.el do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/*.el ${WRKSRC}/*.elc \ - ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/devel/transient/Makefile b/devel/transient/Makefile index 06acb3c7cfd6..a99162e78909 100644 --- a/devel/transient/Makefile +++ b/devel/transient/Makefile @@ -1,76 +1,77 @@ PORTNAME= transient DISTVERSIONPREFIX= v DISTVERSION= 0.12.0 +PORTREVISION= 1 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= freebsd@dev.thsi.be COMMENT= Emacs key and popup interface for complex keybindings WWW= https://github.com/magit/transient LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -_BR_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} \ - cond-let${EMACS_PKGNAMESUFFIX}>=0.2:devel/cond-let@${EMACS_FLAVOR} +_BR_DEPENDS= compat.el>=30.1.0.0:misc/compat.el \ + cond-let>=0.2:devel/cond-let BUILD_DEPENDS= ${_BR_DEPENDS} RUN_DEPENDS= ${_BR_DEPENDS} -USES= emacs gmake +USES= emacs:build gmake USE_GITHUB= yes GH_ACCOUNT= magit -MAKE_ENV= LOAD_PATH="-L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/compat \ - -L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}" +MAKE_ENV= LOAD_PATH="-L ${PREFIX}/${EMACS_SITE_LISPDIR}/compat \ + -L ${PREFIX}/${EMACS_SITE_LISPDIR}" MAKE_JOBS_UNSAFE= yes ALL_TARGET= lisp +CONFLICTS_INSTALL= transient-emacs_* + NO_ARCH= yes -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/transient-autoloads.el \ - ${EMACS_VERSION_SITE_LISPDIR}/transient.el \ - ${EMACS_VERSION_SITE_LISPDIR}/transient.elc +PLIST_FILES= ${EMACS_SITE_LISPDIR}/transient-autoloads.el \ + ${EMACS_SITE_LISPDIR}/transient.el PORTDOCS= CHANGELOG README.org transient.html OPTIONS_DEFINE= DOCS INFO PDF OPTIONS_DEFAULT= INFO PDF_DESC= Build and install PDF document DOCS_BUILD_DEPENDS= gsed:textproc/gsed DOCS_USES= makeinfo DOCS_ALL_TARGET= html DOCS_BINARY_ALIAS= sed=gsed INFO_BUILD_DEPENDS= gsed:textproc/gsed INFO_ALL_TARGET= info INFO_BINARY_ALIAS= sed=gsed INFO_INFO= transient PDF_BUILD_DEPENDS= gsed:textproc/gsed \ texi2pdf:print/texinfo PDF_USES= tex PDF_USE= TEX=dvipdfmx:build PDF_ALL_TARGET= pdf PDF_BINARY_ALIAS= sed=gsed PDF_PLIST_FILES= ${DOCSDIR}/transient.pdf do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/lisp/*.el* \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/lisp/*.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.org ${WRKSRC}/CHANGELOG \ ${WRKSRC}/docs/transient.html ${STAGEDIR}${DOCSDIR} do-install-INFO-on: ${INSTALL_DATA} ${WRKSRC}/docs/*.info \ ${STAGEDIR}${PREFIX}/${INFO_PATH} do-install-PDF-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/transient.pdf ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/treepy.el/Makefile b/devel/treepy.el/Makefile index accd7e3ddd27..c84934ffc5f7 100644 --- a/devel/treepy.el/Makefile +++ b/devel/treepy.el/Makefile @@ -1,39 +1,37 @@ PORTNAME= treepy.el DISTVERSION= 0.1.2 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= devel elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Generic tree traversing tools for Emacs Lisp WWW= https://github.com/volrath/treepy.el LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE USES= emacs USE_GITHUB= yes GH_ACCOUNT= volrath -NO_ARCH= yes +CONFLICTS_INSTALL= treepy.el-emacs_* -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/treepy.el \ - ${EMACS_VERSION_SITE_LISPDIR}/treepy.elc +NO_ARCH= yes +NO_BUILD= yes -OPTIONS_DEFINE= DOCS +PLIST_FILES= ${EMACS_SITE_LISPDIR}/treepy.el PORTDOCS= README.md -do-build: - (cd ${WRKSRC} ; ${EMACS_CMD} -batch -q -f batch-byte-compile treepy.el) +OPTIONS_DEFINE= DOCS do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/treepy.el* \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/treepy.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/editors/apel/Makefile b/editors/apel/Makefile index d5599fa5b72e..bcc6350e9651 100644 --- a/editors/apel/Makefile +++ b/editors/apel/Makefile @@ -1,34 +1,37 @@ PORTNAME= apel PORTVERSION= 10.8.${SNAPDATE} +PORTREVISION= 2 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= nobutaka@FreeBSD.org COMMENT= Portable Emacs Library WWW= https://github.com/wanderlust/apel LICENSE= GPLv2 -USES= emacs +USES= emacs:build USE_GITHUB= yes GH_ACCOUNT= wanderlust GH_TAGNAME= 2383abf SNAPDATE= 20250531 -NO_ARCH= yes -ALL_TARGET= elc -MAKE_ARGS+= PREFIX="${STAGEDIR}${PREFIX}" \ - LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}" \ - VERSION_SPECIFIC_LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}" +CONFLICTS_INSTALL= apel-emacs_* + +NO_ARCH= yes +NO_BUILD= yes OPTIONS_DEFINE= DOCS +MAKE_ARGS+= PREFIX="${STAGEDIR}${PREFIX}" \ + LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}" \ + VERSION_SPECIFIC_LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}" + post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} @(cd ${WRKSRC} ; \ for i in README.* ; do \ ${INSTALL_DATA} $${i} ${STAGEDIR}${DOCSDIR} ; \ done) .include diff --git a/editors/apel/files/patch-Makefile b/editors/apel/files/patch-Makefile new file mode 100644 index 000000000000..765e8bac4d6b --- /dev/null +++ b/editors/apel/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig 2026-03-23 15:52:37 UTC ++++ Makefile +@@ -31,7 +31,7 @@ elc: + $(EMACS) $(FLAGS) -f compile-apel \ + $(PREFIX) $(LISPDIR) $(VERSION_SPECIFIC_LISPDIR) + +-install: elc ++install: + $(EMACS) $(FLAGS) -f install-apel \ + $(PREFIX) $(LISPDIR) $(VERSION_SPECIFIC_LISPDIR) # $(MAKE) + diff --git a/editors/apel/pkg-plist b/editors/apel/pkg-plist index 9ae7d1865fc5..4e33cc5ada64 100644 --- a/editors/apel/pkg-plist +++ b/editors/apel/pkg-plist @@ -1,58 +1,30 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/apel/alist.el -%%EMACS_VERSION_SITE_LISPDIR%%/apel/alist.elc -%%EMACS_VERSION_SITE_LISPDIR%%/apel/calist.el -%%EMACS_VERSION_SITE_LISPDIR%%/apel/calist.elc -%%EMACS_VERSION_SITE_LISPDIR%%/apel/filename.el -%%EMACS_VERSION_SITE_LISPDIR%%/apel/filename.elc -%%EMACS_VERSION_SITE_LISPDIR%%/apel/install.el -%%EMACS_VERSION_SITE_LISPDIR%%/apel/install.elc -%%EMACS_VERSION_SITE_LISPDIR%%/apel/path-util.el -%%EMACS_VERSION_SITE_LISPDIR%%/apel/path-util.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/apel-ver.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/apel-ver.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/broken.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/broken.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/emu.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/emu.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/inv-23.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/inv-23.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/invisible.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/invisible.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/mcharset.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/mcharset.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/mcs-20.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/mcs-20.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/mcs-e20.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/mcs-e20.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/mule-caesar.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/mule-caesar.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pccl.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pccl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pccl-20.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pccl-20.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pces.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pces.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pces-20.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pces-20.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pces-e20.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pces-e20.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pcustom.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pcustom.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/poe.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/poe.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/poem.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/poem.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/poem-e20.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/poem-e20.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/poem-e20_3.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/poem-e20_3.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/product.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/product.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pym.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/pym.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/richtext.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/richtext.elc -%%EMACS_VERSION_SITE_LISPDIR%%/emu/static.el -%%EMACS_VERSION_SITE_LISPDIR%%/emu/static.elc +%%EMACS_SITE_LISPDIR%%/apel/alist.el +%%EMACS_SITE_LISPDIR%%/apel/calist.el +%%EMACS_SITE_LISPDIR%%/apel/filename.el +%%EMACS_SITE_LISPDIR%%/apel/install.el +%%EMACS_SITE_LISPDIR%%/apel/path-util.el +%%EMACS_SITE_LISPDIR%%/emu/apel-ver.el +%%EMACS_SITE_LISPDIR%%/emu/broken.el +%%EMACS_SITE_LISPDIR%%/emu/emu.el +%%EMACS_SITE_LISPDIR%%/emu/inv-23.el +%%EMACS_SITE_LISPDIR%%/emu/invisible.el +%%EMACS_SITE_LISPDIR%%/emu/mcharset.el +%%EMACS_SITE_LISPDIR%%/emu/mcs-20.el +%%EMACS_SITE_LISPDIR%%/emu/mcs-e20.el +%%EMACS_SITE_LISPDIR%%/emu/mule-caesar.el +%%EMACS_SITE_LISPDIR%%/emu/pccl.el +%%EMACS_SITE_LISPDIR%%/emu/pccl-20.el +%%EMACS_SITE_LISPDIR%%/emu/pces.el +%%EMACS_SITE_LISPDIR%%/emu/pces-20.el +%%EMACS_SITE_LISPDIR%%/emu/pces-e20.el +%%EMACS_SITE_LISPDIR%%/emu/pcustom.el +%%EMACS_SITE_LISPDIR%%/emu/poe.el +%%EMACS_SITE_LISPDIR%%/emu/poem.el +%%EMACS_SITE_LISPDIR%%/emu/poem-e20.el +%%EMACS_SITE_LISPDIR%%/emu/poem-e20_3.el +%%EMACS_SITE_LISPDIR%%/emu/product.el +%%EMACS_SITE_LISPDIR%%/emu/pym.el +%%EMACS_SITE_LISPDIR%%/emu/richtext.el +%%EMACS_SITE_LISPDIR%%/emu/static.el %%PORTDOCS%%%%DOCSDIR%%/README.en %%PORTDOCS%%%%DOCSDIR%%/README.ja diff --git a/editors/consult.el/Makefile b/editors/consult.el/Makefile index 535dce7c46df..7b1ea38df7dc 100644 --- a/editors/consult.el/Makefile +++ b/editors/consult.el/Makefile @@ -1,39 +1,38 @@ PORTNAME= consult.el DISTVERSION= 2.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= pat@patmaddox.com COMMENT= Consulting completing-read WWW= https://github.com/minad/consult LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} +RUN_DEPENDS= compat.el>=30.1.0.0:misc/compat.el USES= emacs USE_GITHUB= yes GH_ACCOUNT= minad GH_PROJECT= consult +CONFLICTS_INSTALL= consult.el-emacs_* + NO_ARCH= yes +NO_BUILD= yes ELISP_FILES= ${WRKSRC}/*.el OPTIONS_DEFINE= DOCS -do-build: - ${EMACS_CMD} -q --batch -L ${WRKSRC} -f batch-byte-compile ${ELISP_FILES} - do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/consult - ${INSTALL_DATA} ${ELISP_FILES} ${ELISP_FILES:S/.el$$/.elc/} \ + ${INSTALL_DATA} ${ELISP_FILES} \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/consult post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.org ${STAGEDIR}${DOCSDIR} .include diff --git a/editors/consult.el/pkg-plist b/editors/consult.el/pkg-plist index f113d6d2e56c..2842ca03f04e 100644 --- a/editors/consult.el/pkg-plist +++ b/editors/consult.el/pkg-plist @@ -1,19 +1,10 @@ %%EMACS_SITE_LISPDIR%%/consult/consult-compile.el -%%EMACS_SITE_LISPDIR%%/consult/consult-compile.elc %%EMACS_SITE_LISPDIR%%/consult/consult-flymake.el -%%EMACS_SITE_LISPDIR%%/consult/consult-flymake.elc %%EMACS_SITE_LISPDIR%%/consult/consult-imenu.el -%%EMACS_SITE_LISPDIR%%/consult/consult-imenu.elc %%EMACS_SITE_LISPDIR%%/consult/consult-info.el -%%EMACS_SITE_LISPDIR%%/consult/consult-info.elc %%EMACS_SITE_LISPDIR%%/consult/consult-kmacro.el -%%EMACS_SITE_LISPDIR%%/consult/consult-kmacro.elc %%EMACS_SITE_LISPDIR%%/consult/consult-org.el -%%EMACS_SITE_LISPDIR%%/consult/consult-org.elc %%EMACS_SITE_LISPDIR%%/consult/consult-register.el -%%EMACS_SITE_LISPDIR%%/consult/consult-register.elc %%EMACS_SITE_LISPDIR%%/consult/consult-xref.el -%%EMACS_SITE_LISPDIR%%/consult/consult-xref.elc %%EMACS_SITE_LISPDIR%%/consult/consult.el -%%EMACS_SITE_LISPDIR%%/consult/consult.elc %%PORTDOCS%%%%DOCSDIR%%/README.org diff --git a/editors/emacs-devel/Makefile b/editors/emacs-devel/Makefile index 61b10a9584d8..ff4c80ee2efe 100644 --- a/editors/emacs-devel/Makefile +++ b/editors/emacs-devel/Makefile @@ -1,293 +1,293 @@ PORTNAME= emacs DISTVERSION= 31.0.50.20260402 PORTREVISION= 1 PORTEPOCH= 3 CATEGORIES= editors PKGNAMESUFFIX= -devel MAINTAINER= emacs@FreeBSD.org COMMENT= GNU editing macros ${COMMENT_${FLAVOR}} WWW= https://www.gnu.org/software/emacs/ COMMENT_nox= (No X flavor) LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgmp.so:math/gmp FLAVORS= full nox full_CONFLICTS_INSTALL= emacs-devel-nox nox_PKGNAMESUFFIX= -devel-nox nox_CONFLICTS_INSTALL= emacs-devel USES= autoreconf:build cpe gmake localbase:ldflags makeinfo ncurses \ pkgconfig CPE_VENDOR= gnu USE_GITHUB= yes GH_ACCOUNT= emacs-mirror GH_TAGNAME= faf19328757 GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-build-details \ --localstatedir=/var \ --without-gconf \ --without-libsystemd \ --without-selinux .if ${FLAVOR:U} == nox CONFIGURE_ARGS+= --with-sound=no \ --with-x-toolkit=no \ --without-cairo \ --without-dbus \ --without-gconf \ --without-gif \ --without-gsettings \ --without-imagemagick \ --without-jpeg \ --without-lcms2 \ --without-libotf \ --without-m17n-flt \ --without-pgtk \ --without-png \ --without-rsvg \ --without-tiff \ --without-toolkit-scroll-bars \ --without-webp \ --without-x \ --without-xim \ --without-xpm \ --without-xwidgets .else CONFIGURE_ARGS+= --with-x .endif # See r468320 to determine if/when the next line can be removed CONFIGURE_ENV= ac_cv_header_sys_sysinfo_h=no CONFLICTS_INSTALL= emacs emacs-canna emacs-nox -SUB_FILES= pkg-message sources.el +SUB_FILES= default.el pkg-message site-start.el SUB_LIST= EMACS_VER=${DISTVERSION:R} \ NATIVECOMP_COMMENT_END=${NATIVECOMP_COMMENT_END} \ NATIVECOMP_COMMENT_START=${NATIVECOMP_COMMENT_START} INFO= auth autotype bovine calc ccmode cl dbus dired-x ebrowse ede \ ediff edt efaq eglot eieio eintr elisp emacs emacs-gnutls \ emacs-mime epa erc ert eshell eudc eww flymake forms gnus \ htmlfontify idlwave ido info mairix-el message mh-e \ modus-themes newsticker nxml-mode octave-mode org pcl-cvs pgg \ rcirc reftex remember sasl sc semantic ses sieve smtpmail \ speedbar srecode todo-mode tramp transient url use-package \ vhdl-mode viper vtable widget wisent woman INFO_PATH= ${DATADIR_REL}/info PLIST_SUB= EMACS_VER=${DISTVERSION:R} \ GNU_HOST=${CONFIGURE_TARGET} OPTIONS_DEFINE= ACL DBUS GNUTLS GSETTINGS HARFBUZZ LCMS2 M17N \ MAILUTILS MODULES NATIVECOMP OTF PGTK \ SCROLLBARS SOURCES SQLITE3 THREADS TREESITTER \ XFT XIM XML XWIDGETS OPTIONS_DEFAULT= ACL CAIRO DBUS GIF GNUTLS GSETTINGS GTK3 \ HARFBUZZ JPEG KQUEUE LCMS2 MAILUTILS MODULES \ NATIVECOMP OSS PGTK PNG SCROLLBARS SOURCES \ SQLITE3 SVG THREADS TIFF TREESITTER WEBP XML -OPTIONS_EXCLUDE_powerpc= NATIVECOMP -OPTIONS_EXCLUDE_powerpc64= NATIVECOMP -OPTIONS_EXCLUDE_powerpc64le= NATIVECOMP OPTIONS_GROUP= GRAPHICS OPTIONS_GROUP_GRAPHICS= CAIRO GIF JPEG MAGICK PNG SVG TIFF WEBP XPM OPTIONS_RADIO= FILENOTIFY SOUND X11TOOLKIT OPTIONS_RADIO_FILENOTIFY= GFILE KQUEUE OPTIONS_RADIO_SOUND= ALSA OSS OPTIONS_RADIO_X11TOOLKIT= GTK2 GTK3 MOTIF XAW XAW3D .if ${FLAVOR:U} == nox OPTIONS_EXCLUDE= ALSA CAIRO DBUS GFILE GIF GSETTINGS GTK2 GTK3 \ HARFBUZZ JPEG LCMS2 M17N MAGICK MOTIF OSS OTF \ PGTK PNG SCROLLBARS SVG TIFF WEBP XAW XAW3D XFT \ XIM XPM XWIDGETS .endif OPTIONS_EXCLUDE_armv7= NATIVECOMP +OPTIONS_EXCLUDE_powerpc= NATIVECOMP +OPTIONS_EXCLUDE_powerpc64= NATIVECOMP +OPTIONS_EXCLUDE_powerpc64le= NATIVECOMP OPTIONS_SUB= YES ACL_DESC= Access control list support CAIRO_DESC= Cairo graphics library support [implies PNG, prevents XFT] FILENOTIFY_DESC= File notification support GFILE_DESC= File notification via gfile GRAPHICS_DESC= Graphics support GSETTINGS_DESC= GSettings API for application settings HARFBUZZ_DESC= HarfBuzz for text shaping KQUEUE_DESC= File notification via kqueue M17N_DESC= M17N support for text-shaping [implies XFT] MAGICK_DESC= ImageMagick image processing support (deprecated) MAILUTILS_DESC= Mail framework via GNU Mailutils MODULES_DESC= Dynamic modules support NATIVECOMP_DESC= Emacs Lisp native compiler support OTF_DESC= Opentype fonts PGTK_DESC= Pure GTK GUI [implies CAIRO, GTK3] SCROLLBARS_DESC= Toolkit scroll-bars SOURCES_DESC= Install sources SVG_DESC= Scalable vector graphics support [implies PNG] TREESITTER_DESC= tree-sitter support X11TOOLKIT_DESC= X11 toolkit XAW3D_DESC= Athena3D widgets XAW_DESC= Athena widgets XIM_DESC= X Input Method XWIDGETS_DESC= Experimental GTK widgets [implies GTK3] ACL_CONFIGURE_ENABLE= acl ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_CONFIGURE_ON= --with-sound=alsa CAIRO_IMPLIES= PNG CAIRO_PREVENTS= XFT CAIRO_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 CAIRO_USE= GNOME=cairo CAIRO_CONFIGURE_WITH= cairo DBUS_LIB_DEPENDS= libdbus-1.so:devel/dbus DBUS_CONFIGURE_WITH= dbus GFILE_USE= GNOME=glib20 GFILE_CONFIGURE_ON= --with-file-notification=gfile GIF_LIB_DEPENDS= libgif.so:graphics/giflib GIF_CONFIGURE_WITH= gif GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls GNUTLS_CONFIGURE_WITH= gnutls GSETTINGS_USE= GNOME=glib20 GSETTINGS_CONFIGURE_WITH= gsettings GTK2_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 GTK2_USE= GNOME=cairo,gtk20 GTK2_CONFIGURE_ON= --with-x-toolkit=gtk2 GTK3_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 GTK3_USE= GNOME=cairo,gtk30 GTK3_CONFIGURE_ON= --with-x-toolkit=gtk3 HARFBUZZ_LIB_DEPENDS= libharfbuzz.so:print/harfbuzz HARFBUZZ_CONFIGURE_WITH= harfbuzz JPEG_USES= jpeg JPEG_CONFIGURE_WITH= jpeg KQUEUE_CONFIGURE_ON= --with-file-notification=kqueue LCMS2_LIB_DEPENDS= liblcms2.so:graphics/lcms2 LCMS2_CONFIGURE_WITH= lcms2 #LTO_CONFIGURE_ON= --enable-link-time-optimization M17N_IMPLIES= XFT M17N_LIB_DEPENDS= libm17n.so:devel/m17n-lib M17N_CONFIGURE_WITH= m17n-flt MAGICK_USES= magick:7 MAGICK_CONFIGURE_WITH= imagemagick MAILUTILS_RUN_DEPENDS= mailutils:mail/mailutils MAILUTILS_CONFIGURE_WITH= mailutils MAILUTILS_CONFIGURE_ENV_OFF= ac_cv_lib_lockfile_maillock=no \ ac_cv_prog_liblockfile=no MODULES_CONFIGURE_WITH= modules MOTIF_USES= motif MOTIF_CONFIGURE_ON= --with-x-toolkit=motif NATIVECOMP_USE= GCC=13 NATIVECOMP_CONFIGURE_WITH= native-compilation=aot OSS_CONFIGURE_ON= --with-sound=oss OTF_LIB_DEPENDS= libotf.so:print/libotf OTF_CONFIGURE_WITH= libotf PGTK_IMPLIES= CAIRO GTK3 SCROLLBARS PGTK_PREVENTS= M17N XFT XPM PGTK_CATEGORIES= wayland PGTK_CONFIGURE_WITH= pgtk PNG_LIB_DEPENDS= libpng16.so:graphics/png PNG_CONFIGURE_WITH= png SCROLLBARS_CONFIGURE_WITH= toolkit-scroll-bars SQLITE3_USES= sqlite:3 SQLITE3_CONFIGURE_WITH= sqlite3 SVG_IMPLIES= PNG SVG_USE= GNOME=cairo,librsvg2 SVG_CONFIGURE_WITH= rsvg THREADS_CONFIGURE_WITH= threads TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff TIFF_CONFIGURE_WITH= tiff TREESITTER_IMPLIES= MODULES TREESITTER_LIB_DEPENDS= libtree-sitter.so:devel/tree-sitter TREESITTER_CONFIGURE_WITH= tree-sitter WEBP_LIB_DEPENDS= libwebpdemux.so:graphics/webp WEBP_CONFIGURE_WITH= webp XAW3D_LIB_DEPENDS= libXaw3d.so:x11-toolkits/libXaw3d XAW3D_CONFIGURE_ON= --with-x-toolkit=athena XAW_USE= XORG=xaw XAW_CONFIGURE_ON= --with-x-toolkit=athena \ --without-xaw3d XFT_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 XFT_USE= XORG=xft,xrender XFT_CONFIGURE_WITH= xft XIM_CONFIGURE_WITH= xim # keep XML_USES=gnome, because nox flavor does not have USES=gnome XML_USES= gnome XML_USE= GNOME=libxml2 XML_CONFIGURE_WITH= xml2 XPM_USE= XORG=xpm XPM_CONFIGURE_WITH= xpm XWIDGETS_IMPLIES= GTK3 XWIDGETS_LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \ libwebkit2gtk-4.0.so:www/webkit2-gtk@40 XWIDGETS_USE= XORG=xcomposite XWIDGETS_CONFIGURE_WITH= xwidgets .include .if ${PORT_OPTIONS:MNATIVECOMP} NATIVECOMP_COMMENT_END= NATIVECOMP_COMMENT_START= .else NATIVECOMP_COMMENT_END= '*/' NATIVECOMP_COMMENT_START= '/*' .endif .if ${FLAVOR:U} != nox USES+= desktop-file-utils gnome .if !${PORT_OPTIONS:MPGTK} USES+= xorg USE_XORG+= ice sm x11 xcb xcomposite xext xfixes xi xinerama xmu xrandr \ xrender xt .endif .endif .if !${PORT_OPTIONS:MGTK2} && !${PORT_OPTIONS:MGTK3} && !${PORT_OPTIONS:MXAW} && \ !${PORT_OPTIONS:MXAW3D} CONFIGURE_ARGS+= --with-x-toolkit=no .endif # Schema generation is dependent on both PGTK, and GSETTINGS options # as per https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=183936ee8e5 .if ${PORT_OPTIONS:MGSETTINGS} && ${PORT_OPTIONS:MPGTK} GLIB_SCHEMAS+= org.gnu.emacs.defaults.gschema.xml .endif .if ${FLAVOR} == nox # With a desktop entry stage-qa will give a warning about requiring # desktop-file-utils and portlint -C will give a warning about INSTALLS_ICONS, # but don't pull in those dependencies with the nox flavor. post-patch: @${REINPLACE_CMD} -e 's/^Terminal=.*$$/Terminal=true/' ${WRKSRC}/etc/emacs.desktop .endif pre-configure: @(cd ${WRKSRC} && ./autogen.sh all) @${REINPLACE_CMD} \ -e 's/(ignore-errors (emacs-repository-get-version))/"${GH_TAGNAME}"/' \ -e 's/(ignore-errors (emacs-repository-get-branch))/"master"/' \ ${WRKSRC}/lisp/loadup.el post-install: @${RM} -r ${STAGEDIR}${PREFIX}/lib/systemd @(cd ${STAGEDIR}${PREFIX} && ${FIND} libexec/emacs/${DISTVERSION:R}/${CONFIGURE_TARGET}/ -name emacs-*.pdmp >> ${TMPPLIST}) + ${INSTALL_DATA} ${WRKDIR}/default.el ${WRKDIR}/site-start.el ${STAGEDIR}${DATADIR}/site-lisp/ post-install-MAILUTILS-on: ${LN} -sf ${PREFIX}/bin/movemail \ ${STAGEDIR}${PREFIX}/libexec/emacs/${DISTVERSION:R}/${CONFIGURE_TARGET} # Natively compiled elisp files names include build checksum information, so add # these files to the plist after the build. post-install-NATIVECOMP-on: @(cd ${WRKSRC} && ${FIND} native-lisp -type f | ${SED} -e 's,^,lib/emacs/${DISTVERSION:R}/,') >> ${TMPPLIST} @${FIND} ${STAGEDIR}${PREFIX}/lib/emacs/${DISTVERSION:R}/native-lisp/ -name '*.eln*' -exec ${STRIP_CMD} {} + post-install-SOURCES-on: @${MKDIR} ${STAGEDIR}${DATADIR}/${DISTVERSION:R}/src ${INSTALL_DATA} ${WRKSRC}/src/*.[ch] ${STAGEDIR}${DATADIR}/${DISTVERSION:R}/src - ${INSTALL_DATA} ${WRKDIR}/sources.el ${STAGEDIR}${DATADIR}/${DISTVERSION:R}/site-lisp/site-start.el .include diff --git a/editors/emacs-devel/files/default.el.in b/editors/emacs-devel/files/default.el.in new file mode 100644 index 000000000000..9581262d561e --- /dev/null +++ b/editors/emacs-devel/files/default.el.in @@ -0,0 +1,155 @@ +;;; default.el --- Site-wide Initialization -*- lexical-binding: t -*- + +;; Installed by editors/emacs and editors/emacs-devel. +;; +;; This file depends on variables defined in site-start.el, and is loaded after +;; the user's init file in the Emacs initialization sequence. +;; +;; FreeBSD elisp (USES=emacs) ports only install .el source files under +;; %%PREFIX%%/share/emacs/site-lisp/. This file arranges for those files to be +;; compiled and cached per-user, following the same pattern used by ELPA. No +;; root privileges are required after package installation. +;; +;; For Emacs builds with native compilation: .eln files are cached in +;; ~/.emacs.d/eln-cache/ by Emacs's existing machinery. +;; +;; For Emacs builds without native compilation: .elc files are cached in +;; ~/.emacs.d/freebsd-elc-cache/, with the cache directory prepended to +;; load-path so compiled files take precedence over .el source. +;; +;; To disable native compilation of all third-party elisp, including FreeBSD +;; ports elisp and ELPA packages, set `native-comp-jit-compilation' to nil. +;; +;; To disable byte-compilation of ports elisp (non-native-compilation builds +;; only), set `freebsd-inhibit-byte-compile' to t. + +;;; Code: + +(defun freebsd--elc-cache-dest (el-file) + "Map EL-FILE under `freebsd-site-lisp-dir' to its cache path. +The subdirectory structure of `freebsd-site-lisp-dir' is mirrored +under `freebsd-elc-cache-dir' to avoid filename collisions across +ports and to allow per-subdirectory load-path entries." + (let* ((relative (file-relative-name el-file freebsd-site-lisp-dir)) + (dest-el (expand-file-name relative freebsd-elc-cache-dir))) + (concat (file-name-sans-extension dest-el) ".elc"))) + +(defun freebsd--elc-cache-valid-p () + "Return non-nil if the elc cache was built by the current Emacs version. +Reads a version stamp file from `freebsd-elc-cache-dir' and compares +it to `emacs-version'. If missing or mismatched, the cache is +considered stale and is cleared." + (let ((stamp (expand-file-name "emacs-version" freebsd-elc-cache-dir))) + (if (file-exists-p stamp) + (string= (with-temp-buffer + (insert-file-contents stamp) + (buffer-string)) + emacs-version) + nil))) + +(defun freebsd--elc-cache-clear () + "Remove all .elc files from `freebsd-elc-cache-dir'." + (when (file-directory-p freebsd-elc-cache-dir) + (dolist (elc (directory-files-recursively + freebsd-elc-cache-dir "\\.elc\\'")) + (delete-file elc)))) + +(defun freebsd--elc-cache-write-stamp () + "Write the current Emacs version to the cache stamp file." + (let ((stamp (expand-file-name "emacs-version" freebsd-elc-cache-dir))) + (with-temp-file stamp + (insert emacs-version)))) + +(defun freebsd--setup-byte-compile-cache () + "Set up the byte-compilation cache and prepend it to `load-path'. +Creates `freebsd-elc-cache-dir' mirroring the subdirectory structure +of `freebsd-site-lisp-dir', then prepends the cache root and all +subdirectories to `load-path' so cached .elc files take precedence +over .el source files." + (make-directory freebsd-elc-cache-dir t) + (when (file-directory-p freebsd-site-lisp-dir) + (dolist (dir (directory-files freebsd-site-lisp-dir t "^[^.]")) + (when (file-directory-p dir) + (make-directory + (expand-file-name + (file-relative-name dir freebsd-site-lisp-dir) + freebsd-elc-cache-dir) + t)))) + (add-to-list 'load-path freebsd-elc-cache-dir) + (let ((default-directory freebsd-elc-cache-dir)) + (normal-top-level-add-subdirs-to-load-path))) + +(defun freebsd--byte-compile-site-lisp () + "Byte-compile FreeBSD ports elisp into `freebsd-elc-cache-dir'. +Runs once on an idle timer to avoid blocking Emacs startup. First +removes any stale .elc files whose corresponding .el source no longer +exists in `freebsd-site-lisp-dir', then recompiles any .el files that +are newer than their cached .elc, following the same pattern used +by ELPA." + (run-with-idle-timer + 3 nil + (lambda () + (unless (freebsd--elc-cache-valid-p) + (freebsd--elc-cache-clear)) + (freebsd--elc-cache-write-stamp) + (when (file-directory-p freebsd-elc-cache-dir) + (dolist (elc (directory-files-recursively + freebsd-elc-cache-dir "\\.elc\\'")) + (let* ((relative (file-relative-name elc freebsd-elc-cache-dir)) + (el (expand-file-name + (concat (file-name-sans-extension relative) ".el") + freebsd-site-lisp-dir))) + (unless (file-exists-p el) + (delete-file elc))))) + (dolist (el (directory-files-recursively + freebsd-site-lisp-dir "\\.el\\'")) + (let ((base (file-name-nondirectory el))) + (unless (member base '("site-start.el" "subdirs.el")) + (let ((elc (freebsd--elc-cache-dest el))) + (when (or (not (file-exists-p elc)) + (file-newer-than-file-p el elc)) + (let ((byte-compile-log-level 0) + (byte-compile-dest-file-function + #'freebsd--elc-cache-dest)) + (byte-compile-file el)))))))))) + +(defun freebsd--load-autoloads () + "Load all autoloads files installed by FreeBSD elisp ports. +This mirrors what package.el does for ELPA packages, ensuring +that autoloaded functions are available without requiring users +to explicitly load each package." + (when (file-directory-p freebsd-site-lisp-dir) + (dolist (autoloads (directory-files-recursively + freebsd-site-lisp-dir + ".*-autoloads\\.el\\'")) + (load autoloads t t)))) + +(defun freebsd--clean-stale-eln-dirs () + "Remove eln-cache subdirectories from previous Emacs builds. +Emacs native compilation writes .eln files into a hash-named subdirectory +of eln-cache specific to the running binary. Old subdirectories from +previous builds are never cleaned up automatically. This function removes +all subdirectories that do not match `comp-native-version-dir'." + (let ((cache-dir (expand-file-name "eln-cache" user-emacs-directory)) + (current-dir comp-native-version-dir)) + (when (file-directory-p cache-dir) + (dolist (dir (directory-files cache-dir t "\\`[^.]")) + (when (and (file-directory-p dir) + (not (string= (file-name-nondirectory dir) current-dir))) + (delete-directory dir t)))))) + +;;; Entry point + +;; When running in batch mode (e.g. during port builds), skip all +;; compilation machinery to avoid interference with the build environment. +(unless noninteractive + (freebsd--load-autoloads) + (if (native-comp-available-p) + (when native-comp-jit-compilation + (freebsd--clean-stale-eln-dirs) + (native-compile-async freebsd-site-lisp-dir 'recursively)) + (unless freebsd-inhibit-byte-compile + (freebsd--setup-byte-compile-cache) + (freebsd--byte-compile-site-lisp)))) + +;;; default.el ends here diff --git a/editors/emacs-devel/files/pkg-message.in b/editors/emacs-devel/files/pkg-message.in index 7d67c2378a22..7c46aa4f0bf0 100644 --- a/editors/emacs-devel/files/pkg-message.in +++ b/editors/emacs-devel/files/pkg-message.in @@ -1,75 +1,20 @@ [ %%NATIVECOMP_COMMENT_START%% -{ type: install - message: < .if ${PORT_OPTIONS:MNATIVECOMP} NATIVECOMP_COMMENT_END= NATIVECOMP_COMMENT_START= .else NATIVECOMP_COMMENT_END= '*/' NATIVECOMP_COMMENT_START= '/*' .endif .if ${FLAVOR:U} != nox USES+= desktop-file-utils gnome .if !${PORT_OPTIONS:MPGTK} USES+= xorg USE_XORG+= ice sm x11 xcb xcomposite xext xfixes xi xinerama xmu xrandr \ xrender xt .endif .endif .if !${PORT_OPTIONS:MGTK2} && !${PORT_OPTIONS:MGTK3} && !${PORT_OPTIONS:MMOTIF} && \ !${PORT_OPTIONS:MXAW} && !${PORT_OPTIONS:MXAW3D} CONFIGURE_ARGS+= --with-x-toolkit=no .endif # Schema generation is dependent on both PGTK, and GSETTINGS options # as per https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=183936ee8e5 .if ${PORT_OPTIONS:MGSETTINGS} && ${PORT_OPTIONS:MPGTK} GLIB_SCHEMAS+= org.gnu.emacs.defaults.gschema.xml .endif .if ${FLAVOR} == nox # With a desktop entry stage-qa will give a warning about requiring # desktop-file-utils and portlint -C will give a warning about INSTALLS_ICONS, # but don't pull in those dependencies with the nox flavor. post-patch: @${REINPLACE_CMD} -e 's/^Terminal=.*$$/Terminal=true/' ${WRKSRC}/etc/emacs.desktop .endif post-install: @${RM} -r ${STAGEDIR}${PREFIX}/lib/systemd @(cd ${STAGEDIR}${PREFIX} && ${FIND} libexec/emacs/${DISTVERSION}/${CONFIGURE_TARGET}/ -name emacs-*.pdmp >> ${TMPPLIST}) + ${INSTALL_DATA} ${WRKDIR}/default.el ${WRKDIR}/site-start.el ${STAGEDIR}${DATADIR}/site-lisp/ post-install-MAILUTILS-on: ${LN} -sf ${PREFIX}/bin/movemail \ ${STAGEDIR}${PREFIX}/libexec/emacs/${DISTVERSION}/${CONFIGURE_TARGET} # Natively compiled elisp files names include build checksum information, so add # these files to the plist after the build. post-install-NATIVECOMP-on: @(cd ${WRKSRC} && ${FIND} native-lisp -type f | ${SED} -e 's,^,lib/emacs/${DISTVERSION}/,') >> ${TMPPLIST} @${FIND} ${STAGEDIR}${PREFIX}/lib/emacs/${DISTVERSION}/native-lisp/ -name '*.eln*' -exec ${STRIP_CMD} {} + post-install-SOURCES-on: @${MKDIR} ${STAGEDIR}${DATADIR}/${DISTVERSION}/src ${INSTALL_DATA} ${WRKSRC}/src/*.[ch] ${STAGEDIR}${DATADIR}/${DISTVERSION}/src - ${INSTALL_DATA} ${WRKDIR}/sources.el ${STAGEDIR}${DATADIR}/${DISTVERSION}/site-lisp/site-start.el .include diff --git a/editors/emacs/files/default.el.in b/editors/emacs/files/default.el.in new file mode 100644 index 000000000000..9581262d561e --- /dev/null +++ b/editors/emacs/files/default.el.in @@ -0,0 +1,155 @@ +;;; default.el --- Site-wide Initialization -*- lexical-binding: t -*- + +;; Installed by editors/emacs and editors/emacs-devel. +;; +;; This file depends on variables defined in site-start.el, and is loaded after +;; the user's init file in the Emacs initialization sequence. +;; +;; FreeBSD elisp (USES=emacs) ports only install .el source files under +;; %%PREFIX%%/share/emacs/site-lisp/. This file arranges for those files to be +;; compiled and cached per-user, following the same pattern used by ELPA. No +;; root privileges are required after package installation. +;; +;; For Emacs builds with native compilation: .eln files are cached in +;; ~/.emacs.d/eln-cache/ by Emacs's existing machinery. +;; +;; For Emacs builds without native compilation: .elc files are cached in +;; ~/.emacs.d/freebsd-elc-cache/, with the cache directory prepended to +;; load-path so compiled files take precedence over .el source. +;; +;; To disable native compilation of all third-party elisp, including FreeBSD +;; ports elisp and ELPA packages, set `native-comp-jit-compilation' to nil. +;; +;; To disable byte-compilation of ports elisp (non-native-compilation builds +;; only), set `freebsd-inhibit-byte-compile' to t. + +;;; Code: + +(defun freebsd--elc-cache-dest (el-file) + "Map EL-FILE under `freebsd-site-lisp-dir' to its cache path. +The subdirectory structure of `freebsd-site-lisp-dir' is mirrored +under `freebsd-elc-cache-dir' to avoid filename collisions across +ports and to allow per-subdirectory load-path entries." + (let* ((relative (file-relative-name el-file freebsd-site-lisp-dir)) + (dest-el (expand-file-name relative freebsd-elc-cache-dir))) + (concat (file-name-sans-extension dest-el) ".elc"))) + +(defun freebsd--elc-cache-valid-p () + "Return non-nil if the elc cache was built by the current Emacs version. +Reads a version stamp file from `freebsd-elc-cache-dir' and compares +it to `emacs-version'. If missing or mismatched, the cache is +considered stale and is cleared." + (let ((stamp (expand-file-name "emacs-version" freebsd-elc-cache-dir))) + (if (file-exists-p stamp) + (string= (with-temp-buffer + (insert-file-contents stamp) + (buffer-string)) + emacs-version) + nil))) + +(defun freebsd--elc-cache-clear () + "Remove all .elc files from `freebsd-elc-cache-dir'." + (when (file-directory-p freebsd-elc-cache-dir) + (dolist (elc (directory-files-recursively + freebsd-elc-cache-dir "\\.elc\\'")) + (delete-file elc)))) + +(defun freebsd--elc-cache-write-stamp () + "Write the current Emacs version to the cache stamp file." + (let ((stamp (expand-file-name "emacs-version" freebsd-elc-cache-dir))) + (with-temp-file stamp + (insert emacs-version)))) + +(defun freebsd--setup-byte-compile-cache () + "Set up the byte-compilation cache and prepend it to `load-path'. +Creates `freebsd-elc-cache-dir' mirroring the subdirectory structure +of `freebsd-site-lisp-dir', then prepends the cache root and all +subdirectories to `load-path' so cached .elc files take precedence +over .el source files." + (make-directory freebsd-elc-cache-dir t) + (when (file-directory-p freebsd-site-lisp-dir) + (dolist (dir (directory-files freebsd-site-lisp-dir t "^[^.]")) + (when (file-directory-p dir) + (make-directory + (expand-file-name + (file-relative-name dir freebsd-site-lisp-dir) + freebsd-elc-cache-dir) + t)))) + (add-to-list 'load-path freebsd-elc-cache-dir) + (let ((default-directory freebsd-elc-cache-dir)) + (normal-top-level-add-subdirs-to-load-path))) + +(defun freebsd--byte-compile-site-lisp () + "Byte-compile FreeBSD ports elisp into `freebsd-elc-cache-dir'. +Runs once on an idle timer to avoid blocking Emacs startup. First +removes any stale .elc files whose corresponding .el source no longer +exists in `freebsd-site-lisp-dir', then recompiles any .el files that +are newer than their cached .elc, following the same pattern used +by ELPA." + (run-with-idle-timer + 3 nil + (lambda () + (unless (freebsd--elc-cache-valid-p) + (freebsd--elc-cache-clear)) + (freebsd--elc-cache-write-stamp) + (when (file-directory-p freebsd-elc-cache-dir) + (dolist (elc (directory-files-recursively + freebsd-elc-cache-dir "\\.elc\\'")) + (let* ((relative (file-relative-name elc freebsd-elc-cache-dir)) + (el (expand-file-name + (concat (file-name-sans-extension relative) ".el") + freebsd-site-lisp-dir))) + (unless (file-exists-p el) + (delete-file elc))))) + (dolist (el (directory-files-recursively + freebsd-site-lisp-dir "\\.el\\'")) + (let ((base (file-name-nondirectory el))) + (unless (member base '("site-start.el" "subdirs.el")) + (let ((elc (freebsd--elc-cache-dest el))) + (when (or (not (file-exists-p elc)) + (file-newer-than-file-p el elc)) + (let ((byte-compile-log-level 0) + (byte-compile-dest-file-function + #'freebsd--elc-cache-dest)) + (byte-compile-file el)))))))))) + +(defun freebsd--load-autoloads () + "Load all autoloads files installed by FreeBSD elisp ports. +This mirrors what package.el does for ELPA packages, ensuring +that autoloaded functions are available without requiring users +to explicitly load each package." + (when (file-directory-p freebsd-site-lisp-dir) + (dolist (autoloads (directory-files-recursively + freebsd-site-lisp-dir + ".*-autoloads\\.el\\'")) + (load autoloads t t)))) + +(defun freebsd--clean-stale-eln-dirs () + "Remove eln-cache subdirectories from previous Emacs builds. +Emacs native compilation writes .eln files into a hash-named subdirectory +of eln-cache specific to the running binary. Old subdirectories from +previous builds are never cleaned up automatically. This function removes +all subdirectories that do not match `comp-native-version-dir'." + (let ((cache-dir (expand-file-name "eln-cache" user-emacs-directory)) + (current-dir comp-native-version-dir)) + (when (file-directory-p cache-dir) + (dolist (dir (directory-files cache-dir t "\\`[^.]")) + (when (and (file-directory-p dir) + (not (string= (file-name-nondirectory dir) current-dir))) + (delete-directory dir t)))))) + +;;; Entry point + +;; When running in batch mode (e.g. during port builds), skip all +;; compilation machinery to avoid interference with the build environment. +(unless noninteractive + (freebsd--load-autoloads) + (if (native-comp-available-p) + (when native-comp-jit-compilation + (freebsd--clean-stale-eln-dirs) + (native-compile-async freebsd-site-lisp-dir 'recursively)) + (unless freebsd-inhibit-byte-compile + (freebsd--setup-byte-compile-cache) + (freebsd--byte-compile-site-lisp)))) + +;;; default.el ends here diff --git a/editors/emacs/files/pkg-message.in b/editors/emacs/files/pkg-message.in index 24f92908ca05..7c46aa4f0bf0 100644 --- a/editors/emacs/files/pkg-message.in +++ b/editors/emacs/files/pkg-message.in @@ -1,32 +1,20 @@ [ %%NATIVECOMP_COMMENT_START%% { type: [install, upgrade], message: <0:editors/apel@${EMACS_FLAVOR} -RUN_DEPENDS= apel${EMACS_PKGNAMESUFFIX}>0:editors/apel@${EMACS_FLAVOR} +BUILD_DEPENDS= apel>0:editors/apel +RUN_DEPENDS= apel>0:editors/apel -USES= cpe emacs iconv makeinfo +USES= cpe emacs:build iconv makeinfo +CPE_VENDOR= gnu USE_GITHUB= yes GH_ACCOUNT= wanderlust GH_TAGNAME= 392c29d SNAPDATE= 20251030 -CPE_VENDOR= gnu -NO_ARCH= yes - -ALL_TARGET= elc MAKE_ARGS+= PREFIX="${STAGEDIR}${PREFIX}" \ - LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}" \ - VERSION_SPECIFIC_LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}" \ + LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}" \ + VERSION_SPECIFIC_LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}" \ PACKAGE_LISPDIR=NONE +CONFLICTS_INSTALL= flim-emacs_* + +NO_ARCH= yes + INFO= mime-en mime-ja OPTIONS_DEFINE= DOCS -post-build: +do-build: @(cd ${WRKSRC} ; \ for i in mime-en.texi mime-ja.texi; do \ ${MAKEINFO} --no-split --no-validate $${i} ; \ done) post-install: @(cd ${WRKSRC} ; \ for i in mime-en.info mime-ja.info; do \ ${INSTALL_DATA} ${WRKSRC}/$${i} ${STAGEDIR}${PREFIX}/${INFO_PATH} ; \ done) post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} @(cd ${WRKSRC} ; \ for i in NEWS README.* VERSION ; do \ ${INSTALL_DATA} $${i} ${STAGEDIR}${DOCSDIR}/ ; \ done) .include diff --git a/editors/flim/files/patch-Makefile b/editors/flim/files/patch-Makefile new file mode 100644 index 000000000000..25cf10dbd8c3 --- /dev/null +++ b/editors/flim/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig 2026-03-23 16:22:48 UTC ++++ Makefile +@@ -38,7 +38,7 @@ check: + $(EMACS) $(FLAGS) -f check-flim $(PREFIX) $(LISPDIR) \ + $(VERSION_SPECIFIC_LISPDIR) $(PACKAGE_LISPDIR) + +-install: elc ++install: + $(EMACS) $(FLAGS) -f install-flim $(PREFIX) $(LISPDIR) \ + $(VERSION_SPECIFIC_LISPDIR) $(PACKAGE_LISPDIR) + diff --git a/editors/flim/pkg-plist b/editors/flim/pkg-plist index 550f9302ad28..a4dc73065c2e 100644 --- a/editors/flim/pkg-plist +++ b/editors/flim/pkg-plist @@ -1,54 +1,29 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/flim/eword-decode.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/eword-decode.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/eword-encode.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/eword-encode.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/hmac-sha1.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/hmac-sha1.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/luna.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/luna.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/lunit.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/lunit.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/md5.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/md5.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel-g.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel-g.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel-q-ccl.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel-q-ccl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel-q.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel-q.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel-u.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel-u.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mel.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mime-conf.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mime-conf.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mime-def.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mime-def.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mime-parse.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mime-parse.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mime.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mime.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mmbuffer.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mmbuffer.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mmcooked.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mmcooked.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mmexternal.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mmexternal.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mmgeneric.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/mmgeneric.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/qmtp.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/qmtp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/sasl-scram.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/sasl-scram.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/sasl.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/sasl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/sha1.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/sha1.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/smtp.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/smtp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/std11.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/std11.elc +%%EMACS_SITE_LISPDIR%%/flim/eword-decode.el +%%EMACS_SITE_LISPDIR%%/flim/eword-encode.el +%%EMACS_SITE_LISPDIR%%/flim/hmac-sha1.el +%%EMACS_SITE_LISPDIR%%/flim/luna.el +%%EMACS_SITE_LISPDIR%%/flim/lunit.el +%%EMACS_SITE_LISPDIR%%/flim/md5.el +%%EMACS_SITE_LISPDIR%%/flim/mel-g.el +%%EMACS_SITE_LISPDIR%%/flim/mel-q-ccl.el +%%EMACS_SITE_LISPDIR%%/flim/mel-q.el +%%EMACS_SITE_LISPDIR%%/flim/mel-u.el +%%EMACS_SITE_LISPDIR%%/flim/mel.el +%%EMACS_SITE_LISPDIR%%/flim/mime-conf.el +%%EMACS_SITE_LISPDIR%%/flim/mime-def.el +%%EMACS_SITE_LISPDIR%%/flim/mime-parse.el +%%EMACS_SITE_LISPDIR%%/flim/mime.el +%%EMACS_SITE_LISPDIR%%/flim/mmbuffer.el +%%EMACS_SITE_LISPDIR%%/flim/mmcooked.el +%%EMACS_SITE_LISPDIR%%/flim/mmexternal.el +%%EMACS_SITE_LISPDIR%%/flim/mmgeneric.el +%%EMACS_SITE_LISPDIR%%/flim/qmtp.el +%%EMACS_SITE_LISPDIR%%/flim/sasl-scram.el +%%EMACS_SITE_LISPDIR%%/flim/sasl.el +%%EMACS_SITE_LISPDIR%%/flim/sha1.el +%%EMACS_SITE_LISPDIR%%/flim/smtp.el +%%EMACS_SITE_LISPDIR%%/flim/std11.el %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/README.en %%PORTDOCS%%%%DOCSDIR%%/README.ja %%PORTDOCS%%%%DOCSDIR%%/VERSION diff --git a/editors/marginalia.el/Makefile b/editors/marginalia.el/Makefile index 8f779fef3850..8bb7febb108e 100644 --- a/editors/marginalia.el/Makefile +++ b/editors/marginalia.el/Makefile @@ -1,37 +1,36 @@ PORTNAME= marginalia.el DISTVERSION= 2.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= pat@patmaddox.com COMMENT= Marginalia in the Emacs minibuffer WWW= https://github.com/minad/marginalia LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} +RUN_DEPENDS= compat.el>=30.1.0.0:misc/compat.el USES= emacs USE_GITHUB= yes GH_ACCOUNT= minad GH_PROJECT= marginalia +CONFLICTS_INSTALL= marginalia.el-emacs_* + NO_ARCH= yes +NO_BUILD= yes OPTIONS_DEFINE= DOCS -do-build: - ${EMACS_CMD} -q --batch -f batch-byte-compile ${WRKSRC}/marginalia.el - do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/marginalia.el ${WRKSRC}/marginalia.elc \ + ${INSTALL_DATA} ${WRKSRC}/marginalia.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.org ${STAGEDIR}${DOCSDIR} .include diff --git a/editors/marginalia.el/pkg-plist b/editors/marginalia.el/pkg-plist index f054b1ca4726..934eb13d8a5b 100644 --- a/editors/marginalia.el/pkg-plist +++ b/editors/marginalia.el/pkg-plist @@ -1,3 +1,2 @@ %%EMACS_SITE_LISPDIR%%/marginalia.el -%%EMACS_SITE_LISPDIR%%/marginalia.elc %%PORTDOCS%%%%DOCSDIR%%/README.org diff --git a/editors/orderless.el/Makefile b/editors/orderless.el/Makefile index 257e8c502d7c..9a1510e43bbf 100644 --- a/editors/orderless.el/Makefile +++ b/editors/orderless.el/Makefile @@ -1,36 +1,35 @@ PORTNAME= orderless.el DISTVERSION= 1.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= pat@patmaddox.com COMMENT= Emacs completion style that matches multiple regexps in any order WWW= https://github.com/oantolin/orderless LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} +RUN_DEPENDS= compat.el>=30.1.0.0:misc/compat.el USES= emacs USE_GITHUB= yes GH_ACCOUNT= oantolin GH_PROJECT= orderless +CONFLICTS_INSTALL= orderless.el-emacs_* + NO_ARCH= yes +NO_BUILD= yes OPTIONS_DEFINE= DOCS -do-build: - ${EMACS_CMD} -q --batch -L ${WRKSRC} -f batch-byte-compile ${WRKSRC}/*.el - do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/*.el ${WRKSRC}/*.elc ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.org ${STAGEDIR}${DOCSDIR} .include diff --git a/editors/orderless.el/pkg-plist b/editors/orderless.el/pkg-plist index 5e2866dbb647..758408b9ea46 100644 --- a/editors/orderless.el/pkg-plist +++ b/editors/orderless.el/pkg-plist @@ -1,5 +1,3 @@ %%EMACS_SITE_LISPDIR%%/orderless-kwd.el -%%EMACS_SITE_LISPDIR%%/orderless-kwd.elc %%EMACS_SITE_LISPDIR%%/orderless.el -%%EMACS_SITE_LISPDIR%%/orderless.elc %%PORTDOCS%%%%DOCSDIR%%/README.org diff --git a/editors/paredit-mode.el/Makefile b/editors/paredit-mode.el/Makefile index 8f22555f2ae6..b94d28b2a140 100644 --- a/editors/paredit-mode.el/Makefile +++ b/editors/paredit-mode.el/Makefile @@ -1,27 +1,28 @@ PORTNAME= paredit-mode.el PORTVERSION= 24 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= editors elisp MASTER_SITES= http://mumble.net/~campbell/emacs/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= paredit-${PORTVERSION}.el EXTRACT_SUFX= EXTRACT_ONLY= MAINTAINER= olgeni@FreeBSD.org COMMENT= Minor mode for performing editing of S-expression data WWW= https://www.emacswiki.org/emacs/ParEdit LICENSE= GPLv3+ USES= emacs +CONFLICTS_INSTALL= paredit-mode.el-emacs_* + NO_BUILD= yes NO_ARCH= yes PLIST_FILES= ${EMACS_SITE_LISPDIR}/paredit.el do-install: ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/paredit.el .include diff --git a/editors/paredit-mode.el/pkg-message b/editors/paredit-mode.el/pkg-message index 3d7c9431919e..01ff5d0ea47b 100644 --- a/editors/paredit-mode.el/pkg-message +++ b/editors/paredit-mode.el/pkg-message @@ -1,9 +1,9 @@ [ { type: install message: < diff --git a/editors/perspective.el/pkg-plist b/editors/perspective.el/pkg-plist index c7bd8ddf81bb..dcacec446bed 100644 --- a/editors/perspective.el/pkg-plist +++ b/editors/perspective.el/pkg-plist @@ -1,3 +1,2 @@ %%EMACS_SITE_LISPDIR%%/perspective.el -%%EMACS_SITE_LISPDIR%%/perspective.elc %%PORTDOCS%%%%DOCSDIR%%/README.md diff --git a/editors/psgml/Makefile b/editors/psgml/Makefile index 99a8151e326b..1ca85f4d84d1 100644 --- a/editors/psgml/Makefile +++ b/editors/psgml/Makefile @@ -1,39 +1,49 @@ PORTNAME= psgml PORTVERSION= 1.4.0 -PORTREVISION= 25 +PORTREVISION= 26 CATEGORIES= editors elisp MASTER_SITES= SF/${PORTNAME}/ALPHA%20${PORTNAME}/1.3.2 -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= ${PORTNAME}-1.3.2 PATCH_SITES= LOCAL/hrs PATCHFILES= psgml-symbol-conflict-050503.diff.gz MAINTAINER= hrs@FreeBSD.org COMMENT= Major mode for editing SGML and XML documents for Emacs WWW= http://www.lysator.liu.se/~lenst/about_psgml/ LICENSE= GPLv2 USES= emacs -GNU_CONFIGURE= YES -CONFIGURE_ARGS= --lispdir=${PSGML_LISPDIR} -CONFIGURE_ENV= EMACS=${EMACS_CMD} +CONFLICTS_INSTALL= psgml-emacs_* -SUB_FILES= ${PSGML_STARTUPEL} +NO_ARCH= yes +NO_BUILD= yes + +SUB_FILES= ${PSGML_STARTUP} SUB_LIST= PSGML_LISPDIR=${PSGML_LISPDIR} INFO= psgml psgml-api -PLIST_SUB= PSGML_STARTUPEL=${PSGML_STARTUPEL} - -PSGML_STARTUPEL= psgml-startup.el -PSGML_LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/psgml +PLIST_SUB= PSGML_STARTUP=${PSGML_STARTUP} + +SOURCES= psgml-api.el psgml-charent.el psgml-dtd.el psgml-edit.el \ + psgml-ids.el psgml-info.el psgml-other.el psgml-parse.el \ + psgml-sysdep.el psgml.el +PSGML_STARTUP= psgml-startup.el +PSGML_LISPDIR= ${PREFIX}/${EMACS_SITE_LISPDIR}/psgml + +do-install: + @${MKDIR} ${STAGEDIR}${PSGML_LISPDIR} +.for f in ${SOURCES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${PSGML_LISPDIR} +.endfor + ${INSTALL_DATA} ${WRKSRC}/iso88591.map ${STAGEDIR}${PSGML_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/*.info ${STAGEDIR}${PREFIX}/${INFO_PATH} post-install: - cd ${WRKSRC} && ${SETENV} DESTDIR="${STAGEDIR}" ${MAKE} install-info ${GZIP_CMD} ${STAGEDIR}${PSGML_LISPDIR}/*.el - ${INSTALL_DATA} ${WRKDIR}/${PSGML_STARTUPEL} \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKDIR}/${PSGML_STARTUP} \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/editors/psgml/pkg-plist b/editors/psgml/pkg-plist index 91bcf288c6a5..62fcb197ab69 100644 --- a/editors/psgml/pkg-plist +++ b/editors/psgml/pkg-plist @@ -1,22 +1,12 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/iso88591.map -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-api.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-api.elc -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-charent.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-charent.elc -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-dtd.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-dtd.elc -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-edit.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-edit.elc -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-ids.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-ids.elc -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-info.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-info.elc -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-other.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-other.elc -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-parse.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-parse.elc -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-sysdep.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-sysdep.elc -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml.el.gz -%%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml.elc -%%EMACS_VERSION_SITE_LISPDIR%%/%%PSGML_STARTUPEL%% +%%EMACS_SITE_LISPDIR%%/psgml/iso88591.map +%%EMACS_SITE_LISPDIR%%/psgml/psgml-api.el.gz +%%EMACS_SITE_LISPDIR%%/psgml/psgml-charent.el.gz +%%EMACS_SITE_LISPDIR%%/psgml/psgml-dtd.el.gz +%%EMACS_SITE_LISPDIR%%/psgml/psgml-edit.el.gz +%%EMACS_SITE_LISPDIR%%/psgml/psgml-ids.el.gz +%%EMACS_SITE_LISPDIR%%/psgml/psgml-info.el.gz +%%EMACS_SITE_LISPDIR%%/psgml/psgml-other.el.gz +%%EMACS_SITE_LISPDIR%%/psgml/psgml-parse.el.gz +%%EMACS_SITE_LISPDIR%%/psgml/psgml-sysdep.el.gz +%%EMACS_SITE_LISPDIR%%/psgml/psgml.el.gz +%%EMACS_SITE_LISPDIR%%/%%PSGML_STARTUP%% diff --git a/editors/semi/Makefile b/editors/semi/Makefile index d747f22e1368..2732ec12ace1 100644 --- a/editors/semi/Makefile +++ b/editors/semi/Makefile @@ -1,57 +1,58 @@ PORTNAME= semi PORTVERSION= ${SEMI_VER}.${SNAPDATE} +PORTREVISION= 1 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= nobutaka@FreeBSD.org COMMENT= SEMI, Library of MIME feature for GNU Emacs for emacs WWW= https://github.com/wanderlust/semi LICENSE= GPLv2 -BUILD_DEPENDS= flim${EMACS_PKGNAMESUFFIX}>0:editors/flim@${EMACS_FLAVOR} -RUN_DEPENDS= flim${EMACS_PKGNAMESUFFIX}>0:editors/flim@${EMACS_FLAVOR} +BUILD_DEPENDS= flim>0:editors/flim +RUN_DEPENDS= flim>0:editors/flim -USES= emacs iconv makeinfo +USES= emacs:build iconv makeinfo USE_GITHUB= yes GH_ACCOUNT= wanderlust GH_TAGNAME= 5edbb0d SNAPDATE= 20251130 + +CONFLICTS_INSTALL= semi-emacs_* + NO_ARCH= yes FLIM_TRUNK= 1.14 SEMI_VER= ${SEMI_TRUNK}.7 SEMI_TRUNK= 1.14 -ALL_TARGET= elc - MAKE_ARGS+= PREFIX="${STAGEDIR}${PREFIX}" \ - LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}" \ - VERSION_SPECIFIC_LISPDIR="${STAGEDIR}${EMACS_VERSION_SITE_LISPDIR}" \ + LISPDIR="${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}" \ + VERSION_SPECIFIC_LISPDIR="${STAGEDIR}${EMACS_SITE_LISPDIR}" \ PACKAGE_LISPDIR=NONE INFO= mime-ui-en mime-ui-ja OPTIONS_DEFINE= DOCS -post-build: +do-build: @(cd ${WRKSRC} ; \ for i in mime-ui-en.texi mime-ui-ja.texi; do \ ${MAKEINFO} --no-split --no-validate $${i} ; \ done) post-install: @(cd ${WRKSRC} ; \ for i in mime-ui-en.info mime-ui-ja.info; do \ ${INSTALL_DATA} ${WRKSRC}/$${i} ${STAGEDIR}${PREFIX}/${INFO_PATH} ; \ done) post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} @(cd ${WRKSRC} ; \ for i in NEWS README.* TODO VERSION ; do \ ${INSTALL_DATA} $${i} ${STAGEDIR}${DOCSDIR}/ ; \ done) .include diff --git a/editors/semi/files/patch-Makefile b/editors/semi/files/patch-Makefile new file mode 100644 index 000000000000..bdf3b35081be --- /dev/null +++ b/editors/semi/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig 2026-03-23 22:13:54 UTC ++++ Makefile +@@ -33,7 +33,7 @@ elc: + $(EMACS) $(FLAGS) -f compile-semi $(PREFIX) $(LISPDIR) \ + $(VERSION_SPECIFIC_LISPDIR) $(PACKAGE_LISPDIR) + +-install-elc: elc ++install-elc: + $(EMACS) $(FLAGS) -f install-semi $(PREFIX) $(LISPDIR) \ + $(VERSION_SPECIFIC_LISPDIR) $(PACKAGE_LISPDIR) + diff --git a/editors/semi/pkg-plist b/editors/semi/pkg-plist index c2144b7fa06d..e6d62866706d 100644 --- a/editors/semi/pkg-plist +++ b/editors/semi/pkg-plist @@ -1,35 +1,21 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mail-mime-setup.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mail-mime-setup.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-edit.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-edit.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-image.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-image.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-partial.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-partial.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-pgp.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-pgp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-play.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-play.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-setup.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-setup.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-shr.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-shr.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-signature.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-signature.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-tnef.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-tnef.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-vcard.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-view.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-view.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/mime-w3.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/semi-def.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/semi-def.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/semi-setup.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/semi-setup.elc -%%EMACS_VERSION_SITE_LISPDIR%%/semi/signature.el -%%EMACS_VERSION_SITE_LISPDIR%%/semi/signature.elc +%%EMACS_SITE_LISPDIR%%/semi/mail-mime-setup.el +%%EMACS_SITE_LISPDIR%%/semi/mime-edit.el +%%EMACS_SITE_LISPDIR%%/semi/mime-image.el +%%EMACS_SITE_LISPDIR%%/semi/mime-partial.el +%%EMACS_SITE_LISPDIR%%/semi/mime-pgp.el +%%EMACS_SITE_LISPDIR%%/semi/mime-play.el +%%EMACS_SITE_LISPDIR%%/semi/mime-setup.el +%%EMACS_SITE_LISPDIR%%/semi/mime-shr.el +%%EMACS_SITE_LISPDIR%%/semi/mime-signature.el +%%EMACS_SITE_LISPDIR%%/semi/mime-tnef.el +%%EMACS_SITE_LISPDIR%%/semi/mime-vcard.el +%%EMACS_SITE_LISPDIR%%/semi/mime-view.el +%%EMACS_SITE_LISPDIR%%/semi/mime-w3.el +%%EMACS_SITE_LISPDIR%%/semi/semi-def.el +%%EMACS_SITE_LISPDIR%%/semi/semi-setup.el +%%EMACS_SITE_LISPDIR%%/semi/signature.el %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/README.en %%PORTDOCS%%%%DOCSDIR%%/README.ja %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/VERSION diff --git a/editors/slime/Makefile b/editors/slime/Makefile index f91b43d77f78..989aceee4c8d 100644 --- a/editors/slime/Makefile +++ b/editors/slime/Makefile @@ -1,46 +1,51 @@ PORTNAME= slime DISTVERSIONPREFIX= v DISTVERSION= 2.26.1-9 -PORTREVISION= 15 DISTVERSIONSUFFIX= -gf368e22a +PORTREVISION= 16 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Superior Lisp Interaction Mode for Emacs WWW= https://common-lisp.net/project/slime/ LICENSE= PD BUILD_DEPENDS= texinfo>=5.2:print/texinfo USES= emacs gmake USE_GITHUB= yes ALL_TARGET= all contrib-compile doc-slime.info -INFO= slime + +CONFLICTS_INSTALL= slime-emacs_* + NO_ARCH= yes -PORTDOCS= CONTRIBUTING.md NEWS PROBLEMS README.md +NO_BUILD= yes + SUB_FILES= pkg-message SUB_LIST= SLIME_LISPDIR="${SLIME_LISPDIR}" +INFO= slime +PORTDOCS= CONTRIBUTING.md NEWS PROBLEMS README.md + OPTIONS_DEFINE= DOCS -SLIME_LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/slime +SLIME_LISPDIR= ${PREFIX}/${EMACS_SITE_LISPDIR}/slime do-install: @${MKDIR} ${STAGEDIR}${SLIME_LISPDIR} (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${SLIME_LISPDIR} \ "! ( -name CONTRIBUTING.md -o -name NEWS -o -name PROBLEMS \ -o -name README.md -o -name Makefile -o -name doc \ -o -path \./doc/* )") post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${INSTALL_WRKSRC}/contrib/README.md \ ${STAGEDIR}${DOCSDIR}/README-contrib.md (cd ${INSTALL_WRKSRC}/doc && ${INSTALL_DATA} slime-refcard.pdf \ slime-small.pdf ${STAGEDIR}${DOCSDIR}) .include diff --git a/editors/slime/pkg-plist b/editors/slime/pkg-plist index b076c77480b7..9a2f3cf367cc 100644 --- a/editors/slime/pkg-plist +++ b/editors/slime/pkg-plist @@ -1,184 +1,126 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/slime/.github/workflows/ci.yml -%%EMACS_VERSION_SITE_LISPDIR%%/slime/.gitref -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/bridge.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/bridge.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/inferior-slime.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/inferior-slime.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-asdf.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-asdf.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-autodoc.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-autodoc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-banner.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-banner.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-buffer-streams.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-buffer-streams.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-c-p-c.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-c-p-c.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-cl-indent.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-cl-indent.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-clipboard.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-clipboard.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-compiler-notes-tree.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-compiler-notes-tree.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-editing-commands.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-editing-commands.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-enclosing-context.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-enclosing-context.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fancy-inspector.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fancy-inspector.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fancy-trace.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fancy-trace.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fancy.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fancy.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fontifying-fu.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fontifying-fu.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fuzzy.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-fuzzy.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-highlight-edits.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-highlight-edits.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-hyperdoc.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-hyperdoc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-indentation.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-indentation.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-listener-hooks.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-listener-hooks.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-macrostep.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-macrostep.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-mdot-fu.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-mdot-fu.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-media.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-media.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-mrepl.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-mrepl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-package-fu.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-package-fu.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-parse.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-parse.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-presentation-streams.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-presentation-streams.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-presentations.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-presentations.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-quicklisp.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-quicklisp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-references.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-references.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-repl.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-repl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-sbcl-exts.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-sbcl-exts.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-scheme.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-scheme.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-scratch.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-scratch.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-snapshot.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-snapshot.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-sprof.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-sprof.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-trace-dialog.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-trace-dialog.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-tramp.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-tramp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-typeout-frame.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-typeout-frame.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-xref-browser.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/slime-xref-browser.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-arglists.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-asdf.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-buffer-streams.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-c-p-c.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-clipboard.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-fancy-inspector.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-fuzzy.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-goo.goo -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-hyperdoc.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-ikarus.ss -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-indentation.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-jolt.k -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-kawa.scm -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-larceny.scm -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-listener-hooks.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-macrostep.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-media.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-mit-scheme.scm -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-mlworks.sml -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-mrepl.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-package-fu.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-presentation-streams.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-presentations.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-quicklisp.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-r6rs.scm -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-repl.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-sbcl-exts.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-snapshot.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-sprof.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-trace-dialog.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank-util.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/swank.rb -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-autodoc-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-autodoc-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-c-p-c-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-c-p-c-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-cl-indent-test.txt -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-enclosing-context-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-enclosing-context-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-fontifying-fu-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-fontifying-fu-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-indentation-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-indentation-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-macrostep-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-macrostep-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-mdot-fu-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-mdot-fu-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-parse-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-parse-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-presentations-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-presentations-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-repl-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/contrib/test/slime-repl-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/.nosearch -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/cl-lib.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/cl-lib.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/ert-x.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/ert-x.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/ert.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/ert.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/hyperspec.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/hyperspec.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/macrostep.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/lib/macrostep.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/metering.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/nregex.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/packages.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/sbcl-pprint-patch.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/slime-autoloads.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/slime-tests.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/slime-tests.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/slime.el -%%EMACS_VERSION_SITE_LISPDIR%%/slime/slime.elc -%%EMACS_VERSION_SITE_LISPDIR%%/slime/start-swank.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank-loader.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank.asd -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/abcl.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/allegro.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/backend.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/ccl.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/clasp.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/clisp.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/cmucl.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/corman.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/ecl.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/gray.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/lispworks.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/match.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/mezzano.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/mkcl.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/rpc.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/sbcl.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/scl.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/source-file-cache.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/swank/source-path-parser.lisp -%%EMACS_VERSION_SITE_LISPDIR%%/slime/xref.lisp +%%EMACS_SITE_LISPDIR%%/slime/.github/workflows/ci.yml +%%EMACS_SITE_LISPDIR%%/slime/.gitref +%%EMACS_SITE_LISPDIR%%/slime/contrib/bridge.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/inferior-slime.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-asdf.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-autodoc.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-banner.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-buffer-streams.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-c-p-c.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-cl-indent.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-clipboard.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-compiler-notes-tree.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-editing-commands.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-enclosing-context.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-fancy-inspector.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-fancy-trace.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-fancy.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-fontifying-fu.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-fuzzy.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-highlight-edits.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-hyperdoc.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-indentation.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-listener-hooks.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-macrostep.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-mdot-fu.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-media.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-mrepl.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-package-fu.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-parse.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-presentation-streams.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-presentations.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-quicklisp.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-references.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-repl.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-sbcl-exts.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-scheme.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-scratch.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-snapshot.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-sprof.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-trace-dialog.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-tramp.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-typeout-frame.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/slime-xref-browser.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-arglists.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-asdf.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-buffer-streams.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-c-p-c.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-clipboard.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-fancy-inspector.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-fuzzy.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-goo.goo +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-hyperdoc.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-ikarus.ss +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-indentation.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-jolt.k +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-kawa.scm +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-larceny.scm +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-listener-hooks.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-macrostep.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-media.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-mit-scheme.scm +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-mlworks.sml +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-mrepl.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-package-fu.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-presentation-streams.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-presentations.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-quicklisp.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-r6rs.scm +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-repl.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-sbcl-exts.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-snapshot.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-sprof.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-trace-dialog.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank-util.lisp +%%EMACS_SITE_LISPDIR%%/slime/contrib/swank.rb +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-autodoc-tests.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-c-p-c-tests.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-cl-indent-test.txt +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-enclosing-context-tests.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-fontifying-fu-tests.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-indentation-tests.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-macrostep-tests.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-mdot-fu-tests.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-parse-tests.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-presentations-tests.el +%%EMACS_SITE_LISPDIR%%/slime/contrib/test/slime-repl-tests.el +%%EMACS_SITE_LISPDIR%%/slime/lib/.nosearch +%%EMACS_SITE_LISPDIR%%/slime/lib/cl-lib.el +%%EMACS_SITE_LISPDIR%%/slime/lib/ert-x.el +%%EMACS_SITE_LISPDIR%%/slime/lib/ert.el +%%EMACS_SITE_LISPDIR%%/slime/lib/hyperspec.el +%%EMACS_SITE_LISPDIR%%/slime/lib/macrostep.el +%%EMACS_SITE_LISPDIR%%/slime/metering.lisp +%%EMACS_SITE_LISPDIR%%/slime/nregex.lisp +%%EMACS_SITE_LISPDIR%%/slime/packages.lisp +%%EMACS_SITE_LISPDIR%%/slime/sbcl-pprint-patch.lisp +%%EMACS_SITE_LISPDIR%%/slime/slime-autoloads.el +%%EMACS_SITE_LISPDIR%%/slime/slime-tests.el +%%EMACS_SITE_LISPDIR%%/slime/slime.el +%%EMACS_SITE_LISPDIR%%/slime/start-swank.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank-loader.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank.asd +%%EMACS_SITE_LISPDIR%%/slime/swank.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/abcl.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/allegro.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/backend.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/ccl.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/clasp.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/clisp.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/cmucl.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/corman.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/ecl.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/gray.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/lispworks.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/match.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/mezzano.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/mkcl.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/rpc.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/sbcl.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/scl.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/source-file-cache.lisp +%%EMACS_SITE_LISPDIR%%/slime/swank/source-path-parser.lisp +%%EMACS_SITE_LISPDIR%%/slime/xref.lisp %%PORTDOCS%%%%DOCSDIR%%/README-contrib.md %%PORTDOCS%%%%DOCSDIR%%/slime-refcard.pdf %%PORTDOCS%%%%DOCSDIR%%/slime-small.pdf diff --git a/editors/sly-asdf/Makefile b/editors/sly-asdf/Makefile index 36b8b4ef7467..ed2b30038ad4 100644 --- a/editors/sly-asdf/Makefile +++ b/editors/sly-asdf/Makefile @@ -1,55 +1,51 @@ PORTNAME= sly-asdf DISTVERSION= 0.2.0-20221119 -PORTREVISION= 7 +PORTREVISION= 8 PORTEPOCH= 1 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= olce.freebsd.ports@certner.fr COMMENT= SLY support for ASDF WWW= https://github.com/mmgeorge/sly-asdf LICENSE= GPLv3 -MY_DEPENDS= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/sly/sly.el:editors/sly@${EMACS_FLAVOR} +MY_DEPENDS= ${PREFIX}/${EMACS_SITE_LISPDIR}/sly/sly.el:editors/sly BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} USES= emacs USE_GITHUB= yes GH_ACCOUNT= mmgeorge GH_TAGNAME= 6f9d751469bb82530db1673c22e7437ca6c95f45 -NO_ARCH= yes +CONFLICTS_INSTALL= sly-asdf-emacs_* -EMACS_COMPILE= ${EMACS_CMD} --batch --no-site-file -L ${WRKSRC} \ - -f batch-byte-compile +NO_ARCH= yes +NO_BUILD= yes -PLIST_THIS_LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +PLIST_THIS_LISPDIR= ${EMACS_SITE_LISPDIR}/${PORTNAME} THIS_LISPDIR= ${PREFIX}/${PLIST_THIS_LISPDIR} PLIST_SUB+= THIS_LISPDIR=${PLIST_THIS_LISPDIR} -OPTIONS_DEFINE= DOCS - PORTDOCS= README.md +OPTIONS_DEFINE= DOCS + post-patch: cd ${WRKSRC} && ${RM} *flymake* -do-build: - cd ${WRKSRC} && ${EMACS_COMPILE} sly-*.el - do-install: @${MKDIR} ${STAGEDIR}${THIS_LISPDIR} (cd ${WRKSRC} && \ ${COPYTREE_SHARE} . ${STAGEDIR}${THIS_LISPDIR} \ "! ( -depth 1 ( ${PORTDOCS:C/^(.*)$/-name \1 -o/} \ -name LICENSE -o -name *\.md ) -o \ -path \./test* -o -path \./.[^.]* -o \ -name *\.orig )") post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:%=${WRKSRC}/%} ${STAGEDIR}${DOCSDIR} .include diff --git a/editors/sly-asdf/pkg-plist b/editors/sly-asdf/pkg-plist index 606397fb233d..36dec26c53a8 100644 --- a/editors/sly-asdf/pkg-plist +++ b/editors/sly-asdf/pkg-plist @@ -1,4 +1,3 @@ %%THIS_LISPDIR%%/sly-asdf.el -%%THIS_LISPDIR%%/sly-asdf.elc %%THIS_LISPDIR%%/slynk-asdf.asd %%THIS_LISPDIR%%/slynk-asdf.lisp diff --git a/editors/sly-named-readtables/Makefile b/editors/sly-named-readtables/Makefile index 5982e1114651..ddfaed165037 100644 --- a/editors/sly-named-readtables/Makefile +++ b/editors/sly-named-readtables/Makefile @@ -1,58 +1,55 @@ PORTNAME= sly-named-readtables PORTVERSION= 20191013 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= olce.freebsd.ports@certner.fr COMMENT= Support different readtables in the same file for SLY WWW= https://github.com/joaotavora/sly-named-readtables LICENSE= PD -MY_DEPENDS= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/sly/sly.el:editors/sly@${EMACS_FLAVOR} +MY_DEPENDS= ${PREFIX}/${EMACS_SITE_LISPDIR}/sly/sly.el:editors/sly BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} USES= emacs USE_GITHUB= yes GH_ACCOUNT= joaotavora GH_TAGNAME= a5a42674ccffa97ccd5e4e9742beaf3ea719931f -NO_ARCH= yes +CONFLICTS_INSTALL= sly-named-readtables-emacs_* -EMACS_COMPILE= ${EMACS_CMD} --batch --no-site-file -L ${WRKSRC} -f batch-byte-compile +NO_ARCH= yes +NO_BUILD= yes -PLIST_THIS_LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +PLIST_THIS_LISPDIR= ${EMACS_SITE_LISPDIR}/${PORTNAME} THIS_LISPDIR= ${PREFIX}/${PLIST_THIS_LISPDIR} PLIST_SUB+= THIS_LISPDIR=${PLIST_THIS_LISPDIR} # File is buggy and can't be used as documented upstream EXCLUDED_FILES= ${PORTNAME}-autoloads.el -OPTIONS_DEFINE= DOCS EXAMPLES - PORTDOCS= README.md screenshot.png PORTEXAMPLES= example.lisp -do-build: - cd ${WRKSRC} && ${EMACS_COMPILE} sly-*.el +OPTIONS_DEFINE= DOCS EXAMPLES do-install: @${MKDIR} ${STAGEDIR}${THIS_LISPDIR} (cd ${WRKSRC} && \ ${COPYTREE_SHARE} . ${STAGEDIR}${THIS_LISPDIR} \ "! ( -depth 1 ( ${EXCLUDED_FILES:C/^(.*)$/-name \1 -o/} \ ${PORTDOCS:C/^(.*)$/-name \1 -o/} \ ${PORTEXAMPLES:C/^(.*)$/-name \1 -o/} \ -name LICENSE -o -name *\.md -o -name \.[^.]* ) )") post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:%=${WRKSRC}/%} ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${PORTEXAMPLES:%=${WRKSRC}/%} ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/editors/sly-named-readtables/pkg-plist b/editors/sly-named-readtables/pkg-plist index 609f7b6f4f3a..5ca509b38024 100644 --- a/editors/sly-named-readtables/pkg-plist +++ b/editors/sly-named-readtables/pkg-plist @@ -1,4 +1,3 @@ %%THIS_LISPDIR%%/sly-named-readtables.el -%%THIS_LISPDIR%%/sly-named-readtables.elc %%THIS_LISPDIR%%/slynk-named-readtables.asd %%THIS_LISPDIR%%/slynk-named-readtables.lisp diff --git a/editors/sly-quicklisp/Makefile b/editors/sly-quicklisp/Makefile index 9869df16b592..959e877ef72e 100644 --- a/editors/sly-quicklisp/Makefile +++ b/editors/sly-quicklisp/Makefile @@ -1,52 +1,49 @@ PORTNAME= sly-quicklisp PORTVERSION= 20211206 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= olce.freebsd.ports@certner.fr COMMENT= Basic Quicklisp support for SLY WWW= https://github.com/joaotavora/sly-quicklisp LICENSE= PD -MY_DEPENDS= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/sly/sly.el:editors/sly@${EMACS_FLAVOR} +MY_DEPENDS= ${PREFIX}/${EMACS_SITE_LISPDIR}/sly/sly.el:editors/sly BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} USES= emacs USE_GITHUB= yes GH_ACCOUNT= joaotavora GH_TAGNAME= 34c73d43dd9066262387c626c17a9b486db07b2d -NO_ARCH= yes +CONFLICTS_INSTALL= sly-quicklisp-emacs_* -EMACS_COMPILE= ${EMACS_CMD} --batch --no-site-file -L ${WRKSRC} -f batch-byte-compile +NO_ARCH= yes +NO_BUILD= yes -PLIST_THIS_LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +PLIST_THIS_LISPDIR= ${EMACS_SITE_LISPDIR}/${PORTNAME} THIS_LISPDIR= ${PREFIX}/${PLIST_THIS_LISPDIR} PLIST_SUB+= THIS_LISPDIR=${PLIST_THIS_LISPDIR} # File is buggy and can't be used as documented upstream EXCLUDED_FILES= ${PORTNAME}-autoloads.el -OPTIONS_DEFINE= DOCS - PORTDOCS= README.md screenshot.png -do-build: - cd ${WRKSRC} && ${EMACS_COMPILE} sly-*.el +OPTIONS_DEFINE= DOCS do-install: @${MKDIR} ${STAGEDIR}${THIS_LISPDIR} (cd ${WRKSRC} && \ ${COPYTREE_SHARE} . ${STAGEDIR}${THIS_LISPDIR} \ "! ( -depth 1 ( ${EXCLUDED_FILES:C/^(.*)$/-name \1 -o/} \ ${PORTDOCS:C/^(.*)$/-name \1 -o/} \ -name LICENSE -o -name *\.md -o -name \.[^.]* ) )") post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:%=${WRKSRC}/%} ${STAGEDIR}${DOCSDIR} .include diff --git a/editors/sly-quicklisp/pkg-plist b/editors/sly-quicklisp/pkg-plist index f456f2733181..121b313757c8 100644 --- a/editors/sly-quicklisp/pkg-plist +++ b/editors/sly-quicklisp/pkg-plist @@ -1,6 +1,4 @@ %%THIS_LISPDIR%%/sly-quicklisp-tests.el -%%THIS_LISPDIR%%/sly-quicklisp-tests.elc %%THIS_LISPDIR%%/sly-quicklisp.el -%%THIS_LISPDIR%%/sly-quicklisp.elc %%THIS_LISPDIR%%/slynk-quicklisp.asd %%THIS_LISPDIR%%/slynk-quicklisp.lisp diff --git a/editors/sly/Makefile b/editors/sly/Makefile index bd0738bab33c..40c93b9d4017 100644 --- a/editors/sly/Makefile +++ b/editors/sly/Makefile @@ -1,71 +1,73 @@ PORTNAME= sly DISTVERSION= 1.0.43-20240809 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= editors elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= olce.freebsd.ports@certner.fr COMMENT= Sylvester the Cat's Common Lisp IDE for Emacs WWW= https://github.com/joaotavora/sly LICENSE= PD USES= emacs gmake USE_GITHUB= yes GH_ACCOUNT= joaotavora GH_TAGNAME= 742355f7554ab6c46e5c1c9bdb89068f55359eaa +ALL_TARGET= doc-sly.info + +CONFLICTS_INSTALL= sly-emacs_* + NO_ARCH= yes -INFO= sly +PORTSCOUT= limit:^[0-9] -ALL_TARGET= all doc-sly.info +INFO= sly -PLIST_THIS_LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/sly +PLIST_THIS_LISPDIR= ${EMACS_SITE_LISPDIR}/sly THIS_LISPDIR= ${PREFIX}/${PLIST_THIS_LISPDIR} PLIST_SUB+= THIS_LISPDIR=${PLIST_THIS_LISPDIR} -PORTSCOUT= limit:^[0-9] - OPTIONS_DEFINE= DOCS DOCS_PDF OPTIONS_DEFAULT=DOCS DOCS_PDF DOCS_PDF_DESC= Build PDF documentation (requires DOCS) ROOT_DOCS_FILES= CONTRIBUTING.md NEWS.md PROBLEMS.md README.md GENERATED_DOCS_FILES= sly.html DOCS_BUILD_DEPENDS= texinfo>=5.2:print/texinfo DOCS_PDF_IMPLIES= DOCS DOCS_PDF_USES= tex DOCS_PDF_USE= TEX=latex:build,pdftex:build,dvipsk:build .include .if !empty(PORT_OPTIONS:MDOCS_PDF) GENERATED_DOCS_FILES+= sly.pdf sly-refcard.pdf .endif ALL_TARGET+= ${GENERATED_DOCS_FILES:%=doc-%} PORTDOCS:= CONTRIBUTING.md NEWS.md PROBLEMS.md README.md \ ${GENERATED_DOCS_FILES} do-install: @${MKDIR} ${STAGEDIR}${THIS_LISPDIR} (cd ${WRKSRC} && \ ${COPYTREE_SHARE} . ${STAGEDIR}${THIS_LISPDIR} \ "! ( -depth 1 ( -name Makefile -o -name *\.md -o \ -name \.[^.]* ) -o \ -path \./doc* )") ${INSTALL_DATA} ${WRKSRC}/doc/${INFO}.info \ ${STAGEDIR}${PREFIX}/${INFO_PATH} # DOCS_PDF depends on DOCS post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${ROOT_DOCS_FILES:%=${WRKSRC}/%} \ ${GENERATED_DOCS_FILES:%=${WRKSRC}/doc/%} \ ${STAGEDIR}${DOCSDIR} .include diff --git a/editors/sly/pkg-message b/editors/sly/pkg-message index c77fe0225204..2908faf5668a 100644 --- a/editors/sly/pkg-message +++ b/editors/sly/pkg-message @@ -1,27 +1,24 @@ [ { type: install message: < diff --git a/editors/tamago/pkg-plist b/editors/tamago/pkg-plist index 519b0bbc0892..ed83a836155d 100644 --- a/editors/tamago/pkg-plist +++ b/editors/tamago/pkg-plist @@ -1,70 +1,37 @@ %%ELISPDIR%%/egg/egg-cnv.el.gz -%%ELISPDIR%%/egg/egg-cnv.elc %%ELISPDIR%%/egg/egg-com.el.gz -%%ELISPDIR%%/egg/egg-com.elc %%ELISPDIR%%/egg/egg-edep.el.gz -%%ELISPDIR%%/egg/egg-edep.elc %%ELISPDIR%%/egg/egg-mlh.el.gz -%%ELISPDIR%%/egg/egg-mlh.elc %%ELISPDIR%%/egg/egg-sim.el.gz -%%ELISPDIR%%/egg/egg-sim.elc %%ELISPDIR%%/egg/egg.el.gz -%%ELISPDIR%%/egg/egg.elc %%ELISPDIR%%/egg/egg/.nosearch %%ELISPDIR%%/egg/egg/anthy.el.gz -%%ELISPDIR%%/egg/egg/anthy.elc %%ELISPDIR%%/egg/egg/anthyipc.el.gz -%%ELISPDIR%%/egg/egg/anthyipc.elc %%ELISPDIR%%/egg/egg/canna.el.gz -%%ELISPDIR%%/egg/egg/canna.elc %%ELISPDIR%%/egg/egg/cannarpc.el.gz -%%ELISPDIR%%/egg/egg/cannarpc.elc %%ELISPDIR%%/egg/egg/sj3.el.gz -%%ELISPDIR%%/egg/egg/sj3.elc %%ELISPDIR%%/egg/egg/sj3rpc.el.gz -%%ELISPDIR%%/egg/egg/sj3rpc.elc %%ELISPDIR%%/egg/egg/wnn.el.gz -%%ELISPDIR%%/egg/egg/wnn.elc %%ELISPDIR%%/egg/egg/wnnrpc.el.gz -%%ELISPDIR%%/egg/egg/wnnrpc.elc %%ELISPDIR%%/egg/eggrc %%ELISPDIR%%/egg/its-keydef.el.gz -%%ELISPDIR%%/egg/its-keydef.elc %%ELISPDIR%%/egg/its.el.gz -%%ELISPDIR%%/egg/its.elc %%ELISPDIR%%/egg/its/.nosearch %%ELISPDIR%%/egg/its/ascii.el.gz -%%ELISPDIR%%/egg/its/ascii.elc %%ELISPDIR%%/egg/its/aynu.el.gz -%%ELISPDIR%%/egg/its/aynu.elc %%ELISPDIR%%/egg/its/bixing.el.gz -%%ELISPDIR%%/egg/its/bixing.elc %%ELISPDIR%%/egg/its/erpin.el.gz -%%ELISPDIR%%/egg/its/erpin.elc %%ELISPDIR%%/egg/its/greek.el.gz -%%ELISPDIR%%/egg/its/greek.elc %%ELISPDIR%%/egg/its/hangul.el.gz -%%ELISPDIR%%/egg/its/hangul.elc %%ELISPDIR%%/egg/its/hankata.el.gz -%%ELISPDIR%%/egg/its/hankata.elc %%ELISPDIR%%/egg/its/hira.el.gz -%%ELISPDIR%%/egg/its/hira.elc %%ELISPDIR%%/egg/its/jeonkak.el.gz -%%ELISPDIR%%/egg/its/jeonkak.elc %%ELISPDIR%%/egg/its/jiskana.el.gz -%%ELISPDIR%%/egg/its/jiskana.elc %%ELISPDIR%%/egg/its/kata.el.gz -%%ELISPDIR%%/egg/its/kata.elc %%ELISPDIR%%/egg/its/pinyin.el.gz -%%ELISPDIR%%/egg/its/pinyin.elc %%ELISPDIR%%/egg/its/quanjiao.el.gz -%%ELISPDIR%%/egg/its/quanjiao.elc %%ELISPDIR%%/egg/its/thai.el.gz -%%ELISPDIR%%/egg/its/thai.elc %%ELISPDIR%%/egg/its/zenkaku.el.gz -%%ELISPDIR%%/egg/its/zenkaku.elc %%ELISPDIR%%/egg/its/zhuyin.el.gz -%%ELISPDIR%%/egg/its/zhuyin.elc %%ELISPDIR%%/egg/leim-list.el %%ELISPDIR%%/egg/menudiag.el.gz -%%ELISPDIR%%/egg/menudiag.elc diff --git a/editors/vertico.el/Makefile b/editors/vertico.el/Makefile index 90f1365b1beb..996d708aac58 100644 --- a/editors/vertico.el/Makefile +++ b/editors/vertico.el/Makefile @@ -1,40 +1,38 @@ PORTNAME= vertico.el DISTVERSION= 2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= pat@patmaddox.com COMMENT= VERTical Interactive COmpletion for Emacs WWW= https://github.com/minad/vertico LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} +RUN_DEPENDS= compat.el>=30.1.0.0:misc/compat.el USES= emacs USE_GITHUB= yes GH_ACCOUNT= minad GH_PROJECT= vertico +CONFLICTS_INSTALL= vertico.el-emacs_* + NO_ARCH= yes +NO_BUILD= yes ELISP_FILES= ${WRKSRC}/*.el ${WRKSRC}/extensions/*.el OPTIONS_DEFINE= DOCS -do-build: - ${EMACS_CMD} -q --batch -L ${WRKSRC} -L ${WRKSRC}/extensions \ - -f batch-byte-compile ${ELISP_FILES} - do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/vertico - ${INSTALL_DATA} ${ELISP_FILES} ${ELISP_FILES:S/.el$$/.elc/} \ + ${INSTALL_DATA} ${ELISP_FILES} \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/vertico post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.org ${STAGEDIR}${DOCSDIR} .include diff --git a/editors/vertico.el/pkg-plist b/editors/vertico.el/pkg-plist index 28516b17a635..cc78a1351a9f 100644 --- a/editors/vertico.el/pkg-plist +++ b/editors/vertico.el/pkg-plist @@ -1,29 +1,15 @@ %%EMACS_SITE_LISPDIR%%/vertico/vertico-buffer.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-buffer.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-directory.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-directory.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-flat.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-flat.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-grid.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-grid.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-indexed.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-indexed.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-mouse.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-mouse.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-multiform.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-multiform.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-quick.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-quick.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-repeat.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-repeat.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-reverse.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-reverse.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-sort.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-sort.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-suspend.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-suspend.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico-unobtrusive.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico-unobtrusive.elc %%EMACS_SITE_LISPDIR%%/vertico/vertico.el -%%EMACS_SITE_LISPDIR%%/vertico/vertico.elc %%PORTDOCS%%%%DOCSDIR%%/README.org diff --git a/editors/web-mode/Makefile b/editors/web-mode/Makefile index 5d1132fd2716..b30558d25c78 100644 --- a/editors/web-mode/Makefile +++ b/editors/web-mode/Makefile @@ -1,31 +1,38 @@ PORTNAME= web-mode PORTVERSION= 15.1 DISTVERSIONPREFIX= v -PORTREVISION= 22 +PORTREVISION= 23 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= hrs@FreeBSD.org COMMENT= Autonomous Emacs major-mode for editing web templates WWW= https://web-mode.org LICENSE= GPLv2 USES= emacs USE_GITHUB= yes GH_ACCOUNT= fxbois -MAKEFILE= ${FILESDIR}/Makefile -MAKE_ENV= EMACS="${EMACS_CMD}" LISPDIR="${WEBMODE_LISPDIR}" \ - DESTDIR="${STAGEDIR}" SUB_FILES= web-mode-autoloads.el SUB_LIST= LISPDIR="${WEBMODE_LISPDIR}" -WEBMODE_LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/web-mode -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/web-mode/web-mode.elc.gz \ - ${EMACS_VERSION_SITE_LISPDIR}/web-mode-autoloads.el +WEBMODE_LISPDIR= ${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} +PLIST_FILES= ${EMACS_SITE_LISPDIR}/${PORTNAME}/web-mode.el.gz \ + ${EMACS_SITE_LISPDIR}/web-mode-autoloads.el -post-install: +CONFLICTS_INSTALL= web-mode-emacs_* + +NO_ARCH= yes +NO_BUILD= yes + +do-install: + @${MKDIR} ${STAGEDIR}/${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME}/ ${INSTALL_DATA} ${WRKDIR}/web-mode-autoloads.el \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${STAGEDIR}/${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/web-mode.el \ + ${STAGEDIR}/${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} + +post-install: + ${GZIP_CMD} ${STAGEDIR}/${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME}/*.el .include diff --git a/editors/web-mode/files/Makefile b/editors/web-mode/files/Makefile deleted file mode 100644 index 91d7d8e54c16..000000000000 --- a/editors/web-mode/files/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -SRCS= web-mode.el -OBJS= ${SRCS:C/.el$/.elc/} - -.SUFFIXES: -.SUFFIXES: .el .elc -.el.elc: - ${EMACS} -batch -q -f batch-byte-compile ${.IMPSRC} - -all: ${OBJS} - -install: ${OBJS} - mkdir -p ${DESTDIR}${LISPDIR} - ${BSD_INSTALL_DATA} ${.ALLSRC} ${DESTDIR}${LISPDIR} - cd ${DESTDIR}${LISPDIR} && gzip -9 ${.ALLSRC} diff --git a/editors/with-editor/Makefile b/editors/with-editor/Makefile index 2e72816cb117..810a1c7fa447 100644 --- a/editors/with-editor/Makefile +++ b/editors/with-editor/Makefile @@ -1,63 +1,62 @@ PORTNAME= with-editor DISTVERSIONPREFIX= v DISTVERSION= 3.4.8 +PORTREVISION= 1 CATEGORIES= editors elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= jrm@FreeBSD.org COMMENT= Use the Emacsclient as the $$EDITOR of child processes WWW= https://github.com/magit/with-editor LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} -RUN_DEPENDS= compat.el${EMACS_PKGNAMESUFFIX}>=30.1.0.0:misc/compat.el@${EMACS_FLAVOR} +BUILD_DEPENDS= compat.el>=30.1.0.0:misc/compat.el +RUN_DEPENDS= compat.el>=30.1.0.0:misc/compat.el -USES= emacs gmake makeinfo +USES= emacs:build gmake makeinfo USE_GITHUB= yes GH_ACCOUNT= magit -MAKE_ENV+= LOAD_PATH="-L ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/compat" +MAKE_ENV+= LOAD_PATH="-L ${PREFIX}/${EMACS_SITE_LISPDIR}/compat" MAKE_JOBS_UNSAFE= yes ALL_TARGET= lisp info CONFLICTS_INSTALL= with-editor-devel-emacs* NO_ARCH= yes INFO= with-editor -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/with-editor-autoloads.el \ - ${EMACS_VERSION_SITE_LISPDIR}/with-editor.el \ - ${EMACS_VERSION_SITE_LISPDIR}/with-editor.elc +PLIST_FILES= ${EMACS_SITE_LISPDIR}/with-editor-autoloads.el \ + ${EMACS_SITE_LISPDIR}/with-editor.el PORTDOCS= README.org with-editor.html OPTIONS_DEFINE= DOCS PDF PDF_DESC= Build and install PDF document DOCS_BUILD_DEPENDS= gsed:textproc/gsed DOCS_ALL_TARGET= html DOCS_BINARY_ALIAS= sed=gsed PDF_BUILD_DEPENDS= texi2pdf:print/texinfo PDF_USES= tex PDF_USE= TEX=dvipdfmx:build PDF_ALL_TARGET= pdf PDF_PLIST_FILES= ${DOCSDIR}/with-editor.pdf do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/lisp/*.el* \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/lisp/*.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/docs/*.info ${STAGEDIR}${PREFIX}/${INFO_PATH} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.org \ ${WRKSRC}/docs/with-editor.html ${STAGEDIR}${DOCSDIR} do-install-PDF-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/with-editor.pdf ${STAGEDIR}${DOCSDIR} .include diff --git a/irc/riece/Makefile b/irc/riece/Makefile index 5e2125c44f9f..bbd7a97e3293 100644 --- a/irc/riece/Makefile +++ b/irc/riece/Makefile @@ -1,32 +1,42 @@ PORTNAME= riece PORTVERSION= 9.0.0 -PORTREVISION= 28 +PORTREVISION= 29 PORTEPOCH= 1 CATEGORIES= irc elisp MASTER_SITES= SAVANNAH -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= IRC client for Emacs WWW= https://www.nongnu.org/riece/ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= emacs gmake +USES= emacs:build gmake -NO_ARCH= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-emacs=${EMACS_CMD} \ - --with-lispdir=${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + --with-lispdir=${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + +CONFLICTS_INSTALL= riece-emacs_* + +NO_ARCH= yes + INFO= riece-en riece-ja OPTIONS_DEFINE= DOCS +# do-install: +# @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/riece +# ${INSTALL_DATA} ${WRKSRC}/lisp/*.el \ +# ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/riece + post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in AUTHORS ChangeLog NEWS NEWS.ja README README.ja doc/HACKING doc/HACKING.ja ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor + @${FIND} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/riece \ + -name "*.elc" -delete .include diff --git a/irc/riece/pkg-message b/irc/riece/pkg-message index 47697dd14e45..eb9d5da4119c 100644 --- a/irc/riece/pkg-message +++ b/irc/riece/pkg-message @@ -1,12 +1,13 @@ [ { type: install message: <0:japanese/mozc-el@${EMACS_FLAVOR} -RUN_DEPENDS= ja-mozc-el${EMACS_PKGNAMESUFFIX}>0:japanese/mozc-el@${EMACS_FLAVOR} +BUILD_DEPENDS= ja-mozc-el>0:japanese/mozc-el +RUN_DEPENDS= ja-mozc-el>0:japanese/mozc-el USES= emacs USE_GITHUB= yes GH_ACCOUNT= tadanagao -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}.el \ - ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}.elc +CONFLICTS_INSTALL= ja-boiled-mozc-emacs_* -do-build: - @(cd ${WRKSRC} && ${EMACS_CMD} -batch -q -no-site-file -no-init-file \ - -f batch-byte-compile ${PORTNAME}.el) +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= ${EMACS_SITE_LISPDIR}/${PORTNAME}.el do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.el \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.elc \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/japanese/cp5022x-el/Makefile b/japanese/cp5022x-el/Makefile index 1e8654e73c8d..ecaecb47f0fd 100644 --- a/japanese/cp5022x-el/Makefile +++ b/japanese/cp5022x-el/Makefile @@ -1,33 +1,31 @@ PORTNAME= cp5022x PORTVERSION= 0.0.20120324 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= japanese elisp -PKGNAMESUFFIX= -el${EMACS_PKGNAMESUFFIX} +PKGNAMESUFFIX= -el MAINTAINER= hrs@FreeBSD.org COMMENT= CP50220 and CP51932 coding system support for Emacsen LICENSE= GPLv3+ USES= emacs USE_GITHUB= yes GH_ACCOUNT= awasira GH_PROJECT= cp5022x.el GH_TAGNAME= ea7327d -PLIST_FILES= ${EMACS_SITE_LISPDIR}/cp5022x.el.gz \ - ${EMACS_SITE_LISPDIR}/cp5022x.elc +CONFLICTS_INSTALL= ja-cp5022x-el-emacs_* -do-build: - cd ${BUILD_WRKSRC} && \ - ${EMACS_CMD} -batch -q -no-site-file -no-init-file \ - -f batch-byte-compile cp5022x.el && \ - ${GZIP_CMD} cp5022x.el +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= ${EMACS_SITE_LISPDIR}/cp5022x.el.gz do-install: + ${GZIP_CMD} ${BUILD_WRKSRC}/cp5022x.el ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} && \ - cd ${INSTALL_WRKSRC} && \ - ${INSTALL_DATA} cp5022x.elc cp5022x.el.gz \ + cd ${INSTALL_WRKSRC} && ${INSTALL_DATA} cp5022x.el.gz \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/japanese/ddskk/Makefile b/japanese/ddskk/Makefile index 59da3e5be59d..2f8e1c703902 100644 --- a/japanese/ddskk/Makefile +++ b/japanese/ddskk/Makefile @@ -1,50 +1,53 @@ PORTNAME= ddskk DISTVERSION= 17.2 +PORTREVISION= 1 CATEGORIES= japanese elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= mce@FreeBSD.org COMMENT= Simple Kana to Kanji conversion program on Emacsen WWW= http://openlab.ring.gr.jp/skk/ddskk.html LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -USES= emacs +USES= emacs:build USE_GITHUB= yes GH_ACCOUNT= skk-dev GH_TAGNAME= ddskk-17.2_Mena MAKE_ARGS= PREFIX="${STAGEDIR}${PREFIX}" \ SKK_LISPDIR="${STAGEDIR}${PREFIX}/${SKK_LISPDIR}" \ SKK_INFODIR="${STAGEDIR}${PREFIX}/${INFO_PATH}" -ALL_TARGET= elc info +ALL_TARGET= info + +CONFLICTS_INSTALL= ja-ddskk-emacs_* + NO_ARCH= yes INFO= skk PLIST_SUB= SKK_LISPDIR=${SKK_LISPDIR} PORTDOCS= AUTHORS.ja CODENAME.ja Contributors Development.ja.org \ FAQ.ja NEWS.ja README.ccc.org history.md PORTEXAMPLES= dot.emacs dot.skk -SKK_LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/skk +SKK_LISPDIR= ${EMACS_SITE_LISPDIR}/skk OPTIONS_DEFINE= DOCS EXAMPLES post-patch: @${REINPLACE_CMD} -e \ '/skk-tut-file/s|@TUT@|${PREFIX}/share/skk/SKK.tut|' \ ${WRKSRC}/skk-setup.el.in post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/READMEs/ && ${INSTALL_DATA} ${PORTDOCS} \ ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/etc/ && ${INSTALL_DATA} ${PORTEXAMPLES} \ ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/japanese/ddskk/files/patch-SKK-MK b/japanese/ddskk/files/patch-SKK-MK index 4d95174babdc..a34ba67d09df 100644 --- a/japanese/ddskk/files/patch-SKK-MK +++ b/japanese/ddskk/files/patch-SKK-MK @@ -1,16 +1,29 @@ ---- SKK-MK.orig 2024-03-17 07:41:31 UTC +--- SKK-MK.orig 2026-03-29 13:17:07 UTC +++ SKK-MK -@@ -229,11 +229,13 @@ This version of SKK requires MULE features")) - skk-inline - skk-isearch - skk-jisx0201 +@@ -234,11 +234,13 @@ This version of SKK requires MULE features")) + skk-inline + skk-isearch + skk-jisx0201 + skk-jisx0213 - skk-jisyo-edit-mode - skk-kakasi - skk-kcode - skk-leim - skk-look + skk-jisyo-edit-mode + skk-kakasi + skk-kcode + skk-leim + skk-look + skk-lookup - skk-macs - skk-num - skk-search-web + skk-macs + skk-num + skk-search-web +@@ -409,11 +411,7 @@ This version of SKK requires MULE features")) + + (defun SKK-MK-compile () + (let (enable-local-eval) +- (SKK-MK-generate-autoloads-el) +- ;; (load (expand-file-name "skk-autoloads.el")) +- ;; (require 'skk (expand-file-name "skk.el")) +- (compile-elisp-modules SKK_MODULES +- (expand-file-name ".")))) ++ (SKK-MK-generate-autoloads-el))) + + (defun SKK-MK-compile-info () + (when (and SKK_INFO diff --git a/japanese/ddskk/pkg-plist b/japanese/ddskk/pkg-plist index 530937fd89ab..4146d1c8b7b9 100644 --- a/japanese/ddskk/pkg-plist +++ b/japanese/ddskk/pkg-plist @@ -1,92 +1,49 @@ %%SKK_LISPDIR%%/ccc.el -%%SKK_LISPDIR%%/ccc.elc %%SKK_LISPDIR%%/cdb.el -%%SKK_LISPDIR%%/cdb.elc %%SKK_LISPDIR%%/context-skk.el -%%SKK_LISPDIR%%/context-skk.elc %%SKK_LISPDIR%%/leim-list.el %%SKK_LISPDIR%%/skk-abbrev.el -%%SKK_LISPDIR%%/skk-abbrev.elc %%SKK_LISPDIR%%/skk-act.el -%%SKK_LISPDIR%%/skk-act.elc %%SKK_LISPDIR%%/skk-annotation.el -%%SKK_LISPDIR%%/skk-annotation.elc %%SKK_LISPDIR%%/skk-auto.el -%%SKK_LISPDIR%%/skk-auto.elc %%SKK_LISPDIR%%/skk-autoloads.el -%%SKK_LISPDIR%%/skk-autoloads.elc %%SKK_LISPDIR%%/skk-azik.el -%%SKK_LISPDIR%%/skk-azik.elc %%SKK_LISPDIR%%/skk-cdb.el -%%SKK_LISPDIR%%/skk-cdb.elc %%SKK_LISPDIR%%/skk-comp.el -%%SKK_LISPDIR%%/skk-comp.elc %%SKK_LISPDIR%%/skk-cursor.el -%%SKK_LISPDIR%%/skk-cursor.elc %%SKK_LISPDIR%%/skk-cus.el -%%SKK_LISPDIR%%/skk-cus.elc %%SKK_LISPDIR%%/skk-dcomp.el -%%SKK_LISPDIR%%/skk-dcomp.elc %%SKK_LISPDIR%%/skk-decor.el -%%SKK_LISPDIR%%/skk-decor.elc %%SKK_LISPDIR%%/skk-develop.el -%%SKK_LISPDIR%%/skk-develop.elc %%SKK_LISPDIR%%/skk-emacs.el -%%SKK_LISPDIR%%/skk-emacs.elc %%SKK_LISPDIR%%/skk-gadget.el -%%SKK_LISPDIR%%/skk-gadget.elc %%SKK_LISPDIR%%/skk-hint.el -%%SKK_LISPDIR%%/skk-hint.elc %%SKK_LISPDIR%%/skk-inline.el -%%SKK_LISPDIR%%/skk-inline.elc %%SKK_LISPDIR%%/skk-isearch.el -%%SKK_LISPDIR%%/skk-isearch.elc %%SKK_LISPDIR%%/skk-jisx0201.el -%%SKK_LISPDIR%%/skk-jisx0201.elc %%SKK_LISPDIR%%/skk-jisx0213.el -%%SKK_LISPDIR%%/skk-jisx0213.elc %%SKK_LISPDIR%%/skk-jisyo-edit-mode.el -%%SKK_LISPDIR%%/skk-jisyo-edit-mode.elc %%SKK_LISPDIR%%/skk-kakasi.el -%%SKK_LISPDIR%%/skk-kakasi.elc %%SKK_LISPDIR%%/skk-kcode.el -%%SKK_LISPDIR%%/skk-kcode.elc %%SKK_LISPDIR%%/skk-leim.el -%%SKK_LISPDIR%%/skk-leim.elc %%SKK_LISPDIR%%/skk-look.el -%%SKK_LISPDIR%%/skk-look.elc %%SKK_LISPDIR%%/skk-lookup.el -%%SKK_LISPDIR%%/skk-lookup.elc %%SKK_LISPDIR%%/skk-macs.el -%%SKK_LISPDIR%%/skk-macs.elc %%SKK_LISPDIR%%/skk-num.el -%%SKK_LISPDIR%%/skk-num.elc %%SKK_LISPDIR%%/skk-search-web.el -%%SKK_LISPDIR%%/skk-search-web.elc %%SKK_LISPDIR%%/skk-server-completion.el -%%SKK_LISPDIR%%/skk-server-completion.elc %%SKK_LISPDIR%%/skk-server.el -%%SKK_LISPDIR%%/skk-server.elc %%SKK_LISPDIR%%/skk-setup.el %%SKK_LISPDIR%%/skk-show-mode.el -%%SKK_LISPDIR%%/skk-show-mode.elc %%SKK_LISPDIR%%/skk-sticky.el -%%SKK_LISPDIR%%/skk-sticky.elc %%SKK_LISPDIR%%/skk-study.el -%%SKK_LISPDIR%%/skk-study.elc %%SKK_LISPDIR%%/skk-tankan.el -%%SKK_LISPDIR%%/skk-tankan.elc %%SKK_LISPDIR%%/skk-tut.el -%%SKK_LISPDIR%%/skk-tut.elc %%SKK_LISPDIR%%/skk-vars.el -%%SKK_LISPDIR%%/skk-vars.elc %%SKK_LISPDIR%%/skk-version.el -%%SKK_LISPDIR%%/skk-version.elc %%SKK_LISPDIR%%/skk-viper.el -%%SKK_LISPDIR%%/skk-viper.elc %%SKK_LISPDIR%%/skk.el -%%SKK_LISPDIR%%/skk.elc share/skk/NICOLA-SKK.tut share/skk/SKK.tut share/skk/SKK.tut.E share/skk/skk.xpm diff --git a/japanese/lookup/Makefile b/japanese/lookup/Makefile index 2ef9fed25380..92a571ab1bf2 100644 --- a/japanese/lookup/Makefile +++ b/japanese/lookup/Makefile @@ -1,33 +1,36 @@ PORTNAME= lookup PORTVERSION= 1.99.96.20180209 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= japanese elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Emacs search interface for CD-ROM books, etc WWW= https://lookup2.github.io/ LICENSE= GPLv2+ -USES= autoreconf emacs makeinfo - +USES= autoreconf emacs:build makeinfo USE_GITHUB= yes GH_ACCOUNT= lookup2 GH_PROJECT= lookup2 GH_TAGNAME= c4f4986 - -INFO= lookup GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-emacs=${EMACS_CMD} \ - --with-lispdir=${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + --with-lispdir=${PREFIX}/${EMACS_SITE_LISPDIR} -OPTIONS_DEFINE= DOCS +CONFLICTS_INSTALL= ja-lookup-emacs_* +NO_ARCH= yes + +INFO= lookup PORTDOCS= AUTHORS ChangeLog NEWS README.md +OPTIONS_DEFINE= DOCS + post-install: + @${FIND} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/lookup \ + -name "*.elc" -delete ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include diff --git a/japanese/lookup/pkg-plist b/japanese/lookup/pkg-plist index c6f2d1a16828..d047459378d7 100644 --- a/japanese/lookup/pkg-plist +++ b/japanese/lookup/pkg-plist @@ -1,141 +1,71 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/bocu.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/bocu.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/hanzi-py-table.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/hanzi-py-table.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-autoloads.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-cache.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-cache.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-content.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-content.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-history.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-history.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-modules.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-modules.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-select.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-select.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-summary.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-summary.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-text.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-text.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-types.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-types.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-utils.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-utils.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-vars.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup-vars.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/lookup.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndbtonic.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndbtonic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndbuffer.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndbuffer.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndcookie.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndcookie.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/nddsl.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/nddsl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndeb-binary.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndeb-binary.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndeb.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndeb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndest.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndest.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndic.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndict.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndict.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndjitsuu.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndjitsuu.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndlatin.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndlatin.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndmecab.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndmecab.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndpdic.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndpdic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndsary.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndsary.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndspell.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndspell.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndspotlight.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndspotlight.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndsrd.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndsrd.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndtext.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndtext.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndtut.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndtut.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndwdsgrep.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndwdsgrep.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndweb-options.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndweb-options.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndweb.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndweb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndwnj.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndwnj.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndzim.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/ndzim.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/stem-english.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/stem-english.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-chinakan.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-chinakan.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-defs.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-defs.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-dkw-word.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-dkw-word.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-dkw2ucs.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-dkw2ucs.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-eijiro-pdic.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-eijiro-pdic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-eijiro.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-eijiro.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-foldoc-fpw.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-foldoc-fpw.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-jargon-fpw.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-jargon-fpw.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-jitsuu.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-jitsuu.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-jmdict.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-jmdict.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-jtfrk.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-jtfrk.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-muller.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-muller.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-ndweb.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-ndweb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-onmusic.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-onmusic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-oxford-eb.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-oxford-eb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-pdic-cj2.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-pdic-cj2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-pdic-thai.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-pdic-thai.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-rangjung.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-rangjung.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-rfc1983.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-rfc1983.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-rfc4949.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-rfc4949.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-sbgy.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-sbgy.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-sdic.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-sdic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-srd.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-srd.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-swjz.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-swjz.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-ucd.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-ucd.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-vera-fpw.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-vera-fpw.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-waseikanji.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-waseikanji.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-xszd.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-xszd.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-zhongri.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-zhongri.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-zigen.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/support-zigen.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/tibet-util+.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/tibet-util+.elc -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/view-pdf.el -%%EMACS_VERSION_SITE_LISPDIR%%/lookup/view-pdf.elc +%%EMACS_SITE_LISPDIR%%/lookup/bocu.el +%%EMACS_SITE_LISPDIR%%/lookup/hanzi-py-table.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-autoloads.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-cache.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-content.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-history.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-modules.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-select.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-summary.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-text.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-types.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-utils.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup-vars.el +%%EMACS_SITE_LISPDIR%%/lookup/lookup.el +%%EMACS_SITE_LISPDIR%%/lookup/ndbtonic.el +%%EMACS_SITE_LISPDIR%%/lookup/ndbuffer.el +%%EMACS_SITE_LISPDIR%%/lookup/ndcookie.el +%%EMACS_SITE_LISPDIR%%/lookup/nddsl.el +%%EMACS_SITE_LISPDIR%%/lookup/ndeb-binary.el +%%EMACS_SITE_LISPDIR%%/lookup/ndeb.el +%%EMACS_SITE_LISPDIR%%/lookup/ndest.el +%%EMACS_SITE_LISPDIR%%/lookup/ndic.el +%%EMACS_SITE_LISPDIR%%/lookup/ndict.el +%%EMACS_SITE_LISPDIR%%/lookup/ndjitsuu.el +%%EMACS_SITE_LISPDIR%%/lookup/ndlatin.el +%%EMACS_SITE_LISPDIR%%/lookup/ndmecab.el +%%EMACS_SITE_LISPDIR%%/lookup/ndpdic.el +%%EMACS_SITE_LISPDIR%%/lookup/ndsary.el +%%EMACS_SITE_LISPDIR%%/lookup/ndspell.el +%%EMACS_SITE_LISPDIR%%/lookup/ndspotlight.el +%%EMACS_SITE_LISPDIR%%/lookup/ndsrd.el +%%EMACS_SITE_LISPDIR%%/lookup/ndtext.el +%%EMACS_SITE_LISPDIR%%/lookup/ndtut.el +%%EMACS_SITE_LISPDIR%%/lookup/ndwdsgrep.el +%%EMACS_SITE_LISPDIR%%/lookup/ndweb-options.el +%%EMACS_SITE_LISPDIR%%/lookup/ndweb.el +%%EMACS_SITE_LISPDIR%%/lookup/ndwnj.el +%%EMACS_SITE_LISPDIR%%/lookup/ndzim.el +%%EMACS_SITE_LISPDIR%%/lookup/stem-english.el +%%EMACS_SITE_LISPDIR%%/lookup/support-chinakan.el +%%EMACS_SITE_LISPDIR%%/lookup/support-defs.el +%%EMACS_SITE_LISPDIR%%/lookup/support-dkw-word.el +%%EMACS_SITE_LISPDIR%%/lookup/support-dkw2ucs.el +%%EMACS_SITE_LISPDIR%%/lookup/support-eijiro-pdic.el +%%EMACS_SITE_LISPDIR%%/lookup/support-eijiro.el +%%EMACS_SITE_LISPDIR%%/lookup/support-foldoc-fpw.el +%%EMACS_SITE_LISPDIR%%/lookup/support-jargon-fpw.el +%%EMACS_SITE_LISPDIR%%/lookup/support-jitsuu.el +%%EMACS_SITE_LISPDIR%%/lookup/support-jmdict.el +%%EMACS_SITE_LISPDIR%%/lookup/support-jtfrk.el +%%EMACS_SITE_LISPDIR%%/lookup/support-muller.el +%%EMACS_SITE_LISPDIR%%/lookup/support-ndweb.el +%%EMACS_SITE_LISPDIR%%/lookup/support-onmusic.el +%%EMACS_SITE_LISPDIR%%/lookup/support-oxford-eb.el +%%EMACS_SITE_LISPDIR%%/lookup/support-pdic-cj2.el +%%EMACS_SITE_LISPDIR%%/lookup/support-pdic-thai.el +%%EMACS_SITE_LISPDIR%%/lookup/support-rangjung.el +%%EMACS_SITE_LISPDIR%%/lookup/support-rfc1983.el +%%EMACS_SITE_LISPDIR%%/lookup/support-rfc4949.el +%%EMACS_SITE_LISPDIR%%/lookup/support-sbgy.el +%%EMACS_SITE_LISPDIR%%/lookup/support-sdic.el +%%EMACS_SITE_LISPDIR%%/lookup/support-srd.el +%%EMACS_SITE_LISPDIR%%/lookup/support-swjz.el +%%EMACS_SITE_LISPDIR%%/lookup/support-ucd.el +%%EMACS_SITE_LISPDIR%%/lookup/support-vera-fpw.el +%%EMACS_SITE_LISPDIR%%/lookup/support-waseikanji.el +%%EMACS_SITE_LISPDIR%%/lookup/support-xszd.el +%%EMACS_SITE_LISPDIR%%/lookup/support-zhongri.el +%%EMACS_SITE_LISPDIR%%/lookup/support-zigen.el +%%EMACS_SITE_LISPDIR%%/lookup/tibet-util+.el +%%EMACS_SITE_LISPDIR%%/lookup/view-pdf.el diff --git a/japanese/migemo.el/Makefile b/japanese/migemo.el/Makefile index 1a9ea10e4c0e..32a475e883c0 100644 --- a/japanese/migemo.el/Makefile +++ b/japanese/migemo.el/Makefile @@ -1,36 +1,36 @@ PORTNAME= migemo.el PORTVERSION= 1.9.2 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= japanese elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= nobutaka@FreeBSD.org COMMENT= Japanese incremental search tool for Emacs WWW= https://github.com/emacs-jp/migemo LICENSE= GPLv2 RUN_DEPENDS= cmigemo:japanese/cmigemo USES= emacs USE_GITHUB= yes GH_ACCOUNT= emacs-jp GH_PROJECT= migemo GH_TAGNAME= e4744ef -CONFLICTS= ja-migemo-emacs +CONFLICTS_INSTALL= ja-migemo.el-emacs_* + NO_ARCH= yes NO_BUILD= yes PLIST_FILES= ${EMACS_SITE_LISPDIR}/migemo.el PORTDOCS= README.md OPTIONS_DEFINE= DOCS do-install: ${INSTALL_DATA} ${WRKSRC}/migemo.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/japanese/mozc-el/Makefile b/japanese/mozc-el/Makefile index 3e60e7c75466..381082e5620d 100644 --- a/japanese/mozc-el/Makefile +++ b/japanese/mozc-el/Makefile @@ -1,10 +1,12 @@ -PKGNAMESUFFIX= -el${EMACS_PKGNAMESUFFIX} +PKGNAMESUFFIX= -el COMMENT= Emacs input method for Mozc MASTERDIR= ${.CURDIR}/../../japanese/mozc-server PKGMESSAGE= ${.CURDIR}/pkg-message +CONFLICTS_INSTALL= ja-mozc-el-emacs_* + BUILD_MOZC_LIST=mozc_el .include "${MASTERDIR}/Makefile" diff --git a/japanese/mozc-el/pkg-message b/japanese/mozc-el/pkg-message index a83191f74d72..436907c15637 100644 --- a/japanese/mozc-el/pkg-message +++ b/japanese/mozc-el/pkg-message @@ -1,12 +1,12 @@ [ { type: install message: <=20200512:devel/py-gyp@${PY_FLAVOR} EXTRACT_DEPENDS=${PYTHON_CMD}:${PYTHON_PORTSDIR} LIB_DEPENDS= libprotobuf.so:devel/protobuf \ libzinnia.so:japanese/zinnia RUN_DEPENDS= xdg-open:devel/xdg-utils BROKEN_FreeBSD_13_powerpc64= fails to build: ERROR: ninja -v -C out_linux/Release mozc_server: Error code 1 BROKEN_powerpc= fails to compile: segfault USE_GITHUB= yes GH_ACCOUNT= hrs-allbsd GH_TUPLE= hiroyuki-komatsu:japanese-usage-dictionary:e5b3425:udic USES= compiler:c++17-lang gmake ninja:build pkgconfig \ python:build shebangfix tar:bzip2 SHEBANG_FILES= src/build_mozc.py BUILD_WRKSRC= ${WRKSRC}/src LDFLAGS+= -labsl_spinlock_wait USE_CXXSTD= c++17 BUILD_MOZC_LIST?= mozc_server .if ${BUILD_MOZC_LIST:Mmozc_server} == "mozc_server" PKGNAMEPREFIX= ja- PKGNAMESUFFIX= -server LICENSE= BSD3CLAUSE NAISTL LICENSE_COMB= multi LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/LICENSE LICENSE_DISTFILES_BSD3CLAUSE= ${DISTNAME}${EXTRACT_SUFX} LICENSE_NAME_NAISTL= Nara Institute of Science and Technology License LICENSE_PERMS_NAISTL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_FILE_NAISTL= ${WRKSRC}/src/data/dictionary_oss/README.txt LICENSE_DISTFILES_NAISTL=${DISTNAME}${EXTRACT_SUFX} .elif ${BUILD_MOZC_LIST:Mmozc_tool} == "mozc_tool" USES+= qt:5 gnome USE_GNOME= glib20 gtk20 USE_QT= buildtools core gui widgets .elif ${BUILD_MOZC_LIST:Mibus_mozc} == "ibus_mozc" USES+= gettext-runtime gnome xorg USE_XORG= xcb USE_GNOME= cairo gdkpixbuf glib20 gtk20 LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 .elif ${BUILD_MOZC_LIST:Mmozc_el} == "mozc_el" USES+= emacs .elif ${BUILD_MOZC_LIST:Mfcitx_mozc} USES+= gettext-tools .endif # Use GCC only when the stock clang does not have libc++.so. .if exists(/usr/bin/clang) && exists(/usr/lib/libc++.so) _CCTYPE= clang .else USE_GCC= yes _CCTYPE= gcc .endif .include GYP_DEFINES= use_libprotobuf=1 \ channel_dev=0 \ enable_unittest=0 \ compiler_host='${_CCTYPE}' \ compiler_target='${_CCTYPE}' \ use_libzinnia=1 \ zinnia_model_file='${LOCALBASE}/share/tegaki/models/zinnia/handwriting-ja.model' \ ibus_mozc_icon_path='${LOCALBASE}/share/ibus-mozc/icons/product_icon.png' \ ibus_mozc_path='${PREFIX}/libexec/ibus-engine-mozc' BUILD_MODE= Release BUILD_CMD= ${SETENV} ${MAKE_ENV} PATH=/bin:/usr/bin:${PATH} ${MAKE_CMD} BUILD_MOZC_CMD= cd ${BUILD_WRKSRC} && \ ${SETENV} BUILD_COMMAND="${BUILD_WRKSRC}/mozcmake" \ PATH="${PATH}" \ GYP_DEFINES="${GYP_DEFINES}" \ PYTHONPATH=${PYTHON_SITELIBDIR}/gyp \ CC_host="${CC}" \ CC_target="${CC}" \ CXX_host="${CXX}" \ CXX_target="${CXX}" \ LD_host="${CXX}" \ AR_host="${AR}" \ ${MAKE_ENV} \ ${PYTHON_CMD} build_mozc.py BUILD_MOZC_CMD_BUILD= ${BUILD_MOZC_CMD} build -c ${BUILD_MODE} ${_MAKE_JOBS} BUILD_GYP_CMD= ${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/gyp post-extract: # XXX: do not activate fcitx5 ${RM} -r ${WRKSRC}/src/unix/fcitx5 post-patch: ${FIND} ${BUILD_WRKSRC} \( -name '*.gyp' -o -name '*.gypi' \) -exec \ ${REINPLACE_CMD} "s,'python','${PYTHON_CMD}',g" {} \; .if ${BUILD_MOZC_LIST:Mfcitx_mozc} == "fcitx_mozc" ${REINPLACE_CMD} 's,/po/mo},%po}mo,g' \ ${BUILD_WRKSRC}/unix/fcitx/gen_fcitx_mozc_i18n.sh ${REINPLACE_CMD} \ "s,IconName=.*,IconName=${LOCALBASE:Q}/share/fcitx/mozc/icon/mozc.png," \ ${BUILD_WRKSRC}/unix/fcitx/mozc.conf .endif .if !${BUILD_MOZC_LIST:Mmozc_el} ${BUILD_WRKSRC}/mozcmake: ${PRINTF} "%s\n\n%s\n" "#!/bin/sh" 'exec ${BUILD_CMD} "$$@"' \ > ${BUILD_WRKSRC}/mozcmake ${CHMOD} +x ${BUILD_WRKSRC}/mozcmake post-configure: ${BUILD_WRKSRC}/mozcmake ${BUILD_MOZC_CMD} gyp \ --gypdir=${LOCALBASE}/bin \ --server_dir="${PREFIX}/bin" \ --tool_dir="${PREFIX}/libexec" \ --renderer_dir="${PREFIX}/libexec" \ --localbase="${LOCALBASE}" \ --ldflags="${LDFLAGS} -fstack-protector -L${LOCALBASE}/lib" \ --cflags="${CFLAGS:Q}" \ --cflags_cc="${CXXFLAGS:Q}" \ --include_dirs="${LOCALBASE}/include" \ ${GYP_OPTIONS} .endif # mozc_server .if ${BUILD_MOZC_LIST:Mmozc_server} == "mozc_server" || make(makesum) GYP_OPTIONS+= --noqt GYP_DEFINES+= use_libibus=0 \ enable_gtk_renderer=0 MASTER_SITES+= LOCAL/hrs:zipcode DISTFILES+= \ ken_all-20221228.zip:zipcode \ jigyosyo-20221228.zip:zipcode PLIST_FILES+= bin/mozc \ bin/mozc_server \ libexec/mozc_emacs_helper SUB_FILES+= mozc post-patch-mozc_server: @for F in ${DISTFILES:M*\:zipcode:C/\:zipcode//}; do \ ${UNZIP_NATIVE_CMD} -L -d ${BUILD_WRKSRC}/data/dictionary_oss \ ${DISTDIR}/$$F; \ done cd ${BUILD_WRKSRC}/data/dictionary_oss && \ ${SETENV} PYTHONPATH=${BUILD_WRKSRC} \ ${PYTHON_CMD} ${BUILD_WRKSRC}/dictionary/gen_zip_code_seed.py \ --zip_code=ken_all.csv --jigyosyo=jigyosyo.csv \ >> dictionary09.txt ${MV} ${WRKSRC_udic}/usage_dict.txt \ ${BUILD_WRKSRC}/third_party/japanese_usage_dictionary post-patch: post-patch-mozc_server do-build-mozc_server: ${BUILD_MOZC_CMD_BUILD} server/server.gyp:mozc_server ${BUILD_MOZC_CMD_BUILD} unix/emacs/emacs.gyp:mozc_emacs_helper do-install-mozc_server: ${INSTALL_PROGRAM} \ ${BUILD_WRKSRC}/out_linux/${BUILD_MODE}/mozc_server \ ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} \ ${BUILD_WRKSRC}/out_linux/${BUILD_MODE}/mozc_emacs_helper \ ${STAGEDIR}${PREFIX}/libexec ${INSTALL_SCRIPT} \ ${WRKDIR}/mozc ${STAGEDIR}/${PREFIX}/bin .endif # mozc_tool .if ${BUILD_MOZC_LIST:Mmozc_tool} == "mozc_tool" GYP_DEFINES+= use_libibus=0 \ enable_gtk_renderer=1 RUN_DEPENDS+= ${LOCALBASE}/share/tegaki/models/zinnia/handwriting-ja.model:japanese/tegaki-zinnia-japanese PLIST_FILES+= libexec/mozc_tool \ bin/mozc_tool \ %%DATADIR%%/icons/product_logo.png \ %%DATADIR%%/icons/update_uptodate.png SUB_FILES+= mozc_tool do-build-mozc_tool: ${BUILD_MOZC_CMD_BUILD} gui/gui.gyp:mozc_tool do-install-mozc_tool: ${INSTALL_PROGRAM} \ ${BUILD_WRKSRC}/out_linux/${BUILD_MODE}/mozc_tool \ ${STAGEDIR}${PREFIX}/libexec ${INSTALL_SCRIPT} ${WRKDIR}/mozc_tool ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${DATADIR}/icons ${INSTALL_DATA} \ ${BUILD_WRKSRC}/data/images/unix/ime_product_icon_opensource-32.png \ ${STAGEDIR}${DATADIR}/icons/product_logo.png ${INSTALL_DATA} \ ${BUILD_WRKSRC}/data/images/unix/ime_product_icon_opensource-32.png \ ${STAGEDIR}${DATADIR}/icons/update_uptodate.png .endif # ibus_mozc .if ${BUILD_MOZC_LIST:Mibus_mozc} == "ibus_mozc" GYP_OPTIONS+= --noqt GYP_DEFINES+= use_libibus=1 \ enable_gtk_renderer=1 LIB_DEPENDS+= libibus-1.0.so:textproc/ibus RUN_DEPENDS+= mozc_server:japanese/mozc-server \ mozc_tool:japanese/mozc-tool PLIST_FILES+= libexec/mozc_renderer \ libexec/ibus-engine-mozc \ %%DATADIR%%/icons/alpha_full.png \ %%DATADIR%%/icons/alpha_half.png \ %%DATADIR%%/icons/dictionary.png \ %%DATADIR%%/icons/direct.png \ %%DATADIR%%/icons/hiragana.png \ %%DATADIR%%/icons/katakana_full.png \ %%DATADIR%%/icons/katakana_half.png \ %%DATADIR%%/icons/product_icon.png \ %%DATADIR%%/icons/properties.png \ %%DATADIR%%/icons/tool.png \ share/ibus/component/mozc.xml PLIST_DIRS+= %%DATADIR%%/icons ${DATADIR_REL} do-build-ibus_mozc: ${BUILD_MOZC_CMD_BUILD} \ unix/ibus/ibus.gyp:ibus_mozc \ renderer/renderer.gyp:mozc_renderer do-install-ibus_mozc: ${INSTALL_PROGRAM} \ ${BUILD_WRKSRC}/out_linux/${BUILD_MODE}/mozc_renderer \ ${STAGEDIR}${PREFIX}/libexec/mozc_renderer ${INSTALL_PROGRAM} \ ${BUILD_WRKSRC}/out_linux/${BUILD_MODE}/ibus_mozc \ ${STAGEDIR}${PREFIX}/libexec/ibus-engine-mozc ${MKDIR} ${STAGEDIR}${PREFIX}/share/ibus/component ${INSTALL_DATA} \ ${BUILD_WRKSRC}/out_linux/${BUILD_MODE}/gen/unix/ibus/mozc.xml \ ${STAGEDIR}${PREFIX}/share/ibus/component/mozc.xml @${MKDIR} ${STAGEDIR}${DATADIR}/icons .for F in ui-alpha_full ui-alpha_half ui-dictionary ui-direct \ ui-hiragana ui-katakana_full ui-katakana_half ui-properties ui-tool ${INSTALL_DATA} \ ${BUILD_WRKSRC}/data/images/unix/${F}.png \ ${STAGEDIR}${DATADIR}/icons/${F:S/^ui-//}.png .endfor ${INSTALL_DATA} \ ${BUILD_WRKSRC}/data/images/unix/ime_product_icon_opensource-32.png \ ${STAGEDIR}${DATADIR}/icons/product_icon.png .endif # uim_mozc .if ${BUILD_MOZC_LIST:Muim_mozc} == "uim_mozc" || make(makesum) GH_TUPLE+= e-kato:macuim:v0.6.16.2.1:MU LIB_DEPENDS+= libuim.so:textproc/uim RUN_DEPENDS+= mozc_server:japanese/mozc-server \ mozc_tool:japanese/mozc-tool EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-unix-uim-mozc.cc \ ${PATCHDIR}/extra-patch-src-unix-uim-uim.gyp \ ${PATCHDIR}/extra-patch-src-unix-uim-key_translator.h \ ${PATCHDIR}/extra-patch-src-unix-uim-key_translator.cc PLIST_FILES+= lib/uim/plugin/libuim-mozc.so \ %%DATADIR%%/mozc.scm \ %%DATADIR%%/mozc-custom.scm \ %%DATADIR%%/mozc-key-custom.scm \ %%DATADIR%%/pixmaps/mozc.png \ "@postexec ${SETENV} MOZC_NOLOG=true ${LOCALBASE}/bin/uim-module-manager --register mozc" \ "@preunexec ${LOCALBASE}/bin/uim-module-manager --unregister mozc" GYP_OPTIONS+= --noqt GYP_DEFINES+= use_libibus=0 \ enable_gtk_renderer=0 post-extract-uim_mozc: ${MV} ${WRKSRC_MU}/Mozc/uim ${BUILD_WRKSRC}/unix ${REINPLACE_CMD} -e "s,/usr/lib/mozc,${LOCALBASE}/libexec," \ ${WRKSRC_MU}/Mozc/scm/mozc-custom.scm post-extract: post-extract-uim_mozc do-build-uim_mozc: ${BUILD_MOZC_CMD_BUILD} \ unix/uim/uim.gyp:uim-mozc do-install-uim_mozc: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/uim/plugin ${INSTALL_PROGRAM} \ ${BUILD_WRKSRC}/out_linux/${BUILD_MODE}/libuim-mozc.so \ ${STAGEDIR}${PREFIX}/lib/uim/plugin ${MKDIR} ${STAGEDIR}${DATADIR} cd ${WRKSRC_MU}/Mozc/scm && \ ${INSTALL_DATA} mozc.scm mozc-custom.scm mozc-key-custom.scm \ ${STAGEDIR}${DATADIR} ${MKDIR} ${STAGEDIR}${DATADIR}/pixmaps ${INSTALL_DATA} \ ${BUILD_WRKSRC}/data/images/product_icon_32bpp-128.png \ ${STAGEDIR}${DATADIR}/pixmaps/mozc.png .endif # fcitx_mozc .if ${BUILD_MOZC_LIST:Mfcitx_mozc} == "fcitx_mozc" GYP_OPTIONS+= --noqt GYP_DEFINES+= use_libibus=0 \ enable_gtk_renderer=0 \ use_fcitx="YES" LIB_DEPENDS+= libfcitx-core.so:chinese/fcitx RUN_DEPENDS+= mozc_server:japanese/mozc-server \ mozc_tool:japanese/mozc-tool PLIST_FILES+= lib/fcitx/fcitx-mozc.so \ share/fcitx/addon/fcitx-mozc.conf \ share/fcitx/inputmethod/mozc.conf \ %%DATADIR%%/icon/mozc.png \ %%DATADIR%%/icon/mozc-alpha_full.png \ %%DATADIR%%/icon/mozc-alpha_half.png \ %%DATADIR%%/icon/mozc-direct.png \ %%DATADIR%%/icon/mozc-hiragana.png \ %%DATADIR%%/icon/mozc-katakana_full.png \ %%DATADIR%%/icon/mozc-katakana_half.png \ %%DATADIR%%/icon/mozc-dictionary.png \ %%DATADIR%%/icon/mozc-properties.png \ %%DATADIR%%/icon/mozc-tool.png \ share/locale/ja/LC_MESSAGES/fcitx-mozc.mo \ share/locale/zh_CN/LC_MESSAGES/fcitx-mozc.mo \ share/locale/zh_TW/LC_MESSAGES/fcitx-mozc.mo PLIST_DIRS+= %%DATADIR%%/icon ${DATADIR_REL} do-build-fcitx_mozc: ${BUILD_MOZC_CMD_BUILD} unix/fcitx/fcitx.gyp:fcitx-mozc do-install-fcitx_mozc: @${MKDIR} \ ${STAGEDIR}${PREFIX}/lib/fcitx \ ${STAGEDIR}${PREFIX}/share/fcitx/addon \ ${STAGEDIR}${PREFIX}/share/fcitx/inputmethod ${INSTALL_LIB} \ ${BUILD_WRKSRC}/out_linux/${BUILD_MODE}/fcitx-mozc.so \ ${STAGEDIR}${PREFIX}/lib/fcitx/fcitx-mozc.so ${INSTALL_DATA} \ ${BUILD_WRKSRC}/unix/fcitx/fcitx-mozc.conf \ ${STAGEDIR}${PREFIX}/share/fcitx/addon/fcitx-mozc.conf ${INSTALL_DATA} \ ${BUILD_WRKSRC}/unix/fcitx/mozc.conf \ ${STAGEDIR}${PREFIX}/share/fcitx/inputmethod/mozc.conf @${MKDIR} ${STAGEDIR}${DATADIR}/icon .for F in ui-alpha_full ui-alpha_half ui-dictionary ui-direct \ ui-hiragana ui-katakana_full ui-katakana_half ui-properties ui-tool ${INSTALL_DATA} \ ${BUILD_WRKSRC}/data/images/unix/${F}.png \ ${STAGEDIR}${DATADIR}/icon/${F:S,^ui-,mozc-,}.png .endfor ${INSTALL_DATA} \ ${BUILD_WRKSRC}/data/images/product_icon_32bpp-128.png \ ${STAGEDIR}${DATADIR}/icon/mozc.png .for L in ja zh_CN zh_TW ${INSTALL_DATA} \ ${BUILD_WRKSRC}/out_linux/${BUILD_MODE}/gen/unix/fcitx/po/${L}.mo \ ${STAGEDIR}${PREFIX}/share/locale/${L}/LC_MESSAGES/fcitx-mozc.mo .endfor .endif # mozc_el .if ${BUILD_MOZC_LIST:Mmozc_el} == "mozc_el" CATEGORIES+= elisp RUN_DEPENDS+= mozc_server:japanese/mozc-server NO_ARCH= yes -PLIST_FILES+= ${EMACS_VERSION_SITE_LISPDIR}/mozc/mozc.elc \ - ${EMACS_VERSION_SITE_LISPDIR}/mozc/mozc.el.gz \ - ${EMACS_VERSION_SITE_LISPDIR}/mozc/leim-list.el -PLIST_DIRS+= ${EMACS_VERSION_SITE_LISPDIR}/mozc +PLIST_FILES+= ${EMACS_SITE_LISPDIR}/mozc/mozc.el.gz \ + ${EMACS_SITE_LISPDIR}/mozc/leim-list.el +PLIST_DIRS+= ${EMACS_SITE_LISPDIR}/mozc post-patch-mozc_el: ${REINPLACE_CMD} "s,%%PREFIX%%,${PREFIX}," \ ${BUILD_WRKSRC}/unix/emacs/mozc.el post-patch: post-patch-mozc_el do-build-mozc_el: - cd ${BUILD_WRKSRC}/unix/emacs && \ - ${EMACS_CMD} -batch -q -no-site-file -no-init-file \ - -f batch-byte-compile mozc.el && \ - ${GZIP_CMD} mozc.el + cd ${BUILD_WRKSRC}/unix/emacs && ${GZIP_CMD} mozc.el do-install-mozc_el: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/mozc + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/mozc ${INSTALL_DATA} \ ${BUILD_WRKSRC}/unix/emacs/mozc.el.gz \ - ${BUILD_WRKSRC}/unix/emacs/mozc.elc \ ${FILESDIR}/leim-list.el \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/mozc/ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/mozc/ .endif do-build: ${BUILD_MOZC_LIST:S/^/do-build-/} do-install: ${BUILD_MOZC_LIST:S/^/do-install-/} .include diff --git a/japanese/navi2ch/Makefile b/japanese/navi2ch/Makefile index 3cd4b6dfee26..56a9b9a7f60e 100644 --- a/japanese/navi2ch/Makefile +++ b/japanese/navi2ch/Makefile @@ -1,47 +1,46 @@ PORTNAME= navi2ch PORTVERSION= 2.0.0.d -PORTREVISION= 27 +PORTREVISION= 28 PORTEPOCH= 1 CATEGORIES= japanese www elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= mce@FreeBSD.org COMMENT= 2ch.net and 2ch-like BBS navigator for Emacsen WWW= https://navi2ch.sourceforge.net LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= proxy2ch:japanese/proxy2ch -USES= emacs +USES= emacs:build USE_GITHUB= yes GH_ACCOUNT= naota GH_TAGNAME= 7811dba GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-icondir=${PREFIX}/${NICONDIR} \ --with-lispdir=${PREFIX}/${NLISPDIR} CONFIGURE_ENV= EMACS="${EMACS_CMD}" NO_ARCH= yes INFO= ${PORTNAME} PLIST_SUB= NICONDIR=${NICONDIR} NLISPDIR=${NLISPDIR} PORTDOCS= ${PORTDOC_FILES} contrib PORTDOC_FILES= ChangeLog README TODO PORTDOC_LISPS= gikope.el navi2ch-logo.el navi2ch-migemo.el -NICONDIR= ${EMACS_LIBDIR_WITH_VER}/etc/${PORTNAME}/icons -NLISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +NICONDIR= ${EMACS_LIBDIR}/etc/${PORTNAME}/icons +NLISPDIR= ${EMACS_SITE_LISPDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS X11 X11_RUN_DEPENDS=${LOCALBASE}/share/fonts/mona/monak12.pcf.gz:japanese/font-mona post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${COPYTREE_SHARE} \ "${PORTDOC_FILES} ${PORTDOC_LISPS:S,^,contrib/,}" \ ${STAGEDIR}${DOCSDIR} .include diff --git a/japanese/navi2ch/files/patch-Makefile.in b/japanese/navi2ch/files/patch-Makefile.in new file mode 100644 index 000000000000..233074a2ecaa --- /dev/null +++ b/japanese/navi2ch/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2026-04-08 20:13:55 UTC ++++ Makefile.in +@@ -80,7 +80,7 @@ am__ELCFILES = $(am__ELFILES:.el=.elc) + navi2ch-thumbnail.el navi2ch-util.el navi2ch-vars.el \ + navi2ch-version.el navi2ch-xmas.el navi2ch.el + am__ELCFILES = $(am__ELFILES:.el=.elc) +-ELCFILES = $(LISP:.el=.elc) ++ELCFILES = + elisp_comp = $(top_srcdir)/elisp-comp + lispDATA_INSTALL = $(INSTALL_DATA) + DATA = $(lisp_DATA) diff --git a/japanese/navi2ch/pkg-plist b/japanese/navi2ch/pkg-plist index 4fae2f967ad1..3a0887bce54e 100644 --- a/japanese/navi2ch/pkg-plist +++ b/japanese/navi2ch/pkg-plist @@ -1,73 +1,38 @@ %%NICONDIR%%/plugged.xpm %%NICONDIR%%/unplugged.xpm %%NLISPDIR%%/navi2ch-article.el -%%NLISPDIR%%/navi2ch-article.elc %%NLISPDIR%%/navi2ch-articles.el -%%NLISPDIR%%/navi2ch-articles.elc %%NLISPDIR%%/navi2ch-auto-modify.el -%%NLISPDIR%%/navi2ch-auto-modify.elc %%NLISPDIR%%/navi2ch-be2ch.el -%%NLISPDIR%%/navi2ch-be2ch.elc %%NLISPDIR%%/navi2ch-board-misc.el -%%NLISPDIR%%/navi2ch-board-misc.elc %%NLISPDIR%%/navi2ch-board.el -%%NLISPDIR%%/navi2ch-board.elc %%NLISPDIR%%/navi2ch-bookmark.el -%%NLISPDIR%%/navi2ch-bookmark.elc %%NLISPDIR%%/navi2ch-config.el %%NLISPDIR%%/navi2ch-directory.el -%%NLISPDIR%%/navi2ch-directory.elc %%NLISPDIR%%/navi2ch-e21.el -%%NLISPDIR%%/navi2ch-e21.elc %%NLISPDIR%%/navi2ch-face.el -%%NLISPDIR%%/navi2ch-face.elc %%NLISPDIR%%/navi2ch-futaba.el -%%NLISPDIR%%/navi2ch-futaba.elc %%NLISPDIR%%/navi2ch-head.el -%%NLISPDIR%%/navi2ch-head.elc %%NLISPDIR%%/navi2ch-history.el -%%NLISPDIR%%/navi2ch-history.elc %%NLISPDIR%%/navi2ch-http-date.el -%%NLISPDIR%%/navi2ch-http-date.elc %%NLISPDIR%%/navi2ch-jbbs-net.el -%%NLISPDIR%%/navi2ch-jbbs-net.elc %%NLISPDIR%%/navi2ch-jbbs-shitaraba.el -%%NLISPDIR%%/navi2ch-jbbs-shitaraba.elc %%NLISPDIR%%/navi2ch-list.el -%%NLISPDIR%%/navi2ch-list.elc %%NLISPDIR%%/navi2ch-localfile.el -%%NLISPDIR%%/navi2ch-localfile.elc %%NLISPDIR%%/navi2ch-machibbs.el -%%NLISPDIR%%/navi2ch-machibbs.elc %%NLISPDIR%%/navi2ch-megabbs.el -%%NLISPDIR%%/navi2ch-megabbs.elc %%NLISPDIR%%/navi2ch-message.el -%%NLISPDIR%%/navi2ch-message.elc %%NLISPDIR%%/navi2ch-mona.el -%%NLISPDIR%%/navi2ch-mona.elc %%NLISPDIR%%/navi2ch-multibbs.el -%%NLISPDIR%%/navi2ch-multibbs.elc %%NLISPDIR%%/navi2ch-net.el -%%NLISPDIR%%/navi2ch-net.elc %%NLISPDIR%%/navi2ch-oyster.el -%%NLISPDIR%%/navi2ch-oyster.elc %%NLISPDIR%%/navi2ch-popup-article.el -%%NLISPDIR%%/navi2ch-popup-article.elc %%NLISPDIR%%/navi2ch-search.el -%%NLISPDIR%%/navi2ch-search.elc %%NLISPDIR%%/navi2ch-splash.el -%%NLISPDIR%%/navi2ch-splash.elc %%NLISPDIR%%/navi2ch-util.el -%%NLISPDIR%%/navi2ch-util.elc %%NLISPDIR%%/navi2ch-vars.el -%%NLISPDIR%%/navi2ch-vars.elc %%NLISPDIR%%/navi2ch-version.el -%%NLISPDIR%%/navi2ch-version.elc %%NLISPDIR%%/navi2ch-xmas.el -%%NLISPDIR%%/navi2ch-xmas.elc %%NLISPDIR%%/navi2ch.el -%%NLISPDIR%%/navi2ch.elc %%NLISPDIR%%/navi2ch-p2.el -%%NLISPDIR%%/navi2ch-p2.elc %%NLISPDIR%%/navi2ch-thumbnail.el -%%NLISPDIR%%/navi2ch-thumbnail.elc diff --git a/japanese/yc.el/Makefile b/japanese/yc.el/Makefile index 517d73a0e58f..903e5ca1f249 100644 --- a/japanese/yc.el/Makefile +++ b/japanese/yc.el/Makefile @@ -1,41 +1,38 @@ PORTNAME= yc.el PORTVERSION= 5.2.1 -PORTREVISION= 29 +PORTREVISION= 30 PORTEPOCH= 1 CATEGORIES= japanese elisp MASTER_SITES= http://www.ceres.dti.ne.jp/~knak/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= yc-${PORTVERSION}.el EXTRACT_SUFX= .gz MAINTAINER= t@nakao.org COMMENT= Yet another Canna client for Emacs WWW= http://www.ceres.dti.ne.jp/~knak/yc.html USES= emacs -EMACS_FLAVORS_EXCLUDE= devel_full devel_nox # fail to build EXTRACT_CMD= ${GZCAT} EXTRACT_BEFORE_ARGS= # EXTRACT_AFTER_ARGS= > yc.el NO_WRKSUBDIR= yes -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/yc/yc.el \ - ${EMACS_VERSION_SITE_LISPDIR}/yc/yc.elc +PLIST_FILES= ${EMACS_SITE_LISPDIR}/yc/yc.el + +CONFLICTS_INSTALL= ja-yc.el-emacs_* + +NO_ARCH= yes +NO_BUILD= yes OPTIONS_DEFINE= ICANNA ICANNA_DESC= Enable icanna support ICANNA_RUN_DEPENDS= icanna:japanese/icanna -YC_LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/yc - -do-build: - @(cd ${WRKSRC} && \ - ${EMACS_CMD} -batch -f batch-byte-compile yc.el) +YC_LISPDIR= ${PREFIX}/${EMACS_SITE_LISPDIR}/yc do-install: @${MKDIR} ${STAGEDIR}${YC_LISPDIR} - (cd ${WRKSRC} && \ - ${INSTALL_SCRIPT} yc.el yc.elc ${STAGEDIR}${YC_LISPDIR}) + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${YC_LISPDIR} .include diff --git a/japanese/yc.el/pkg-message b/japanese/yc.el/pkg-message index a907b71102ba..cb43f45f9255 100644 --- a/japanese/yc.el/pkg-message +++ b/japanese/yc.el/pkg-message @@ -1,25 +1,25 @@ [ { type: install message: <=0:lang/elixir-mode.el@${EMACS_FLAVOR} +RUN_DEPENDS= elixir-mode.el>=0:lang/elixir-mode.el USES= emacs USE_GITHUB= yes GH_ACCOUNT= tonini +CONFLICTS_INSTALL= alchemist.el-emacs_* + NO_ARCH= yes NO_BUILD= yes OPTIONS_DEFINE= DOCS do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/alchemist-server @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/alchemist-server/lib ${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/alchemist-server/*.exs ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/alchemist-server (cd ${WRKSRC}/alchemist-server/lib && ${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/alchemist-server/lib) @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/*.md ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}) .include diff --git a/lang/clojure-mode.el/Makefile b/lang/clojure-mode.el/Makefile index 6b6a3dd3fbe1..c23282869b2f 100644 --- a/lang/clojure-mode.el/Makefile +++ b/lang/clojure-mode.el/Makefile @@ -1,30 +1,32 @@ PORTNAME= clojure-mode.el PORTVERSION= 5.21.0 +PORTREVISION= 1 PORTEPOCH= 1 DISTVERSIONPREFIX= v CATEGORIES= lang elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Emacs lisp module for the Clojure language WWW= https://github.com/clojure-emacs/clojure-mode LICENSE= GPLv3+ USES= emacs USE_GITHUB= yes GH_ACCOUNT= clojure-emacs GH_PROJECT= clojure-mode +CONFLICTS_INSTALL= clojure-mode.el-emacs_* + NO_ARCH= yes NO_BUILD= yes do-install: ${INSTALL_DATA} ${WRKSRC}/clojure-mode.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/clojure-mode-extra-font-locking.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/test.clj \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/lang/clojure-mode.el/pkg-message b/lang/clojure-mode.el/pkg-message index b3674c99336e..9caa271f2710 100644 --- a/lang/clojure-mode.el/pkg-message +++ b/lang/clojure-mode.el/pkg-message @@ -1,22 +1,24 @@ [ { type: install message: < diff --git a/lang/csharp-mode.el/pkg-message b/lang/csharp-mode.el/pkg-message index 21788eb30bb9..71a63645c762 100644 --- a/lang/csharp-mode.el/pkg-message +++ b/lang/csharp-mode.el/pkg-message @@ -1,10 +1,10 @@ [ { type: install message: < diff --git a/lang/haskell-mode.el/Makefile b/lang/haskell-mode.el/Makefile index b39a676500e7..190406720cb9 100644 --- a/lang/haskell-mode.el/Makefile +++ b/lang/haskell-mode.el/Makefile @@ -1,84 +1,83 @@ PORTNAME= haskell-mode DISTVERSIONPREFIX= v DISTVERSION= 17.5 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= lang elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Emacs lisp mode for editing haskell programs WWW= https://projects.haskell.org/haskellmode-emacs/ LICENSE= GPLv3 -USES= emacs gmake +USES= emacs:build gmake USE_GITHUB= yes GH_ACCOUNT= haskell -#EMACS_FLAVORS_EXCLUDE= devel_full devel_nox - ALL_TARGET= haskell-mode-autoloads.el +CONFLICTS_INSTALL= haskell-mode-emacs_* + NO_ARCH= yes SUB_FILES= pkg-message PLIST_DIRS= share/emacs/site-lisp/${PORTNAME}/ PLIST_FILES= ${ELISPFILES:C/^| [^ ]/${PLIST_DIRS}/g} PORTDOCS= NEWS README.md OPTIONS_DEFINE= DOCS ELISPDIR= ${PREFIX}/${PLIST_DIRS} ELISPFILES= \ ghc-core.el \ ghci-script-mode.el \ haskell-align-imports.el \ haskell-c2hs.el \ haskell-cabal.el \ haskell-collapse.el \ haskell-commands.el \ haskell-compile.el \ haskell-complete-module.el \ haskell-completions.el \ haskell-customize.el \ haskell-debug.el \ haskell-decl-scan.el \ haskell-doc.el \ haskell-font-lock.el \ haskell-ghc-support.el \ haskell-hoogle.el \ haskell-indent.el \ haskell-indentation.el \ haskell-interactive-mode.el \ haskell-lexeme.el \ haskell-load.el \ haskell-menu.el \ haskell-mode-autoloads.el \ haskell-mode.el \ haskell-modules.el \ haskell-move-nested.el \ haskell-navigate-imports.el \ haskell-presentation-mode.el \ haskell-process.el \ haskell-repl.el \ haskell-sandbox.el \ haskell-session.el \ haskell-sort-imports.el \ haskell-string.el \ haskell-svg.el \ haskell-unicode-input-method.el \ haskell-utils.el \ haskell.el \ highlight-uses-mode.el \ inf-haskell.el \ w3m-haddock.el do-install: @${MKDIR} ${STAGEDIR}${ELISPDIR} ${INSTALL_DATA} ${ELISPFILES:S,^,${WRKSRC}/,} ${STAGEDIR}${ELISPDIR}/ post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/ .include diff --git a/lang/haskell-mode.el/files/pkg-message.in b/lang/haskell-mode.el/files/pkg-message.in index 4f6b2718664a..d557812a3de8 100644 --- a/lang/haskell-mode.el/files/pkg-message.in +++ b/lang/haskell-mode.el/files/pkg-message.in @@ -1,21 +1,16 @@ [ { type: install message: < diff --git a/lang/php-mode.el/pkg-message b/lang/php-mode.el/pkg-message index 8e2cdb769818..77a95d04ae6f 100644 --- a/lang/php-mode.el/pkg-message +++ b/lang/php-mode.el/pkg-message @@ -1,10 +1,10 @@ [ { type: install message: < diff --git a/mail/anubis/Makefile b/mail/anubis/Makefile index 61234848025d..db21752f3bd7 100644 --- a/mail/anubis/Makefile +++ b/mail/anubis/Makefile @@ -1,108 +1,112 @@ PORTNAME= anubis PORTVERSION= 4.3 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= mail MASTER_SITES= GNU MAINTAINER= jhale@FreeBSD.org COMMENT= Outgoing SMTP mail processor WWW= https://www.gnu.org/software/anubis/ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgnutls.so:security/gnutls \ libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error \ libgsasl.so:security/libgsasl USES= autoreconf charsetfix cpe gettext-tools gmake localbase \ makeinfo pkgconfig shebangfix CHARSETFIX_MAKEFILEIN= gnulib.mk CPE_VENDOR= gnu SHEBANG_FILES= contrib/msg2smtp.pl USE_RC_SUBR= anubis GNU_CONFIGURE= yes GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share -CONFIGURE_ARGS= --with-gnutls \ +CONFIGURE_ARGS= --with-emacs=no \ + --with-gnutls \ --with-gsasl INFO= anubis PORTEXAMPLES= 1anubisrc 2anubisrc OPTIONS_DEFINE= NLS EXAMPLES EMACS GUILE GNUPG LIBWRAP PCRE PAM \ SOCKS TEST DB_DESC= Database backend OPTIONS_GROUP= DB OPTIONS_GROUP_DB= GDBM MYSQL PGSQL OPTIONS_DEFAULT= GDBM GNUPG GUILE OPTIONS_SUB= yes NO_OPTIONS_SORT= yes .if !exists(/usr/include/tcpd.h) OPTIONS_EXCLUDE+= LIBWRAP .endif .if !exists(/usr/lib/libpam.so) OPTIONS_EXCLUDE+= PAM .endif -EMACS_DESC= Install EMACS lisp files (requires emacs) -EMACS_USES= emacs:build -EMACS_CONFIGURE_ON= --with-lispdir=${PREFIX}/${EMACS_SITE_LISPDIR}/anubis -EMACS_CONFIGURE_OFF= --with-lispdir=no +EMACS_DESC= Install EMACS lisp +EMACS_USES= emacs GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm GDBM_CONFIGURE_WITH= gdbm GNUPG_LIB_DEPENDS= libgpgme.so:security/gpgme GNUPG_CONFIGURE_WITH= gpgme GUILE_USES= guile:2.2,alias GUILE_CONFIGURE_WITH= guile GUILE_PORTEXAMPLES= anubis.scm anubisrc.guile LIBWRAP_CONFIGURE_WITH= tcp-wrappers MYSQL_USES= mysql MYSQL_CONFIGURE_WITH= mysql MYSQL_VARS= REQUIRE+=mysql NLS_CONFIGURE_ENABLE= nls PAM_CONFIGURE_WITH= pam PAM_PORTEXAMPLES= pam PCRE_LIB_DEPENDS= libpcre.so:devel/pcre PCRE_CONFIGURE_WITH= pcre PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= postgres PGSQL_VARS= REQUIRE+=postgresql SOCKS_CONFIGURE_WITH= socks-proxy TEST_TEST_TARGET= check .include # Default requirement for anubis rc script REQUIRE+= mail SUB_LIST+= REQUIRE="${REQUIRE}" +post-install-EMACS-on:: + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/anubis + ${INSTALL_DATA} ${WRKSRC}/elisp/anubis-mode.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/anubis + post-patch-TEST-off: @${REINPLACE_CMD} -e 's| tests||' ${WRKSRC}/Makefile.am post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/*rc ${STAGEDIR}${EXAMPLESDIR} .if ${PORT_OPTIONS:MGUILE} cd ${WRKSRC}/examples && \ ${INSTALL_DATA} ${GUILE_PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR} .endif .if ${PORT_OPTIONS:MPAM} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/pam ${INSTALL_DATA} ${WRKSRC}/examples/pam/anubis* ${STAGEDIR}${EXAMPLESDIR}/pam .endif .include diff --git a/mail/anubis/pkg-plist b/mail/anubis/pkg-plist index 0d7df8a53aa8..b8b4d9d18451 100644 --- a/mail/anubis/pkg-plist +++ b/mail/anubis/pkg-plist @@ -1,32 +1,31 @@ bin/anubisusr bin/msg2smtp.pl sbin/anubis sbin/anubisadm %%GUILE%%share/anubis/entire-msg.scm %%GUILE%%share/anubis/remailer.scm %%GUILE%%share/anubis/rot-13.scm %%EMACS%%%%EMACS_SITE_LISPDIR%%/anubis/anubis-mode.el -%%EMACS%%%%EMACS_SITE_LISPDIR%%/anubis/anubis-mode.elc %%NLS%%share/locale/da/LC_MESSAGES/anubis.mo %%NLS%%share/locale/de/LC_MESSAGES/anubis.mo %%NLS%%share/locale/es/LC_MESSAGES/anubis.mo %%NLS%%share/locale/fi/LC_MESSAGES/anubis.mo %%NLS%%share/locale/fr/LC_MESSAGES/anubis.mo %%NLS%%share/locale/hu/LC_MESSAGES/anubis.mo %%NLS%%share/locale/hr/LC_MESSAGES/anubis.mo %%NLS%%share/locale/id/LC_MESSAGES/anubis.mo %%NLS%%share/locale/it/LC_MESSAGES/anubis.mo %%NLS%%share/locale/ms/LC_MESSAGES/anubis.mo %%NLS%%share/locale/nb/LC_MESSAGES/anubis.mo %%NLS%%share/locale/nl/LC_MESSAGES/anubis.mo %%NLS%%share/locale/pl/LC_MESSAGES/anubis.mo %%NLS%%share/locale/pt/LC_MESSAGES/anubis.mo %%NLS%%share/locale/ro/LC_MESSAGES/anubis.mo %%NLS%%share/locale/ru/LC_MESSAGES/anubis.mo %%NLS%%share/locale/sr/LC_MESSAGES/anubis.mo %%NLS%%share/locale/sv/LC_MESSAGES/anubis.mo %%NLS%%share/locale/tr/LC_MESSAGES/anubis.mo %%NLS%%share/locale/uk/LC_MESSAGES/anubis.mo %%NLS%%share/locale/vi/LC_MESSAGES/anubis.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/anubis.mo share/man/man1/anubis.1.gz diff --git a/mail/c-sig/Makefile b/mail/c-sig/Makefile index 34d75101b0cd..2c85b3ece015 100644 --- a/mail/c-sig/Makefile +++ b/mail/c-sig/Makefile @@ -1,27 +1,33 @@ PORTNAME= c-sig PORTVERSION= 3.8.0.1 -PORTREVISION= 19 +PORTREVISION= 20 CATEGORIES= mail elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Signature insertion tool for Emacs WWW= https://github.com/yasuhirokimura/c-sig LICENSE= GPLv2+ USES= emacs USE_GITHUB= yes GH_ACCOUNT= yasuhirokimura + +CONFLICTS_INSTALL= c-sig-emacs_* + NO_ARCH= yes +NO_BUILD= yes MAKE_ENV+= EMACS=${EMACS_CMD} LISPDIR=${LISPDIR} -LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +LISPDIR= ${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} -post-install: +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/c-sig.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in c-sig-eng.faq c-sig-eng.man c-sig-jp.faq c-sig-jp.man ${INSTALL_MAN} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/mail/c-sig/pkg-plist b/mail/c-sig/pkg-plist index a1341723fa0a..1b868f77dd60 100644 --- a/mail/c-sig/pkg-plist +++ b/mail/c-sig/pkg-plist @@ -1,6 +1,5 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/c-sig/c-sig.el -%%EMACS_VERSION_SITE_LISPDIR%%/c-sig/c-sig.elc +%%EMACS_SITE_LISPDIR%%/c-sig/c-sig.el %%DOCSDIR%%/c-sig-eng.faq %%DOCSDIR%%/c-sig-eng.man %%DOCSDIR%%/c-sig-jp.faq %%DOCSDIR%%/c-sig-jp.man diff --git a/mail/mailest/Makefile b/mail/mailest/Makefile index 4e372ebc41b4..23e0b8b82407 100644 --- a/mail/mailest/Makefile +++ b/mail/mailest/Makefile @@ -1,55 +1,56 @@ PORTNAME= mailest PORTVERSION= 0.9.24 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 22 +PORTREVISION= 23 CATEGORIES= mail -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= hrs@FreeBSD.org COMMENT= Hyper Estraier backend for Mew WWW= https://github.com/yasuoka/mailest LICENSE= BSD2CLAUSE BSD3CLAUSE ISCL LGPL21 LICENSE_COMB= multi .for L in ${LICENSE} LICENSE_FILE_${L}= ${WRKSRC}/LICENSE.${L} .endfor LIB_DEPENDS= libevent.so:devel/libevent \ libqdbm.so:databases/qdbm \ libestraier.so:textproc/hyperestraier -RUN_DEPENDS= mew${EMACS_PKGNAMESUFFIX}>0:mail/mew@${EMACS_FLAVOR} +RUN_DEPENDS= mew>0:mail/mew -USES= emacs:run fakeroot iconv +USES= emacs fakeroot iconv USE_GITHUB= yes GH_ACCOUNT= yasuoka +CONFLICTS_INSTALL= mailest-emacs_* + MAKE_ARGS= MANDIR=${PREFIX}/share/man/man MAKE_ENV= USE_BSDMAKE=true WITH_INSTALL_AS_USER=true # XXX Static libraries with PIE are currently unsupported MAKE_ENV+= WITHOUT_PIE=true LICENSE_BSD2CLAUSE_SRC= bytebuf.c replace/sys/tree.h LICENSE_BSD3CLAUSE_SRC= replace/sys/queue.h LICENSE_ISCL_SRC= mailestctl.c parser.c parser.h \ replace/open_memstream.c \ replace/reallocarray.c \ replace/replace.h \ replace/strlcat.c \ replace/strtonum.c LICENSE_LGPL21_SRC= estdraft.c LICENSE_BSD2CLAUSE_REGEX="/ \* [Cc]opyright/,/ \*\//!d;s,^ \*,,;s,^/,," LICENSE_BSD3CLAUSE_REGEX=${LICENSE_BSD2CLAUSE_REGEX} LICENSE_ISCL_REGEX= ${LICENSE_BSD2CLAUSE_REGEX} LICENSE_LGPL21_REGEX= "/^\/\*\*/,/\*\*\//!d;s,^ \*,,;s,^/,," post-extract: .for L in ${LICENSE} .for F in ${LICENSE_${L}_SRC} cd ${WRKSRC} && ${SED} -e ${LICENSE_${L}_REGEX} ${F} \ >> ${LICENSE_FILE_${L}} .endfor .endfor .include diff --git a/mail/mailfromd/Makefile b/mail/mailfromd/Makefile index 8239f9cb4c68..534dcf665761 100644 --- a/mail/mailfromd/Makefile +++ b/mail/mailfromd/Makefile @@ -1,74 +1,79 @@ PORTNAME= mailfromd PORTVERSION= 9.1 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://download.gnu.org.ua/pub/release/${PORTNAME}/ \ http://download.gnu.org.ua/pub/alpha/${PORTNAME}/ MAINTAINER= zeus@gnu.org.ua COMMENT= Mail filtering daemon for Sendmail, Postfix, and MeTA1 WWW= https://puszcza.gnu.org.ua/software/mailfromd/ LICENSE= GPLv3+ LIB_DEPENDS= libmailutils.so:mail/mailutils \ libadns.so:dns/adns \ libgmp.so:math/gmp \ libgnutls.so:security/gnutls \ libnettle.so:security/nettle USES= gmake localbase readline tar:xz GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-syslog-async CONFIGURE_ENV= DEFAULT_STATE_DIR="${DATABASEDIR}" \ DEFAULT_SOCKET="unix:${MFD_RUN_DIR}/${PORTNAME}.sock" \ - DEFAULT_USER=mailnull + DEFAULT_USER=mailnull \ + ac_cv_prog_EMACS=no USE_RC_SUBR= calloutd ${PORTNAME} TEST_TARGET= check DATABASEDIR?= /var/db/${PORTNAME} MFD_RUN_DIR?= /var/run/${PORTNAME} PLIST_SUB+= DATABASEDIR=${DATABASEDIR} \ MFD_RUN_DIR=${MFD_RUN_DIR} \ VERSION=${PORTVERSION} SUB_LIST+= MFD_RUN_DIR=${MFD_RUN_DIR} INFO= ${PORTNAME} PORTDOCS= AUTHORS ChangeLog NEWS README THANKS TODO OPTIONS_DEFINE= DOCS EMACS NLS OPTIONS_DEFAULT= GDBM EMACS OPTIONS_MULTI= DB OPTIONS_MULTI_DB= BDB GDBM OPTIONS_SUB= yes BDB_DESC= Berkeley DB v4.8 (last working one) support DB_DESC= Database configuration EMACS_DESC= Install Emacs Lisp *-mode files -EMACS_CONFIGURE_ENV_OFF=ac_cv_prog_EMACS=no -EMACS_USES= emacs:build +EMACS_USES= emacs NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls BDB_USES= bdb BDB_CONFIGURE_WITH= berkeley-db BDB_CPPFLAGS= -I${BDB_INCLUDE_DIR} BDB_LDFLAGS= -L${BDB_LIB_DIR} GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm GDBM_CONFIGURE_WITH= gdbm .if defined(WITH_DEBUG) CONFIGURE_ARGS+= --enable-debug .endif post-install: @${MKDIR} ${STAGEDIR}${DATABASEDIR} ${STAGEDIR}${MFD_RUN_DIR} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} +post-install-EMACS-on: + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/elisp/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + .include diff --git a/mail/mailfromd/pkg-plist b/mail/mailfromd/pkg-plist index a9280636bbaa..526b6992277e 100644 --- a/mail/mailfromd/pkg-plist +++ b/mail/mailfromd/pkg-plist @@ -1,60 +1,58 @@ bin/mfdbtool bin/mfmodnew bin/mtasim @sample etc/mailfromd.mfl.sample include/mailfromd/exceptions.h include/mailfromd/mfmod.h sbin/calloutd sbin/mailfromd share/aclocal/mfmod.m4 %%EMACS%%%%EMACS_SITE_LISPDIR%%/mfl-mode.el -%%EMACS%%%%EMACS_SITE_LISPDIR%%/mfl-mode.elc %%EMACS%%%%EMACS_SITE_LISPDIR%%/obfemail-mode.el -%%EMACS%%%%EMACS_SITE_LISPDIR%%/obfemail-mode.elc %%NLS%%share/locale/da/LC_MESSAGES/mailfromd.mo %%NLS%%share/locale/fr/LC_MESSAGES/mailfromd.mo %%NLS%%share/locale/id/LC_MESSAGES/mailfromd.mo %%NLS%%share/locale/pl/LC_MESSAGES/mailfromd.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/mailfromd.mo %%NLS%%share/locale/ro/LC_MESSAGES/mailfromd.mo %%NLS%%share/locale/sr/LC_MESSAGES/mailfromd.mo %%NLS%%share/locale/uk/LC_MESSAGES/mailfromd.mo %%NLS%%share/locale/vi/LC_MESSAGES/mailfromd.mo %%DATADIR%%/%%VERSION%%/_register.mfl %%DATADIR%%/%%VERSION%%/callout.mfl %%DATADIR%%/%%VERSION%%/cdb.mfl %%DATADIR%%/%%VERSION%%/dkim.mfl %%DATADIR%%/%%VERSION%%/dns.mfl %%DATADIR%%/%%VERSION%%/email.mfl %%DATADIR%%/%%VERSION%%/gettext.mfl %%DATADIR%%/%%VERSION%%/header_rename.mfl %%DATADIR%%/%%VERSION%%/heloarg_test.mfl %%DATADIR%%/%%VERSION%%/include/pp-setup %%DATADIR%%/%%VERSION%%/is_ip.mfl %%DATADIR%%/%%VERSION%%/localdomain.mfl %%DATADIR%%/%%VERSION%%/match_cidr.mfl %%DATADIR%%/%%VERSION%%/match_dnsbl.mfl %%DATADIR%%/%%VERSION%%/match_rhsbl.mfl %%DATADIR%%/%%VERSION%%/milter.mfl %%DATADIR%%/%%VERSION%%/mime.mfl %%DATADIR%%/%%VERSION%%/poll.mfl %%DATADIR%%/%%VERSION%%/portprobe.mfl %%DATADIR%%/%%VERSION%%/rateok.mfl %%DATADIR%%/%%VERSION%%/revip.mfl %%DATADIR%%/%%VERSION%%/sa.mfl %%DATADIR%%/%%VERSION%%/safedb.mfl %%DATADIR%%/%%VERSION%%/sieve.mfl %%DATADIR%%/%%VERSION%%/sockmap.mfl %%DATADIR%%/%%VERSION%%/spf.mfl %%DATADIR%%/%%VERSION%%/status.mfl %%DATADIR%%/%%VERSION%%/strip_domain_part.mfl %%DATADIR%%/%%VERSION%%/syslog.mfl %%DATADIR%%/%%VERSION%%/valid_domain.mfl %%DATADIR%%/%%VERSION%%/verp.mfl %%DATADIR%%/mfmod/template.ac %%DATADIR%%/mfmod/template.am %%DATADIR%%/mfmod/template.c %%DATADIR%%/mfmod/template.mfl %%DATADIR%%/postfix-macros.sed @dir(mailnull,mail,700) %%DATABASEDIR%% @dir(mailnull,mail,700) %%MFD_RUN_DIR%% diff --git a/mail/mailutils/Makefile b/mail/mailutils/Makefile index 99a7a7967a83..70bbea96774e 100644 --- a/mail/mailutils/Makefile +++ b/mail/mailutils/Makefile @@ -1,112 +1,111 @@ PORTNAME= mailutils PORTVERSION= 3.21 CATEGORIES= mail MASTER_SITES= GNU GNU_ALPHA MAINTAINER= zeus@gnu.org.ua COMMENT= Utilities, daemons, and filters for processing e-mail WWW= https://mailutils.org/ LICENSE= GPLv3+ LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded \ libltdl.so:devel/libltdl \ libunistring.so:devel/libunistring TEST_DEPENDS= automake:devel/automake \ runtest:misc/dejagnu USES= cpe gmake iconv libtool localbase readline tar:xz CPE_VENDOR= gnu GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_RC_SUBR= comsatd imap4d pop3d INSTALL_TARGET= install-strip TEST_TARGET= check CONFLICTS_INSTALL= avenger elm # bin/dotlock bin/frm PLIST_SUB+= LIBVERSION=9.0.0 LIBSUFX=9 VERSION=${PORTVERSION} INFO= ${PORTNAME} PORTDOCS= AUTHORS ChangeLog NEWS README* THANKS TODO OPTIONS_DEFINE= DOCS FRIBIDI GNUTLS GSSAPI GUILE MH NLS PAM PYTHON OPTIONS_DEFAULT= GDBM GNUTLS PAM OPTIONS_MULTI= DB OPTIONS_MULTI_DB= BDB GDBM KYOTOCABINET LDAP MYSQL PGSQL TOKYOCABINET OPTIONS_SUB= yes DB_DESC= Database configuration KYOTOCABINET_DESC= Kyoto Cabinet database support MH_DESC= MH (Message Handling) system support TOKYOCABINET_DESC= Tokyo Cabinet database support FRIBIDI_LIB_DEPENDS= libfribidi.so:converters/fribidi FRIBIDI_CONFIGURE_WITH= fribidi GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls GNUTLS_CONFIGURE_WITH= gnutls GSSAPI_RUN_DEPENDS= cyrus-sasl-gssapi>0:security/cyrus-sasl2-gssapi GSSAPI_USES= ssl GSSAPI_CONFIGURE_WITH= gssapi GUILE_USES= guile:2.2,alias makeinfo pkgconfig GUILE_CONFIGURE_WITH= guile MH_CONFIGURE_ENV= ac_cv_prog_EMACS=no MH_CONFIGURE_ENABLE= mh -MH_USES= emacs:noflavors -MH_VARS= EMACS_NO_DEPENDS=yes +MH_USES= emacs NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls PAM_CONFIGURE_ENABLE= pam PYTHON_USES= python PYTHON_CONFIGURE_ENABLE=python PYTHON_CONFIGURE_ENV= PYTHON_CONFIG=${PYTHON_CMD}-config BDB_USES= bdb BDB_CONFIGURE_WITH= berkeley-db BDB_CPPFLAGS= -I${BDB_INCLUDE_DIR} BDB_LDFLAGS= -L${BDB_LIB_DIR} GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm GDBM_CONFIGURE_WITH= gdbm KYOTOCABINET_LIB_DEPENDS= libkyotocabinet.so:databases/kyotocabinet KYOTOCABINET_CONFIGURE_WITH= kyotocabinet LDAP_USES= ldap LDAP_CONFIGURE_WITH= ldap MYSQL_USES= mysql MYSQL_CONFIGURE_WITH= mysql PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= postgres TOKYOCABINET_LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet TOKYOCABINET_CONFIGURE_WITH= tokyocabinet .if defined(WITH_DEBUG) CONFIGURE_ARGS+= --enable-debug .endif post-patch: @${REINPLACE_CMD} -e '/chown/,+1s|ch|#&|' \ ${WRKSRC}/dotlock/Makefile.in ${WRKSRC}/mda/mda/Makefile.in @${REINPLACE_CMD} -e 's,-E,& -P,' ${WRKSRC}/libmu_scm/Makefile.in post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} post-install-MH-on: @${MKDIR} ${STAGEDIR}${EMACS_SITE_LISPDIR} ${RLN} ${STAGEDIR}${DATADIR}/mh/mailutils-mh.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/mail/mew-devel/Makefile b/mail/mew-devel/Makefile index ff111d858dc7..17e493035c79 100644 --- a/mail/mew-devel/Makefile +++ b/mail/mew-devel/Makefile @@ -1,53 +1,57 @@ PORTNAME= mew DISTVERSIONPREFIX= v +PORTREVISION= 1 DISTVERSION= 6.10-49 DISTVERSIONSUFFIX= -ge50839a CATEGORIES= mail elisp -PKGNAMESUFFIX= -devel${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Messaging in the Emacs World for emacs (Development Version) WWW= https://www.Mew.org/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= emacs +USES= emacs:build USE_GITHUB= yes GH_ACCOUNT= kazu-yamamoto GH_PROJECT= Mew GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-elispdir=${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/mew \ - --with-etcdir=${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/mew/etc +CONFIGURE_ARGS= --with-elispdir=${LOCALBASE}/${EMACS_SITE_LISPDIR}/mew \ + --with-etcdir=${LOCALBASE}/${EMACS_SITE_LISPDIR}/mew/etc # target name for make build and install ALL_TARGET= all info jinfo INSTALL_TARGET= install install-jinfo -CONFLICTS_INSTALL= mew mew-devel-emacs_* mew-emacs_* # bin/cmew bin/incm +CONFLICTS_INSTALL= mew mew-devel-emacs_* SUB_FILES= pkg-message INFO= mew mew.ja PORTDOCS= API.md CHANGES.v0.md CHANGES.v1.md CHANGES.v2.md CHANGES.v3.md \ CHANGES.v4.1.md CHANGES.v4.2.md CHANGES.v5.1.md CHANGES.v5.2.md \ CHANGES.v6.1.md CHANGES.v6.2.md CHANGES.v6.3.md CHANGES.v6.4.md \ CHANGES.v6.5.md CHANGES.v6.6.md CHANGES.v6.7.md CHANGES.v6.8.md \ CHANGES.v6.9.md INSTALL.md README.md RELEASENOTE.md OPTIONS_DEFINE= DATABASE DOCS STUNNEL OPTIONS_DEFAULT= STUNNEL DATABASE_DESC= Support database feature (with Ruby & Sqlite3) STUNNEL_DESC= Support TLS feature using stunnel DATABASE_RUN_DEPENDS= rubygem-sqlite3>=0:databases/rubygem-sqlite3 STUNNEL_RUN_DEPENDS= stunnel>=0:security/stunnel +post-install: + @${FIND} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/mew \ + -name "*.elc" -delete + post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/*.md ${WRKSRC}/CHANGES/*.md ${STAGEDIR}${DOCSDIR} (cd ${STAGEDIR}${DOCSDIR}; for f in v*.md ; do ${MV} $$f CHANGES.$$f; done) .include diff --git a/mail/mew-devel/pkg-plist b/mail/mew-devel/pkg-plist index e12c46bd280d..91bdef71f932 100644 --- a/mail/mew-devel/pkg-plist +++ b/mail/mew-devel/pkg-plist @@ -1,185 +1,118 @@ bin/cmew bin/incm bin/mew-pinentry bin/mewcat bin/mewdecode bin/mewencode bin/mewest bin/mewl bin/smew share/man/man1/cmew.1.gz share/man/man1/incm.1.gz share/man/man1/mew-pinentry.1.gz share/man/man1/mewcat.1.gz share/man/man1/mewdecode.1.gz share/man/man1/mewencode.1.gz share/man/man1/mewest.1.gz share/man/man1/mewl.1.gz share/man/man1/smew.1.gz -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/Mew.img -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/Mew.png -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/Mew.xbm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/Mew.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Audio.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Blank.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-External.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Folder.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Image.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Octet-Stream.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Postscript.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Rfc822.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Text.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Unknown.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Video.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-attach.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-cite.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-forward.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-inc.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-lock.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-next.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-pgp-enc.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-pgp-sigenc.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-pgp-sign.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-prev.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-queue.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-refile.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-reply.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-send.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-sep.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-show.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-write.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-yank.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-addrbook.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-addrbook.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-attach.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-attach.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-auth.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-auth.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-blvs.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-blvs.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-bq.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-bq.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-cache.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-cache.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-complete.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-complete.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-config.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-config.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-const.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-const.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-darwin.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-darwin.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-decode.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-decode.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-demo.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-demo.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-draft.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-draft.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-edit.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-edit.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-encode.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-encode.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-env.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-env.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-env0.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-env0.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-exec.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-exec.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ext.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ext.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-fib.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-fib.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-func.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-func.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-gemacs.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-gemacs.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-header.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-header.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-highlight.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-highlight.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-imap.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-imap.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-imap2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-imap2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-key.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-key.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-jp.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-jp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-kr.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-kr.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-latin.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-latin.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-local.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-local.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mark.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mark.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-message.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-message.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mime.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mime.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-minibuf.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-minibuf.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mule.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mule.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mule3.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mule3.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-net.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-net.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-nntp.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-nntp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-nntp2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-nntp2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-oauth2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-oauth2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-passwd.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-passwd.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pgp.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pgp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pick.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pick.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pop.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pop.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-refile.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-refile.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-scan.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-scan.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-search.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-search.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-smime.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-smime.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-smtp.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-smtp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-sort.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-sort.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ssh.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ssh.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ssl.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ssl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary3.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary3.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary4.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary4.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-syntax.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-syntax.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-thread.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-thread.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-unix.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-unix.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars3.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars3.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-varsx.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-varsx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-virtual.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-virtual.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-win32.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-win32.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew.elc +%%EMACS_SITE_LISPDIR%%/mew/etc/Mew.img +%%EMACS_SITE_LISPDIR%%/mew/etc/Mew.png +%%EMACS_SITE_LISPDIR%%/mew/etc/Mew.xbm +%%EMACS_SITE_LISPDIR%%/mew/etc/Mew.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Audio.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Blank.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-External.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Folder.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Image.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Octet-Stream.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Postscript.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Rfc822.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Text.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Unknown.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Video.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-attach.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-cite.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-forward.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-inc.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-lock.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-next.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-pgp-enc.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-pgp-sigenc.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-pgp-sign.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-prev.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-queue.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-refile.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-reply.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-send.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-sep.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-show.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-write.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-yank.xpm +%%EMACS_SITE_LISPDIR%%/mew/mew-addrbook.el +%%EMACS_SITE_LISPDIR%%/mew/mew-attach.el +%%EMACS_SITE_LISPDIR%%/mew/mew-auth.el +%%EMACS_SITE_LISPDIR%%/mew/mew-blvs.el +%%EMACS_SITE_LISPDIR%%/mew/mew-bq.el +%%EMACS_SITE_LISPDIR%%/mew/mew-cache.el +%%EMACS_SITE_LISPDIR%%/mew/mew-complete.el +%%EMACS_SITE_LISPDIR%%/mew/mew-config.el +%%EMACS_SITE_LISPDIR%%/mew/mew-const.el +%%EMACS_SITE_LISPDIR%%/mew/mew-darwin.el +%%EMACS_SITE_LISPDIR%%/mew/mew-decode.el +%%EMACS_SITE_LISPDIR%%/mew/mew-demo.el +%%EMACS_SITE_LISPDIR%%/mew/mew-draft.el +%%EMACS_SITE_LISPDIR%%/mew/mew-edit.el +%%EMACS_SITE_LISPDIR%%/mew/mew-encode.el +%%EMACS_SITE_LISPDIR%%/mew/mew-env.el +%%EMACS_SITE_LISPDIR%%/mew/mew-env0.el +%%EMACS_SITE_LISPDIR%%/mew/mew-exec.el +%%EMACS_SITE_LISPDIR%%/mew/mew-ext.el +%%EMACS_SITE_LISPDIR%%/mew/mew-fib.el +%%EMACS_SITE_LISPDIR%%/mew/mew-func.el +%%EMACS_SITE_LISPDIR%%/mew/mew-gemacs.el +%%EMACS_SITE_LISPDIR%%/mew/mew-header.el +%%EMACS_SITE_LISPDIR%%/mew/mew-highlight.el +%%EMACS_SITE_LISPDIR%%/mew/mew-imap.el +%%EMACS_SITE_LISPDIR%%/mew/mew-imap2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-key.el +%%EMACS_SITE_LISPDIR%%/mew/mew-lang-jp.el +%%EMACS_SITE_LISPDIR%%/mew/mew-lang-kr.el +%%EMACS_SITE_LISPDIR%%/mew/mew-lang-latin.el +%%EMACS_SITE_LISPDIR%%/mew/mew-local.el +%%EMACS_SITE_LISPDIR%%/mew/mew-mark.el +%%EMACS_SITE_LISPDIR%%/mew/mew-message.el +%%EMACS_SITE_LISPDIR%%/mew/mew-mime.el +%%EMACS_SITE_LISPDIR%%/mew/mew-minibuf.el +%%EMACS_SITE_LISPDIR%%/mew/mew-mule.el +%%EMACS_SITE_LISPDIR%%/mew/mew-mule3.el +%%EMACS_SITE_LISPDIR%%/mew/mew-net.el +%%EMACS_SITE_LISPDIR%%/mew/mew-nntp.el +%%EMACS_SITE_LISPDIR%%/mew/mew-nntp2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-oauth2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-passwd.el +%%EMACS_SITE_LISPDIR%%/mew/mew-pgp.el +%%EMACS_SITE_LISPDIR%%/mew/mew-pick.el +%%EMACS_SITE_LISPDIR%%/mew/mew-pop.el +%%EMACS_SITE_LISPDIR%%/mew/mew-refile.el +%%EMACS_SITE_LISPDIR%%/mew/mew-scan.el +%%EMACS_SITE_LISPDIR%%/mew/mew-search.el +%%EMACS_SITE_LISPDIR%%/mew/mew-smime.el +%%EMACS_SITE_LISPDIR%%/mew/mew-smtp.el +%%EMACS_SITE_LISPDIR%%/mew/mew-sort.el +%%EMACS_SITE_LISPDIR%%/mew/mew-ssh.el +%%EMACS_SITE_LISPDIR%%/mew/mew-ssl.el +%%EMACS_SITE_LISPDIR%%/mew/mew-summary.el +%%EMACS_SITE_LISPDIR%%/mew/mew-summary2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-summary3.el +%%EMACS_SITE_LISPDIR%%/mew/mew-summary4.el +%%EMACS_SITE_LISPDIR%%/mew/mew-syntax.el +%%EMACS_SITE_LISPDIR%%/mew/mew-thread.el +%%EMACS_SITE_LISPDIR%%/mew/mew-unix.el +%%EMACS_SITE_LISPDIR%%/mew/mew-vars.el +%%EMACS_SITE_LISPDIR%%/mew/mew-vars2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-vars3.el +%%EMACS_SITE_LISPDIR%%/mew/mew-varsx.el +%%EMACS_SITE_LISPDIR%%/mew/mew-virtual.el +%%EMACS_SITE_LISPDIR%%/mew/mew-win32.el +%%EMACS_SITE_LISPDIR%%/mew/mew.el diff --git a/mail/mew/Makefile b/mail/mew/Makefile index 90bd775f44b6..0ea9c567f828 100644 --- a/mail/mew/Makefile +++ b/mail/mew/Makefile @@ -1,50 +1,53 @@ PORTNAME= mew DISTVERSION= 6.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail elisp MASTER_SITES= http://www.mew.org/Release/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Messaging in the Emacs World for emacs WWW= https://www.Mew.org/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= emacs +USES= emacs:build GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-elispdir=${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/mew \ - --with-etcdir=${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/mew/etc +CONFIGURE_ARGS= --with-elispdir=${LOCALBASE}/${EMACS_SITE_LISPDIR}/mew \ + --with-etcdir=${LOCALBASE}/${EMACS_SITE_LISPDIR}/mew/etc # target name for make build and install ALL_TARGET= all info jinfo INSTALL_TARGET= install install-jinfo -CONFLICTS_INSTALL= mew-devel mew-devel-emacs_* mew-emacs_* # bin/cmew bin/incm +CONFLICTS_INSTALL= mew-devel mew-emacs_* SUB_FILES= pkg-message INFO= mew mew.ja PORTDOCS= API.md CHANGES.v0.md CHANGES.v1.md CHANGES.v2.md CHANGES.v3.md \ CHANGES.v4.1.md CHANGES.v4.2.md CHANGES.v5.1.md CHANGES.v5.2.md \ CHANGES.v6.1.md CHANGES.v6.2.md CHANGES.v6.3.md CHANGES.v6.4.md \ CHANGES.v6.5.md CHANGES.v6.6.md CHANGES.v6.7.md CHANGES.v6.8.md \ CHANGES.v6.9.md INSTALL.md README.md RELEASENOTE.md OPTIONS_DEFINE= DATABASE DOCS STUNNEL OPTIONS_DEFAULT= STUNNEL DATABASE_DESC= Support database feature (with Ruby & Sqlite3) STUNNEL_DESC= Support TLS feature using stunnel DATABASE_RUN_DEPENDS= rubygem-sqlite3>=0:databases/rubygem-sqlite3 STUNNEL_RUN_DEPENDS= stunnel>=0:security/stunnel +post-install: + @${FIND} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/mew \ + -name "*.elc" -delete + post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/*.md ${WRKSRC}/CHANGES/*.md ${STAGEDIR}${DOCSDIR} (cd ${STAGEDIR}${DOCSDIR}; for f in v*.md ; do ${MV} $$f CHANGES.$$f; done) .include diff --git a/mail/mew/pkg-plist b/mail/mew/pkg-plist index e12c46bd280d..91bdef71f932 100644 --- a/mail/mew/pkg-plist +++ b/mail/mew/pkg-plist @@ -1,185 +1,118 @@ bin/cmew bin/incm bin/mew-pinentry bin/mewcat bin/mewdecode bin/mewencode bin/mewest bin/mewl bin/smew share/man/man1/cmew.1.gz share/man/man1/incm.1.gz share/man/man1/mew-pinentry.1.gz share/man/man1/mewcat.1.gz share/man/man1/mewdecode.1.gz share/man/man1/mewencode.1.gz share/man/man1/mewest.1.gz share/man/man1/mewl.1.gz share/man/man1/smew.1.gz -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/Mew.img -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/Mew.png -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/Mew.xbm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/Mew.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Audio.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Blank.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-External.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Folder.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Image.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Octet-Stream.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Postscript.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Rfc822.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Text.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Unknown.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-Video.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-attach.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-cite.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-forward.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-inc.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-lock.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-next.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-pgp-enc.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-pgp-sigenc.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-pgp-sign.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-prev.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-queue.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-refile.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-reply.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-send.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-sep.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-show.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-write.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/etc/mew-yank.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-addrbook.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-addrbook.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-attach.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-attach.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-auth.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-auth.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-blvs.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-blvs.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-bq.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-bq.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-cache.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-cache.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-complete.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-complete.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-config.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-config.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-const.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-const.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-darwin.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-darwin.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-decode.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-decode.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-demo.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-demo.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-draft.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-draft.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-edit.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-edit.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-encode.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-encode.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-env.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-env.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-env0.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-env0.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-exec.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-exec.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ext.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ext.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-fib.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-fib.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-func.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-func.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-gemacs.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-gemacs.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-header.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-header.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-highlight.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-highlight.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-imap.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-imap.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-imap2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-imap2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-key.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-key.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-jp.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-jp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-kr.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-kr.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-latin.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-lang-latin.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-local.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-local.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mark.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mark.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-message.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-message.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mime.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mime.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-minibuf.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-minibuf.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mule.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mule.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mule3.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-mule3.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-net.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-net.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-nntp.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-nntp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-nntp2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-nntp2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-oauth2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-oauth2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-passwd.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-passwd.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pgp.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pgp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pick.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pick.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pop.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-pop.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-refile.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-refile.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-scan.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-scan.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-search.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-search.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-smime.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-smime.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-smtp.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-smtp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-sort.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-sort.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ssh.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ssh.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ssl.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-ssl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary3.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary3.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary4.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-summary4.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-syntax.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-syntax.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-thread.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-thread.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-unix.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-unix.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars2.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars3.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-vars3.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-varsx.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-varsx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-virtual.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-virtual.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-win32.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew-win32.elc -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew.el -%%EMACS_VERSION_SITE_LISPDIR%%/mew/mew.elc +%%EMACS_SITE_LISPDIR%%/mew/etc/Mew.img +%%EMACS_SITE_LISPDIR%%/mew/etc/Mew.png +%%EMACS_SITE_LISPDIR%%/mew/etc/Mew.xbm +%%EMACS_SITE_LISPDIR%%/mew/etc/Mew.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Audio.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Blank.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-External.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Folder.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Image.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Octet-Stream.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Postscript.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Rfc822.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Text.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Unknown.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-Video.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-attach.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-cite.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-forward.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-inc.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-lock.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-next.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-pgp-enc.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-pgp-sigenc.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-pgp-sign.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-prev.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-queue.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-refile.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-reply.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-send.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-sep.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-show.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-write.xpm +%%EMACS_SITE_LISPDIR%%/mew/etc/mew-yank.xpm +%%EMACS_SITE_LISPDIR%%/mew/mew-addrbook.el +%%EMACS_SITE_LISPDIR%%/mew/mew-attach.el +%%EMACS_SITE_LISPDIR%%/mew/mew-auth.el +%%EMACS_SITE_LISPDIR%%/mew/mew-blvs.el +%%EMACS_SITE_LISPDIR%%/mew/mew-bq.el +%%EMACS_SITE_LISPDIR%%/mew/mew-cache.el +%%EMACS_SITE_LISPDIR%%/mew/mew-complete.el +%%EMACS_SITE_LISPDIR%%/mew/mew-config.el +%%EMACS_SITE_LISPDIR%%/mew/mew-const.el +%%EMACS_SITE_LISPDIR%%/mew/mew-darwin.el +%%EMACS_SITE_LISPDIR%%/mew/mew-decode.el +%%EMACS_SITE_LISPDIR%%/mew/mew-demo.el +%%EMACS_SITE_LISPDIR%%/mew/mew-draft.el +%%EMACS_SITE_LISPDIR%%/mew/mew-edit.el +%%EMACS_SITE_LISPDIR%%/mew/mew-encode.el +%%EMACS_SITE_LISPDIR%%/mew/mew-env.el +%%EMACS_SITE_LISPDIR%%/mew/mew-env0.el +%%EMACS_SITE_LISPDIR%%/mew/mew-exec.el +%%EMACS_SITE_LISPDIR%%/mew/mew-ext.el +%%EMACS_SITE_LISPDIR%%/mew/mew-fib.el +%%EMACS_SITE_LISPDIR%%/mew/mew-func.el +%%EMACS_SITE_LISPDIR%%/mew/mew-gemacs.el +%%EMACS_SITE_LISPDIR%%/mew/mew-header.el +%%EMACS_SITE_LISPDIR%%/mew/mew-highlight.el +%%EMACS_SITE_LISPDIR%%/mew/mew-imap.el +%%EMACS_SITE_LISPDIR%%/mew/mew-imap2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-key.el +%%EMACS_SITE_LISPDIR%%/mew/mew-lang-jp.el +%%EMACS_SITE_LISPDIR%%/mew/mew-lang-kr.el +%%EMACS_SITE_LISPDIR%%/mew/mew-lang-latin.el +%%EMACS_SITE_LISPDIR%%/mew/mew-local.el +%%EMACS_SITE_LISPDIR%%/mew/mew-mark.el +%%EMACS_SITE_LISPDIR%%/mew/mew-message.el +%%EMACS_SITE_LISPDIR%%/mew/mew-mime.el +%%EMACS_SITE_LISPDIR%%/mew/mew-minibuf.el +%%EMACS_SITE_LISPDIR%%/mew/mew-mule.el +%%EMACS_SITE_LISPDIR%%/mew/mew-mule3.el +%%EMACS_SITE_LISPDIR%%/mew/mew-net.el +%%EMACS_SITE_LISPDIR%%/mew/mew-nntp.el +%%EMACS_SITE_LISPDIR%%/mew/mew-nntp2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-oauth2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-passwd.el +%%EMACS_SITE_LISPDIR%%/mew/mew-pgp.el +%%EMACS_SITE_LISPDIR%%/mew/mew-pick.el +%%EMACS_SITE_LISPDIR%%/mew/mew-pop.el +%%EMACS_SITE_LISPDIR%%/mew/mew-refile.el +%%EMACS_SITE_LISPDIR%%/mew/mew-scan.el +%%EMACS_SITE_LISPDIR%%/mew/mew-search.el +%%EMACS_SITE_LISPDIR%%/mew/mew-smime.el +%%EMACS_SITE_LISPDIR%%/mew/mew-smtp.el +%%EMACS_SITE_LISPDIR%%/mew/mew-sort.el +%%EMACS_SITE_LISPDIR%%/mew/mew-ssh.el +%%EMACS_SITE_LISPDIR%%/mew/mew-ssl.el +%%EMACS_SITE_LISPDIR%%/mew/mew-summary.el +%%EMACS_SITE_LISPDIR%%/mew/mew-summary2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-summary3.el +%%EMACS_SITE_LISPDIR%%/mew/mew-summary4.el +%%EMACS_SITE_LISPDIR%%/mew/mew-syntax.el +%%EMACS_SITE_LISPDIR%%/mew/mew-thread.el +%%EMACS_SITE_LISPDIR%%/mew/mew-unix.el +%%EMACS_SITE_LISPDIR%%/mew/mew-vars.el +%%EMACS_SITE_LISPDIR%%/mew/mew-vars2.el +%%EMACS_SITE_LISPDIR%%/mew/mew-vars3.el +%%EMACS_SITE_LISPDIR%%/mew/mew-varsx.el +%%EMACS_SITE_LISPDIR%%/mew/mew-virtual.el +%%EMACS_SITE_LISPDIR%%/mew/mew-win32.el +%%EMACS_SITE_LISPDIR%%/mew/mew.el diff --git a/mail/notmuch-emacs/Makefile b/mail/notmuch-emacs/Makefile index eea817efb088..b17014f121ad 100644 --- a/mail/notmuch-emacs/Makefile +++ b/mail/notmuch-emacs/Makefile @@ -1,75 +1,79 @@ -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= mail elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX:S/^$/-emacs/} +PKGNAMESUFFIX= -emacs COMMENT= Emacs major-mode for the Notmuch email search and tagging application WWW= https://notmuchmail.org/notmuch-emacs/ LICENSE= GPLv3 RUN_DEPENDS= notmuch:mail/notmuch -USES= emacs gmake +USES= emacs:build gmake INSTALL_TARGET= install-emacs MASTERDIR= ${.CURDIR}/../notmuch + +CONFLICTS_INSTALL= notmuch-emacs_* + NO_ARCH= yes OPTIONS_DEFINE= DESKTOP DOCS MANPAGES OPTIONS_DEFAULT= MANPAGES OPTIONS_SUB= yes DESKTOP_DESC= Install .desktop file for notmuch-emacs-mua DESKTOP_CONFIGURE_ON= WITH_DESKTOP=1 DESKTOP_USES= desktop-file-utils DOCS_ALL_TARGET= build-info DOCS_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx DOCS_CONFIGURE_ON= HAVE_INSTALL_INFO=1 HAVE_MAKEINFO=1 HAVE_SPHINX=1 DOCS_INFO= notmuch-emacs DOCS_INSTALL_TARGET= install-info DOCS_USES= makeinfo MANPAGES_ALL_TARGET= build-man MANPAGES_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx MANPAGES_CONFIGURE_ON= HAVE_SPHINX=1 MANPAGES_INSTALL_TARGET= install-man PORTSCOUT= limit:^[0-9\.]*$$ # fake ./configure to avoid unneeded dependencies do-configure: @${CP} ${WRKSRC}/version.txt ${WRKSRC}/version.stamp @${ECHO_CMD} 'quiet=$$($$(word 1, $$(1)))' > ${WRKSRC}/Makefile.local @${PRINTF} \ '%s\n' \ BASH_ABSOLUTE=/bin/sh \ desktop_dir=${PREFIX}/share/applications \ emacsetcdir=${PREFIX}/${EMACS_SITE_LISPDIR} \ emacslispdir=${PREFIX}/${EMACS_SITE_LISPDIR} \ HAVE_BASH=1 \ HAVE_EMACS=1 \ infodir=${PREFIX}/${INFO_PATH} \ mandir=${PREFIX}/share/man \ NOTMUCH_SRCDIR=${WRKSRC} \ prefix=${PREFIX} \ srcdir=. \ subdirs='doc emacs' \ WITH_EMACS=1 \ ${CONFIGURE_ARGS} \ > ${WRKSRC}/Makefile.config @${PRINTF} "tags.add('WITH_EMACS')\nrsti_dir = '${WRKSRC}/emacs'\n" \ > ${WRKSRC}/sphinx.config post-install: + @${FIND} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} -name "*.elc" -delete @${GZIP_CMD} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/*.el # keep poudriere testport happy post-install-DOCS-on: @${FIND} ${STAGEDIR}${PREFIX}/${INFO_PATH} ! -type d ! -name notmuch-emacs.info -delete post-install-MANPAGES-on: @${FIND} ${STAGEDIR}${PREFIX}/share/man ! -type d ! -name notmuch-emacs-mua.1.gz -delete # modify what Mk/Uses/emacs.mk set -MAKE_ARGS+= EMACS+=--quick +MAKE_ARGS+= EMACS=EMACS+=--quick .include "${MASTERDIR}/Makefile" diff --git a/mail/notmuch-emacs/pkg-plist b/mail/notmuch-emacs/pkg-plist index 7680c80bbc11..03a934cfeffa 100644 --- a/mail/notmuch-emacs/pkg-plist +++ b/mail/notmuch-emacs/pkg-plist @@ -1,47 +1,26 @@ %%DESKTOP%%share/applications/notmuch-emacs-mua.desktop %%EMACS_SITE_LISPDIR%%/coolj.el.gz -%%EMACS_SITE_LISPDIR%%/coolj.elc %%EMACS_SITE_LISPDIR%%/notmuch-address.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-address.elc %%EMACS_SITE_LISPDIR%%/notmuch-autoloads.el.gz %%EMACS_SITE_LISPDIR%%/notmuch-company.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-company.elc %%EMACS_SITE_LISPDIR%%/notmuch-compat.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-compat.elc %%EMACS_SITE_LISPDIR%%/notmuch-crypto.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-crypto.elc %%EMACS_SITE_LISPDIR%%/notmuch-draft.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-draft.elc %%EMACS_SITE_LISPDIR%%/notmuch-hello.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-hello.elc %%EMACS_SITE_LISPDIR%%/notmuch-jump.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-jump.elc %%EMACS_SITE_LISPDIR%%/notmuch-lib.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-lib.elc %%EMACS_SITE_LISPDIR%%/notmuch-logo.svg %%EMACS_SITE_LISPDIR%%/notmuch-maildir-fcc.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-maildir-fcc.elc %%EMACS_SITE_LISPDIR%%/notmuch-message.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-message.elc %%EMACS_SITE_LISPDIR%%/notmuch-mua.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-mua.elc %%EMACS_SITE_LISPDIR%%/notmuch-parser.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-parser.elc %%EMACS_SITE_LISPDIR%%/notmuch-print.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-print.elc %%EMACS_SITE_LISPDIR%%/notmuch-query.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-query.elc %%EMACS_SITE_LISPDIR%%/notmuch-show.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-show.elc %%EMACS_SITE_LISPDIR%%/notmuch-tag.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-tag.elc %%EMACS_SITE_LISPDIR%%/notmuch-tree.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-tree.elc %%EMACS_SITE_LISPDIR%%/notmuch-version.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-version.elc %%EMACS_SITE_LISPDIR%%/notmuch-wash.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch-wash.elc %%EMACS_SITE_LISPDIR%%/notmuch.el.gz -%%EMACS_SITE_LISPDIR%%/notmuch.elc %%MANPAGES%%share/man/man1/notmuch-emacs-mua.1.gz bin/notmuch-emacs-mua diff --git a/mail/wanderlust/Makefile b/mail/wanderlust/Makefile index d5b6ca938629..1e2f4aea2bd8 100644 --- a/mail/wanderlust/Makefile +++ b/mail/wanderlust/Makefile @@ -1,66 +1,71 @@ PORTNAME= wanderlust PORTVERSION= 2.15.9.b.${SNAPDATE} +PORTREVISION= 1 CATEGORIES= mail elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= nobutaka@FreeBSD.org COMMENT= Mail and news system for Emacs WWW= https://github.com/wanderlust/wanderlust LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= emacs-w3m${EMACS_PKGNAMESUFFIX}>0:www/emacs-w3m@${EMACS_FLAVOR} \ - semi${EMACS_PKGNAMESUFFIX}>0:editors/semi@${EMACS_FLAVOR} \ - x-face-e21${EMACS_PKGNAMESUFFIX}>0:mail/x-face-e21@${EMACS_FLAVOR} -RUN_DEPENDS= emacs-w3m${EMACS_PKGNAMESUFFIX}>0:www/emacs-w3m@${EMACS_FLAVOR} \ - semi${EMACS_PKGNAMESUFFIX}>0:editors/semi@${EMACS_FLAVOR} +BUILD_DEPENDS= emacs-w3m>0:www/emacs-w3m \ + semi>0:editors/semi \ + x-face-e21>0:mail/x-face-e21 +RUN_DEPENDS= emacs-w3m>0:www/emacs-w3m \ + semi>0:editors/semi -USES= emacs +USES= emacs:build USE_GITHUB= yes GH_TAGNAME= 06ec9fa +CONFLICTS_INSTALL= wanderlust-emacs_* + NO_ARCH= yes SNAPDATE= 20251029 MAKE_ARGS+= EMACS=${EMACS_CMD} \ FLAGS="-batch -q -no-site-file" \ - LISPDIR=${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} \ + LISPDIR=${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} \ INFODIR=${STAGEDIR}${PREFIX}/${INFO_PATH} \ PACKAGE_LISPDIR=NONE \ PIXMAPDIR=${STAGEDIR}${PREFIX}/${EMACS_LIBDIR}/etc/wl/icons INFO= wl wl-ja PORTDATA= ja.Emacs PORTDOCS= * PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES post-extract: @${CP} ${FILESDIR}/WL-CFG ${WRKSRC} post-install: - ${INSTALL} -d ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/wl \ + @${FIND} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/wl \ + -name "*.elc" -delete + + ${INSTALL} -d ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/wl \ ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${FILESDIR}/wanderlust-startup.el \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} \ ${WRKSRC}/elmo/elmo-shimbun.el \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/wl + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/wl ${INSTALL_DATA} ${WRKSRC}/etc/ja.Emacs ${STAGEDIR}${DATADIR} post-install-DOCS-on: ${INSTALL} -d ${STAGEDIR}/${DOCSDIR} .for f in README* NEWS* doc/wl*.texi ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor post-install-EXAMPLES-on: ${INSTALL} -d ${STAGEDIR}/${EXAMPLESDIR} (cd ${WRKSRC}/samples && ${COPYTREE_SHARE} "en ja" \ ${STAGEDIR}${EXAMPLESDIR}) ${RM} ${STAGEDIR}${EXAMPLESDIR}/en/*.orig \ ${STAGEDIR}${EXAMPLESDIR}/ja/*.orig .include diff --git a/mail/wanderlust/pkg-plist b/mail/wanderlust/pkg-plist index 6f10ec541f24..fed3c3418d11 100644 --- a/mail/wanderlust/pkg-plist +++ b/mail/wanderlust/pkg-plist @@ -1,234 +1,157 @@ %%EMACS_LIBDIR%%/etc/wl/icons/access.xpm %%EMACS_LIBDIR%%/etc/wl/icons/archive.xpm %%EMACS_LIBDIR%%/etc/wl/icons/closed.xpm %%EMACS_LIBDIR%%/etc/wl/icons/draft.xpm %%EMACS_LIBDIR%%/etc/wl/icons/elmo.xpm %%EMACS_LIBDIR%%/etc/wl/icons/file.xpm %%EMACS_LIBDIR%%/etc/wl/icons/filter.xpm %%EMACS_LIBDIR%%/etc/wl/icons/imap.xpm %%EMACS_LIBDIR%%/etc/wl/icons/internal.xpm %%EMACS_LIBDIR%%/etc/wl/icons/letter.xpm %%EMACS_LIBDIR%%/etc/wl/icons/local.xpm %%EMACS_LIBDIR%%/etc/wl/icons/localnews.xpm %%EMACS_LIBDIR%%/etc/wl/icons/maildir.xpm %%EMACS_LIBDIR%%/etc/wl/icons/multi.xpm %%EMACS_LIBDIR%%/etc/wl/icons/news.xpm %%EMACS_LIBDIR%%/etc/wl/icons/nmz.xpm %%EMACS_LIBDIR%%/etc/wl/icons/no-letter.xpm %%EMACS_LIBDIR%%/etc/wl/icons/opened.xpm %%EMACS_LIBDIR%%/etc/wl/icons/pipe.xpm %%EMACS_LIBDIR%%/etc/wl/icons/plugged.xpm %%EMACS_LIBDIR%%/etc/wl/icons/pop.xpm %%EMACS_LIBDIR%%/etc/wl/icons/queue.xpm %%EMACS_LIBDIR%%/etc/wl/icons/shimbun.xpm %%EMACS_LIBDIR%%/etc/wl/icons/trash-e.xpm %%EMACS_LIBDIR%%/etc/wl/icons/trash.xpm %%EMACS_LIBDIR%%/etc/wl/icons/unplugged.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-alpha-logo.xbm %%EMACS_LIBDIR%%/etc/wl/icons/wl-alpha-logo.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-alpha-xmas-logo.xbm %%EMACS_LIBDIR%%/etc/wl/icons/wl-alpha-xmas-logo.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-beta-logo.xbm %%EMACS_LIBDIR%%/etc/wl/icons/wl-beta-logo.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-beta-xmas-logo.xbm %%EMACS_LIBDIR%%/etc/wl/icons/wl-beta-xmas-logo.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-draft-insert-signature-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-draft-kill-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-draft-save-and-exit-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-draft-send-from-toolbar-down.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-draft-send-from-toolbar-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-draft-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-draft-yank-original-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-exit-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-check-current-entity-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-empty-trash-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-goto-draft-folder-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-jump-to-current-entity-no-sync-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-jump-to-current-entity-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-next-entity-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-prev-entity-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-read-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-select-entity-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-sync-current-entity-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-folder-zoom-entity-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-message-extract-content-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-message-next-content-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-message-play-content-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-message-prev-content-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-message-quit-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-message-read-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-stable-logo.xbm %%EMACS_LIBDIR%%/etc/wl/icons/wl-stable-logo.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-stable-xmas-logo.xbm %%EMACS_LIBDIR%%/etc/wl/icons/wl-stable-xmas-logo.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-delete-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-dispose-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-exit-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-forward-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-jump-to-current-message-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-next-page-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-next-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-prev-page-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-prev-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-read-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-reply-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-reply-with-citation-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-set-flags-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-summary-sync-force-update-up.xpm %%EMACS_LIBDIR%%/etc/wl/icons/wl-write-current-folder-up.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/wanderlust-startup.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/acap.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/acap.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-access.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-access.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-archive.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-archive.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-cache.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-cache.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-date.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-date.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-dop.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-dop.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-file.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-file.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-filter.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-filter.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-flag.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-flag.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-imap4.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-imap4.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-internal.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-internal.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-localdir.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-localdir.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-localnews.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-localnews.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-maildir.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-maildir.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-map.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-map.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-mime.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-mime.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-msgdb.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-msgdb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-multi.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-multi.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-net.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-net.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-nntp.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-nntp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-null.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-null.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-passwd.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-passwd.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-pipe.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-pipe.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-pop3.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-pop3.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-rss.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-rss.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-search.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-search.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-sendlog.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-sendlog.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-shimbun.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-shimbun.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-signal.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-signal.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-spam.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-spam.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-split.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-split.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-util.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-util.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-vars.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-vars.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-version.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo-version.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elmo.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elsp-bogofilter.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elsp-bogofilter.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elsp-bsfilter.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elsp-bsfilter.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elsp-sa.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elsp-sa.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elsp-spamoracle.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/elsp-spamoracle.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/im-wl.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/im-wl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/mmimap.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/mmimap.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/modb-entity.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/modb-entity.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/modb-legacy.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/modb-legacy.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/modb-standard.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/modb-standard.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/modb.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/modb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/pldap.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/pldap.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/rfc2368.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/rfc2368.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/slp.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/slp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/ssl.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/ssl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-acap.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-acap.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-action.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-action.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-addrbook.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-addrbook.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-address.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-address.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-addrmgr.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-addrmgr.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-batch.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-batch.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-complete.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-complete.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-demo.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-demo.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-draft.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-draft.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-e21.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-e21.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-expire.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-expire.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-fldmgr.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-fldmgr.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-folder.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-folder.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-highlight.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-highlight.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-mailto.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-mailto.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-message.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-message.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-mime.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-mime.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-news.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-qs.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-qs.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-refile.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-refile.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-score.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-score.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-spam.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-spam.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-summary.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-summary.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-template.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-template.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-thread.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-thread.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-util.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-util.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-vars.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-vars.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-version.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl-version.elc -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl.el -%%EMACS_VERSION_SITE_LISPDIR%%/wl/wl.elc +%%EMACS_SITE_LISPDIR%%/wanderlust-startup.el +%%EMACS_SITE_LISPDIR%%/wl/acap.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-access.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-archive.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-cache.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-date.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-dop.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-file.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-filter.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-flag.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-imap4.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-internal.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-localdir.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-localnews.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-maildir.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-map.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-mime.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-msgdb.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-multi.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-net.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-nntp.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-null.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-passwd.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-pipe.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-pop3.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-rss.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-search.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-sendlog.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-shimbun.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-signal.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-spam.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-split.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-util.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-vars.el +%%EMACS_SITE_LISPDIR%%/wl/elmo-version.el +%%EMACS_SITE_LISPDIR%%/wl/elmo.el +%%EMACS_SITE_LISPDIR%%/wl/elsp-bogofilter.el +%%EMACS_SITE_LISPDIR%%/wl/elsp-bsfilter.el +%%EMACS_SITE_LISPDIR%%/wl/elsp-sa.el +%%EMACS_SITE_LISPDIR%%/wl/elsp-spamoracle.el +%%EMACS_SITE_LISPDIR%%/wl/im-wl.el +%%EMACS_SITE_LISPDIR%%/wl/mmimap.el +%%EMACS_SITE_LISPDIR%%/wl/modb-entity.el +%%EMACS_SITE_LISPDIR%%/wl/modb-legacy.el +%%EMACS_SITE_LISPDIR%%/wl/modb-standard.el +%%EMACS_SITE_LISPDIR%%/wl/modb.el +%%EMACS_SITE_LISPDIR%%/wl/pldap.el +%%EMACS_SITE_LISPDIR%%/wl/rfc2368.el +%%EMACS_SITE_LISPDIR%%/wl/slp.el +%%EMACS_SITE_LISPDIR%%/wl/ssl.el +%%EMACS_SITE_LISPDIR%%/wl/wl-acap.el +%%EMACS_SITE_LISPDIR%%/wl/wl-action.el +%%EMACS_SITE_LISPDIR%%/wl/wl-addrbook.el +%%EMACS_SITE_LISPDIR%%/wl/wl-address.el +%%EMACS_SITE_LISPDIR%%/wl/wl-addrmgr.el +%%EMACS_SITE_LISPDIR%%/wl/wl-batch.el +%%EMACS_SITE_LISPDIR%%/wl/wl-complete.el +%%EMACS_SITE_LISPDIR%%/wl/wl-demo.el +%%EMACS_SITE_LISPDIR%%/wl/wl-draft.el +%%EMACS_SITE_LISPDIR%%/wl/wl-e21.el +%%EMACS_SITE_LISPDIR%%/wl/wl-expire.el +%%EMACS_SITE_LISPDIR%%/wl/wl-fldmgr.el +%%EMACS_SITE_LISPDIR%%/wl/wl-folder.el +%%EMACS_SITE_LISPDIR%%/wl/wl-highlight.el +%%EMACS_SITE_LISPDIR%%/wl/wl-mailto.el +%%EMACS_SITE_LISPDIR%%/wl/wl-message.el +%%EMACS_SITE_LISPDIR%%/wl/wl-mime.el +%%EMACS_SITE_LISPDIR%%/wl/wl-news.el +%%EMACS_SITE_LISPDIR%%/wl/wl-qs.el +%%EMACS_SITE_LISPDIR%%/wl/wl-refile.el +%%EMACS_SITE_LISPDIR%%/wl/wl-score.el +%%EMACS_SITE_LISPDIR%%/wl/wl-spam.el +%%EMACS_SITE_LISPDIR%%/wl/wl-summary.el +%%EMACS_SITE_LISPDIR%%/wl/wl-template.el +%%EMACS_SITE_LISPDIR%%/wl/wl-thread.el +%%EMACS_SITE_LISPDIR%%/wl/wl-util.el +%%EMACS_SITE_LISPDIR%%/wl/wl-vars.el +%%EMACS_SITE_LISPDIR%%/wl/wl-version.el +%%EMACS_SITE_LISPDIR%%/wl/wl.el diff --git a/mail/x-face-e21/Makefile b/mail/x-face-e21/Makefile index 5df614649a22..f14007322f65 100644 --- a/mail/x-face-e21/Makefile +++ b/mail/x-face-e21/Makefile @@ -1,37 +1,38 @@ PORTNAME= x-face-e21 PORTVERSION= 20070306 -PORTREVISION= 34 +PORTREVISION= 35 CATEGORIES= mail elisp MASTER_SITES= http://www.jpl.org/elips/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= ${PORTNAME}.el EXTRACT_SUFX= .gz MAINTAINER= ume@FreeBSD.org COMMENT= X-Face utilities for Emacs WWW= https://www.jpl.org/elips/ RUN_DEPENDS= uncompface:mail/faces USES= emacs NO_WRKSUBDIR= yes EXTRACT_CMD= ${GZCAT} EXTRACT_BEFORE_ARGS= EXTRACT_AFTER_ARGS= > ${DISTNAME} -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/${DISTNAME} \ - ${EMACS_VERSION_SITE_LISPDIR}/${DISTNAME}c +CONFLICTS_INSTALL= x-face-e21-emacs_* + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= ${EMACS_SITE_LISPDIR}/${DISTNAME} do-build: @(cd ${WRKSRC} && ${EMACS_CMD} -batch -q -no-site-file -no-init-file \ -f batch-byte-compile ${DISTNAME}) do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/${DISTNAME} \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/${DISTNAME}c \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/mail/xcite/Makefile b/mail/xcite/Makefile index d28621c303dc..ac5958a9cd58 100644 --- a/mail/xcite/Makefile +++ b/mail/xcite/Makefile @@ -1,36 +1,33 @@ PORTNAME= xcite PORTVERSION= 1.60 -PORTREVISION= 29 +PORTREVISION= 30 CATEGORIES= mail elisp MASTER_SITES= https://www.gentei.org/~yuuji/software/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= ${PORTNAME}.el EXTRACT_SUFX= # empty MAINTAINER= ume@FreeBSD.org COMMENT= Exciting Cite for any Mail/News reading modes on Emacs WWW= https://www.gentei.org/~yuuji/software/ USES= emacs NO_WRKSUBDIR= yes EXTRACT_CMD= ${CP} EXTRACT_BEFORE_ARGS= -p EXTRACT_AFTER_ARGS= . -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/${DISTNAME} \ - ${EMACS_VERSION_SITE_LISPDIR}/${DISTNAME}c +CONFLICTS_INSTALL= xcite-emacs_* -do-build: - @(cd ${WRKSRC} && ${EMACS_CMD} -batch -q -no-site-file -no-init-file \ - -f batch-byte-compile ${DISTNAME}) +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= ${EMACS_SITE_LISPDIR}/${DISTNAME} do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/${DISTNAME} \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/${DISTNAME}c \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/math/ess/Makefile b/math/ess/Makefile index 0e994377db88..bd538e7f4212 100644 --- a/math/ess/Makefile +++ b/math/ess/Makefile @@ -1,70 +1,72 @@ PORTNAME= ess DISTVERSION= 26.01.0 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= https://ess.r-project.org/ \ https://stat.ethz.ch/ESS/downloads/ess/ \ https://raw.githubusercontent.com/JuliaEditorSupport/:JULIA PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTFILES= ${PORTNAME}-${DISTVERSION}.tar.gz \ julia-emacs/refs/heads/master/julia-mode.el:JULIA \ julia-emacs/refs/heads/master/julia-mode-latexsubs.el:JULIA EXTRACT_ONLY= ${DISTNAME}.tar.gz MAINTAINER= rhurlin@FreeBSD.org COMMENT= R support for Emacsen WWW= https://ess.r-project.org/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= R:math/R -USES= emacs gmake makeinfo perl5 tar:tgz +USES= emacs:build gmake makeinfo perl5 tar:tgz USE_PERL5= build +CONFLICTS_INSTALL= ess-emacs_* + NO_ARCH= yes INFO= ess OPTIONS_DEFINE= DOCS .include .if ${OPTIONS_DEFINE:MDOCS} BUILD_DEPENDS+= makeinfo:print/texinfo \ texi2html:textproc/texi2html USES+= tex USE_TEX= latex:build dvipsk:build INSTALL_TARGET= doc .endif post-extract: @${CP} -p ${DISTDIR}/julia-emacs/refs/heads/master/julia-mode*.el \ ${WRKSRC}/lisp/ post-patch: @${REINPLACE_CMD} -e \ 's|sed -i|sed -i .orig|g' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e \ 's|info text|info text html pdf|' ${WRKSRC}/doc/Makefile do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/*.pdf ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/refcard/*.pdf ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/html/*.html ${STAGEDIR}${DOCSDIR} post-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/share/emacs/site-lisp/ess/ - @${CP} ${WRKSRC}/lisp/*.el ${STAGEDIR}${PREFIX}/share/emacs/site-lisp/ess/ - @${CP} ${WRKSRC}/lisp/*.elc ${STAGEDIR}${PREFIX}/share/emacs/site-lisp/ess/ + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/ess/ + @${CP} ${WRKSRC}/lisp/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/ess/ ${INSTALL_DATA} ${WRKSRC}/doc/info/ess.info ${STAGEDIR}${PREFIX}/${INFO_PATH} @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_LIBDIR}/etc/ess/ (cd ${WRKSRC}/etc && ${CP} ess-julia.jl ess-sas-sh-command \ ${STAGEDIR}${PREFIX}/${EMACS_LIBDIR}/etc/ess/) ${CP} -R ${WRKSRC}/etc/ESSR \ ${STAGEDIR}${PREFIX}/${EMACS_LIBDIR}/etc/ess/ ${CP} -R ${WRKSRC}/etc/icons \ ${STAGEDIR}${PREFIX}/${EMACS_LIBDIR}/etc/ess/ .include diff --git a/math/ess/pkg-message b/math/ess/pkg-message deleted file mode 100644 index d9e277ab51c7..000000000000 --- a/math/ess/pkg-message +++ /dev/null @@ -1,12 +0,0 @@ -[ -{ type: install - message: < diff --git a/misc/compat.el/pkg-plist b/misc/compat.el/pkg-plist index fef6d8453fca..b8304f3c5ce2 100644 --- a/misc/compat.el/pkg-plist +++ b/misc/compat.el/pkg-plist @@ -1,15 +1,8 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-25.el -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-25.elc -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-26.el -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-26.elc -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-27.el -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-27.elc -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-28.el -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-28.elc -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-29.el -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-29.elc -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-30.el -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-30.elc -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat-macs.el -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat.el -%%EMACS_VERSION_SITE_LISPDIR%%/compat/compat.elc +%%EMACS_SITE_LISPDIR%%/compat/compat-25.el +%%EMACS_SITE_LISPDIR%%/compat/compat-26.el +%%EMACS_SITE_LISPDIR%%/compat/compat-27.el +%%EMACS_SITE_LISPDIR%%/compat/compat-28.el +%%EMACS_SITE_LISPDIR%%/compat/compat-29.el +%%EMACS_SITE_LISPDIR%%/compat/compat-30.el +%%EMACS_SITE_LISPDIR%%/compat/compat-macs.el +%%EMACS_SITE_LISPDIR%%/compat/compat.el diff --git a/misc/elscreen/Makefile b/misc/elscreen/Makefile index 28ea906328a3..8c7b0e78adc2 100644 --- a/misc/elscreen/Makefile +++ b/misc/elscreen/Makefile @@ -1,40 +1,41 @@ PORTNAME= elscreen PORTVERSION= 1.4.6.20180320 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= misc elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Emacs utility similar to GNU Screen WWW= https://github.com/TakaakiFuruse/elscreen LICENSE= GPLv2 -RUN_DEPENDS= apel${EMACS_PKGNAMESUFFIX}>0:editors/apel@${EMACS_FLAVOR} +RUN_DEPENDS= apel>0:editors/apel USES= emacs USE_GITHUB= yes GH_ACCOUNT= TakaakiFuruse GH_PROJECT= ${PORTNAME} GH_TAGNAME= 329b438 +CONFLICTS_INSTALL= elscreen-emacs_* + NO_ARCH= yes NO_BUILD= YES PORTDOCS= GF-QuickStart GF-README Readme.md OPTIONS_DEFINE= DOCS do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} (cd ${WRKSRC}; ${INSTALL_DATA} ${WRKSRC}/*.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME}) ${MKDIR} ${STAGEDIR}${DOCSDIR} do-install-DOCS-on: .for i in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/misc/elscreen/pkg-message b/misc/elscreen/pkg-message index c8a3c70b3bb2..fca5f515db6b 100644 --- a/misc/elscreen/pkg-message +++ b/misc/elscreen/pkg-message @@ -1,11 +1,11 @@ [ { type: install message: < diff --git a/net/gnu-radius/Makefile b/net/gnu-radius/Makefile index 01f75016e6fa..e8b4a2b0dda3 100644 --- a/net/gnu-radius/Makefile +++ b/net/gnu-radius/Makefile @@ -1,79 +1,77 @@ PORTNAME= gnu-radius PORTVERSION= 1.6.1 PORTREVISION= 18 CATEGORIES= net MASTER_SITES= GNU/radius DISTNAME= radius-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNU RADIUS server WWW= https://www.gnu.org/software/radius/ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libltdl.so:devel/libltdl USES= cpe gmake libtool USE_RC_SUBR= radiusd USE_SUBMAKE= yes USE_LDCONFIG= yes CPE_PRODUCT= radius CPE_VENDOR= gnu CONFLICTS= freeradius-0.* openradius-0.* radiusd-cistron-1.* GNU_CONFIGURE= yes GNU_CONFIGURE_MANPREFIX=${PREFIX}/share INSTALL_TARGET= install-strip PLIST_SUB= PORTVERSION=${PORTVERSION} DATADIR= ${PREFIX}/share/radius INFO= radius SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ CURDIR="${.CURDIR}" \ MKDIR="${MKDIR}" CONFIGURE_ARGS+=--with-include-path="${LOCALBASE}/include/" \ --with-lib-path="${LOCALBASE}/lib/" OPTIONS_DEFINE= CLIENT MYSQL PGSQL EXAMPLES DBM SNMP EMACS PAM NLS OPTIONS_DEFAULT=MYSQL OPTIONS_SUB= yes CLIENT_DESC= Build client EMACS_DESC= Install Emacs dotfiles SNMP_CONFIGURE_ENABLE= snmp CLIENT_CONFIGURE_ENABLE= client CLIENT_USES= guile:1.8,alias CLIENT_CONFIGURE_OFF= --without-guile MYSQL_USES= mysql MYSQL_CONFIGURE_WITH= mysql PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= postgres DBM_CONFIGURE_ENABLE= dbm=ndbm EMACS_USES= emacs -EMACS_CONFIGURE_WITH= lispdir=${PREFIX}/${EMACS_SITE_LISPDIR} -EMACS_NO_DEPENDS= yes NLS_USES= gettext NLS_CONFIGURE_OFF= --disable-nls PAM_CONFIGURE_ENABLE= pam post-patch: ${REINPLACE_CMD} -e 's|extern unsigned scheme_gc_interval;||g' \ ${WRKSRC}/include/radiusd.h ${REINPLACE_CMD} -e 's|int getline|ssize_t getline|' \ ${WRKSRC}/radtest/input.l ${WRKSRC}/radtest/input.c post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ( cd ${WRKSRC}/examples && ${COPYTREE_SHARE} .\ ${STAGEDIR}${EXAMPLESDIR}\ "! ( -name Makefile -o -name Makefile\.* ) " ) post-install-EMACS-on: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/elisp/*.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/print/a2ps/Makefile b/print/a2ps/Makefile index fd9a2e7ff6a4..932deee69152 100644 --- a/print/a2ps/Makefile +++ b/print/a2ps/Makefile @@ -1,83 +1,81 @@ PORTNAME= a2ps PORTVERSION= 4.15.8 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= GNU LOCAL/hrs/a2ps/:i18n MAINTAINER= dinoex@FreeBSD.org COMMENT= Formats an ASCII file for printing on a postscript printer WWW= https://www.gnu.org/software/a2ps/ LICENSE= GPLv3 LIB_DEPENDS= libgc.so:devel/boehm-gc \ libpaper.so:print/libpaper USES= cpe perl5 gperf pkgconfig localbase gmake USE_CSTD= gnu89 GNU_CONFIGURE= yes GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share INFO= a2ps ogonkify regex I18N_PACKAGE= i18n-fonts-0.1 CONFIGURE_ARGS= --with-medium=libpaper --sharedstatedir=${PREFIX}/share \ --sysconfdir=${PREFIX}/etc --datadir=${PREFIX}/share \ --localstatedir=${PREFIX}/share LIBS+= -L${LOCALBASE}/lib PAPERSIZE?= .if ${PAPERSIZE:tl} == a4 RUN_DEPENDS+= ${LOCALBASE}/etc/papersize:print/papersize-default-a4 .endif OPTIONS_DEFINE=NLS I18N EMACS NO_OPTIONS_SORT=yes OPTIONS_SUB= yes EMACS_DESC=Enable Emacs support I18N_DESC=Enable I18N support NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls -EMACS_USES= emacs:noflavors +EMACS_USES= emacs EMACS_CONFIGURE_ON= --with-lispdir=${LOCALBASE}/${EMACS_SITE_LISPDIR} EMACS_CONFIGURE_OFF= --without-emacs --without-lispdir .include -.if ! ${PORT_OPTIONS:MEMACS} CONFIGURE_ENV+= EMACS=no -.endif .if ${PORT_OPTIONS:MI18N} || make(makesum) || defined(FETCH_ALL) #DISTFILES+= ${I18N_PACKAGE}${EXTRACT_SUFX}:i18n DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${I18N_PACKAGE}${EXTRACT_SUFX}:i18n pre-configure: cd ${WRKDIR}/${I18N_PACKAGE}/afm && \ ${ECHO_CMD} *.afm > afms.lst && \ ${MV} *.afm ${WRKSRC}/afm cd ${WRKDIR}/${I18N_PACKAGE}/fonts && \ ${MV} *.pfb ${WRKSRC}/fonts post-configure: @cd ${WRKSRC}/fonts && { ${ECHO_CMD} ''; \ ${ECHO_CMD} "pfb_fonts =" *.pfb; } >> Makefile && \ ${REINPLACE_CMD} 's,^\(fonts_DATA = .*\),\1 $$(pfb_fonts),' Makefile @cd ${WRKSRC}/afm && { ${ECHO_CMD} ''; \ ${ECHO_CMD} "i18n_afms =" `cat ${WRKDIR}/${I18N_PACKAGE}/afm/afms.lst`; } >> Makefile && \ ${REINPLACE_CMD} 's,^\(all_afms = .*\),\1 $$(i18n_afms),' Makefile .endif post-install: .if ${PORT_OPTIONS:MEMACS} ${MKDIR} ${STAGEDIR}${PREFIX}/lib/xemacs/site-lisp - ${LN} -sf ${PREFIX}/share/emacs/site-lisp/a2ps-print.el \ + ${LN} -sf ${PREFIX}/${EMACS_SITE_LISPDIR}/a2ps-print.el \ ${STAGEDIR}${PREFIX}/lib/xemacs/site-lisp/a2ps-print.el - ${LN} -sf ${PREFIX}/share/emacs/site-lisp/a2ps.el \ + ${LN} -sf ${PREFIX}/${EMACS_SITE_LISPDIR}/a2ps.el \ ${STAGEDIR}${PREFIX}/lib/xemacs/site-lisp/a2ps.el .endif cd ${WRKSRC}/doc && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${.MAKEFLAGS} ${MAKE_ARGS} ${INSTALL_TARGET} ${RM} ${STAGEDIR}${PREFIX}/lib/liba2ps.la .include diff --git a/print/a2ps/pkg-plist b/print/a2ps/pkg-plist index 4d6b473b9927..c8b4c9e040ca 100644 --- a/print/a2ps/pkg-plist +++ b/print/a2ps/pkg-plist @@ -1,363 +1,361 @@ bin/a2ps bin/a2ps-lpr-wrapper bin/card bin/composeglyphs bin/fixps bin/lp2 bin/ogonkify bin/pdiff etc/a2ps-site.cfg etc/a2ps.cfg %%DATADIR%%/README %%DATADIR%%/afm/fonts.map %%DATADIR%%/afm/make_fonts_map.sh %%DATADIR%%/afm/pagb.afm %%DATADIR%%/afm/pagbo.afm %%DATADIR%%/afm/pagd.afm %%DATADIR%%/afm/pagdo.afm %%DATADIR%%/afm/pbkd.afm %%DATADIR%%/afm/pbkdi.afm %%DATADIR%%/afm/pbkl.afm %%DATADIR%%/afm/pbkli.afm %%DATADIR%%/afm/pcfont.afm %%DATADIR%%/afm/pcrb.afm %%DATADIR%%/afm/pcrbo.afm %%DATADIR%%/afm/pcrr.afm %%DATADIR%%/afm/pcrro.afm %%DATADIR%%/afm/phvb.afm %%DATADIR%%/afm/phvbo.afm %%DATADIR%%/afm/phvbon.afm %%DATADIR%%/afm/phvbrn.afm %%DATADIR%%/afm/phvr.afm %%DATADIR%%/afm/phvro.afm %%DATADIR%%/afm/phvron.afm %%DATADIR%%/afm/phvrrn.afm %%DATADIR%%/afm/pncb.afm %%DATADIR%%/afm/pncbi.afm %%DATADIR%%/afm/pncr.afm %%DATADIR%%/afm/pncri.afm %%DATADIR%%/afm/pplb.afm %%DATADIR%%/afm/pplbi.afm %%DATADIR%%/afm/pplr.afm %%DATADIR%%/afm/pplri.afm %%DATADIR%%/afm/psyr.afm %%DATADIR%%/afm/ptmb.afm %%DATADIR%%/afm/ptmbi.afm %%DATADIR%%/afm/ptmi.afm %%DATADIR%%/afm/ptmr.afm %%DATADIR%%/afm/pzcmi.afm %%DATADIR%%/afm/pzdr.afm %%I18N%%%%DATADIR%%/afm/colle10.afm %%I18N%%%%DATADIR%%/afm/colle8.afm %%I18N%%%%DATADIR%%/afm/colle9.afm %%I18N%%%%DATADIR%%/afm/crr35__i.afm %%I18N%%%%DATADIR%%/afm/crr36__i.afm %%I18N%%%%DATADIR%%/afm/crr55__i.afm %%I18N%%%%DATADIR%%/afm/crr56__i.afm %%I18N%%%%DATADIR%%/afm/textb18.afm %%I18N%%%%DATADIR%%/afm/textb19.afm %%I18N%%%%DATADIR%%/afm/textb20.afm %%DATADIR%%/encoding/ascii.edf %%DATADIR%%/encoding/encoding.map %%DATADIR%%/encoding/euc-jp.edf %%DATADIR%%/encoding/hp.edf %%DATADIR%%/encoding/ibm-cp437.edf %%DATADIR%%/encoding/ibm-cp850.edf %%DATADIR%%/encoding/iso1.edf %%DATADIR%%/encoding/iso10.edf %%DATADIR%%/encoding/iso13.edf %%DATADIR%%/encoding/iso15.edf %%DATADIR%%/encoding/iso2.edf %%DATADIR%%/encoding/iso3.edf %%DATADIR%%/encoding/iso4.edf %%DATADIR%%/encoding/iso5.edf %%DATADIR%%/encoding/iso7.edf %%DATADIR%%/encoding/iso9.edf %%DATADIR%%/encoding/koi8.edf %%DATADIR%%/encoding/mac.edf %%DATADIR%%/encoding/ms-cp1250.edf %%DATADIR%%/encoding/ms-cp1251.edf %%DATADIR%%/fonts/pcfont.pfa %%I18N%%%%DATADIR%%/fonts/colle10.pfb %%I18N%%%%DATADIR%%/fonts/colle8.pfb %%I18N%%%%DATADIR%%/fonts/colle9.pfb %%I18N%%%%DATADIR%%/fonts/crr35__i.pfb %%I18N%%%%DATADIR%%/fonts/crr36__i.pfb %%I18N%%%%DATADIR%%/fonts/crr55__i.pfb %%I18N%%%%DATADIR%%/fonts/crr56__i.pfb %%I18N%%%%DATADIR%%/fonts/textb18.pfb %%I18N%%%%DATADIR%%/fonts/textb19.pfb %%I18N%%%%DATADIR%%/fonts/textb20.pfb %%DATADIR%%/ogonkify/README %%DATADIR%%/ogonkify/adobe.enc %%DATADIR%%/ogonkify/afm/pcrb-o.afm %%DATADIR%%/ogonkify/afm/pcrbo-o.afm %%DATADIR%%/ogonkify/afm/pcrr-o.afm %%DATADIR%%/ogonkify/afm/pcrro-o.afm %%DATADIR%%/ogonkify/afm/phvb-o.afm %%DATADIR%%/ogonkify/afm/phvbo-o.afm %%DATADIR%%/ogonkify/afm/phvr-o.afm %%DATADIR%%/ogonkify/afm/phvro-o.afm %%DATADIR%%/ogonkify/afm/ptmb-o.afm %%DATADIR%%/ogonkify/afm/ptmbi-o.afm %%DATADIR%%/ogonkify/afm/ptmr-o.afm %%DATADIR%%/ogonkify/afm/ptmri-o.afm %%DATADIR%%/ogonkify/allchars.ps %%DATADIR%%/ogonkify/ascii.enc %%DATADIR%%/ogonkify/compose.ps %%DATADIR%%/ogonkify/cp1250.enc %%DATADIR%%/ogonkify/fonts/pcrb-o.pfa %%DATADIR%%/ogonkify/fonts/pcrbo-o.pfa %%DATADIR%%/ogonkify/fonts/pcrr-o.pfa %%DATADIR%%/ogonkify/fonts/pcrro-o.pfa %%DATADIR%%/ogonkify/fonts/phvb-o.pfa %%DATADIR%%/ogonkify/fonts/phvbo-o.pfa %%DATADIR%%/ogonkify/fonts/phvr-o.pfa %%DATADIR%%/ogonkify/fonts/phvro-o.pfa %%DATADIR%%/ogonkify/fonts/ptmb-o.pfa %%DATADIR%%/ogonkify/fonts/ptmbi-o.pfa %%DATADIR%%/ogonkify/fonts/ptmr-o.pfa %%DATADIR%%/ogonkify/fonts/ptmri-o.pfa %%DATADIR%%/ogonkify/helper.ps %%DATADIR%%/ogonkify/hp.enc %%DATADIR%%/ogonkify/ibmpc.enc %%DATADIR%%/ogonkify/latin1.enc %%DATADIR%%/ogonkify/latin2.enc %%DATADIR%%/ogonkify/latin3.enc %%DATADIR%%/ogonkify/latin4.enc %%DATADIR%%/ogonkify/latin5.enc %%DATADIR%%/ogonkify/latin6.enc %%DATADIR%%/ogonkify/latin7.enc %%DATADIR%%/ogonkify/latin9.enc %%DATADIR%%/ogonkify/mac.enc %%DATADIR%%/ogonkify/ogonki.enc %%DATADIR%%/ogonkify/pcrb-o.ps %%DATADIR%%/ogonkify/pcrbo-o.ps %%DATADIR%%/ogonkify/pcrr-o.ps %%DATADIR%%/ogonkify/pcrro-o.ps %%DATADIR%%/ogonkify/phvb-o.ps %%DATADIR%%/ogonkify/phvbo-o.ps %%DATADIR%%/ogonkify/phvr-o.ps %%DATADIR%%/ogonkify/phvro-o.ps %%DATADIR%%/ogonkify/printenc.ps %%DATADIR%%/ogonkify/ptmb-o.ps %%DATADIR%%/ogonkify/ptmbi-o.ps %%DATADIR%%/ogonkify/ptmr-o.ps %%DATADIR%%/ogonkify/ptmri-o.ps %%DATADIR%%/ppd/README %%DATADIR%%/ppd/level1.ppd %%DATADIR%%/ppd/level2.ppd %%DATADIR%%/ps/a2ps.hdr %%DATADIR%%/ps/base.ps %%DATADIR%%/ps/bold.pro %%DATADIR%%/ps/bw.pro %%DATADIR%%/ps/color.hdr %%DATADIR%%/ps/color.pro %%DATADIR%%/ps/diff.pro %%DATADIR%%/ps/diffcolor.pro %%DATADIR%%/ps/ehandler.ps %%DATADIR%%/ps/fixed.pro %%DATADIR%%/ps/gray.pro %%DATADIR%%/ps/gray2.pro %%DATADIR%%/ps/matrix.pro %%DATADIR%%/ps/ul.pro %%DATADIR%%/sheets/68000.ssh %%DATADIR%%/sheets/a2psrc.ssh %%DATADIR%%/sheets/ada.ssh %%DATADIR%%/sheets/asn1.ssh %%DATADIR%%/sheets/autoconf.ssh %%DATADIR%%/sheets/awk.ssh %%DATADIR%%/sheets/b.ssh %%DATADIR%%/sheets/bc.ssh %%DATADIR%%/sheets/c.ssh %%DATADIR%%/sheets/caml.ssh %%DATADIR%%/sheets/card.ssh %%DATADIR%%/sheets/chlog.ssh %%DATADIR%%/sheets/cidl.ssh %%DATADIR%%/sheets/claire.ssh %%DATADIR%%/sheets/clisp.ssh %%DATADIR%%/sheets/coqv.ssh %%DATADIR%%/sheets/cpp.ssh %%DATADIR%%/sheets/csh.ssh %%DATADIR%%/sheets/csharp.ssh %%DATADIR%%/sheets/cxx.ssh %%DATADIR%%/sheets/dc_shell.ssh %%DATADIR%%/sheets/eiffel.ssh %%DATADIR%%/sheets/elisp.ssh %%DATADIR%%/sheets/eps.ssh %%DATADIR%%/sheets/for-fixed.ssh %%DATADIR%%/sheets/for-free.ssh %%DATADIR%%/sheets/for77-fixed.ssh %%DATADIR%%/sheets/for77-free.ssh %%DATADIR%%/sheets/for77kwds.ssh %%DATADIR%%/sheets/for90-fixed.ssh %%DATADIR%%/sheets/for90-free.ssh %%DATADIR%%/sheets/for90kwds.ssh %%DATADIR%%/sheets/fortran.ssh %%DATADIR%%/sheets/gmake.ssh %%DATADIR%%/sheets/gnuc.ssh %%DATADIR%%/sheets/haskell.ssh %%DATADIR%%/sheets/html.ssh %%DATADIR%%/sheets/idl.ssh %%DATADIR%%/sheets/initora.ssh %%DATADIR%%/sheets/is5rul.ssh %%DATADIR%%/sheets/java.ssh %%DATADIR%%/sheets/js.ssh %%DATADIR%%/sheets/lace.ssh %%DATADIR%%/sheets/lex.ssh %%DATADIR%%/sheets/lout.ssh %%DATADIR%%/sheets/mail.ssh %%DATADIR%%/sheets/make.ssh %%DATADIR%%/sheets/maple.ssh %%DATADIR%%/sheets/matlab.ssh %%DATADIR%%/sheets/matlab4.ssh %%DATADIR%%/sheets/mib.ssh %%DATADIR%%/sheets/mly.ssh %%DATADIR%%/sheets/modula2.ssh %%DATADIR%%/sheets/modula3.ssh %%DATADIR%%/sheets/nasm.ssh %%DATADIR%%/sheets/o2c.ssh %%DATADIR%%/sheets/oberon.ssh %%DATADIR%%/sheets/objc.ssh %%DATADIR%%/sheets/ocaml.ssh %%DATADIR%%/sheets/octave.ssh %%DATADIR%%/sheets/oracle.ssh %%DATADIR%%/sheets/pascal.ssh %%DATADIR%%/sheets/perl.ssh %%DATADIR%%/sheets/php.ssh %%DATADIR%%/sheets/pic16f84.ssh %%DATADIR%%/sheets/plsql.ssh %%DATADIR%%/sheets/pov.ssh %%DATADIR%%/sheets/ppd.ssh %%DATADIR%%/sheets/pre.ssh %%DATADIR%%/sheets/pretex.ssh %%DATADIR%%/sheets/prolog.ssh %%DATADIR%%/sheets/promela.ssh %%DATADIR%%/sheets/ps.ssh %%DATADIR%%/sheets/python.ssh %%DATADIR%%/sheets/rd.ssh %%DATADIR%%/sheets/rexx.ssh %%DATADIR%%/sheets/ruby.ssh %%DATADIR%%/sheets/s.ssh %%DATADIR%%/sheets/sather.ssh %%DATADIR%%/sheets/scheme.ssh %%DATADIR%%/sheets/sdl88.ssh %%DATADIR%%/sheets/sed.ssh %%DATADIR%%/sheets/sh.ssh %%DATADIR%%/sheets/sheets.map %%DATADIR%%/sheets/shell.ssh %%DATADIR%%/sheets/small.ssh %%DATADIR%%/sheets/sml.ssh %%DATADIR%%/sheets/specc.ssh %%DATADIR%%/sheets/sql.ssh %%DATADIR%%/sheets/sql92.ssh %%DATADIR%%/sheets/ssh.ssh %%DATADIR%%/sheets/st.ssh %%DATADIR%%/sheets/stratego.ssh %%DATADIR%%/sheets/symbols.ssh %%DATADIR%%/sheets/tcl.ssh %%DATADIR%%/sheets/tclx.ssh %%DATADIR%%/sheets/tcsh.ssh %%DATADIR%%/sheets/tex.ssh %%DATADIR%%/sheets/texinfo.ssh %%DATADIR%%/sheets/texscript.ssh %%DATADIR%%/sheets/tiger.ssh %%DATADIR%%/sheets/tk.ssh %%DATADIR%%/sheets/udiff.ssh %%DATADIR%%/sheets/unity.ssh %%DATADIR%%/sheets/vba.ssh %%DATADIR%%/sheets/verilog.ssh %%DATADIR%%/sheets/vhdl.ssh %%DATADIR%%/sheets/vrml.ssh %%DATADIR%%/sheets/vtcl.ssh %%DATADIR%%/sheets/wdiff.ssh %%DATADIR%%/sheets/xs.ssh %%DATADIR%%/sheets/yacc.ssh %%DATADIR%%/sheets/zsh.ssh %%NLS%%share/locale/af/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/be/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/be/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/bg/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/ca/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/ca/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/cs/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/cs/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/da/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/da/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/de/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/de/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/el/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/el/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/eo/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/eo/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/es/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/es/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/et/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/et/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/eu/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/fi/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/fi/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/fr/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/fr/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/ga/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/gl/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/gl/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/hr/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/hu/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/hu/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/id/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/it/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/it/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/ja/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/ja/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/ka/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/ko/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/ko/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/ms/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/ms/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/nb/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/nb/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/nl/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/nl/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/pl/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/pl/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/pt/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/pt/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/ro/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/ro/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/ru/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/ru/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/rw/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/sk/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/sl/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/sl/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/sr/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/sr/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/sv/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/sv/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/th/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/tr/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/tr/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/uk/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/uk/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/vi/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/vi/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/a2ps-gnulib.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/a2ps.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/a2ps-gnulib.mo share/man/man1/a2ps.1.gz share/man/man1/a2ps-lpr-wrapper.1.gz share/man/man1/ogonkify.1.gz share/man/man1/card.1.gz share/man/man1/lp2.1.gz share/man/man1/fixps.1.gz share/man/man1/pdiff.1.gz %%EMACS%%%%EMACS_SITE_LISPDIR%%/a2ps-print.el -%%EMACS%%%%EMACS_SITE_LISPDIR%%/a2ps-print.elc %%EMACS%%%%EMACS_SITE_LISPDIR%%/a2ps.el -%%EMACS%%%%EMACS_SITE_LISPDIR%%/a2ps.elc %%EMACS%%lib/xemacs/site-lisp/a2ps-print.el %%EMACS%%lib/xemacs/site-lisp/a2ps.el diff --git a/print/auctex/Makefile b/print/auctex/Makefile index e91db3e86bbe..d5e5421193cf 100644 --- a/print/auctex/Makefile +++ b/print/auctex/Makefile @@ -1,35 +1,40 @@ PORTNAME= auctex DISTVERSION= 13.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= print elisp MASTER_SITES= GNU -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= hrs@FreeBSD.org COMMENT= Integrated environment for writing LaTeX using GNU Emacs WWW= https://www.gnu.org/software/auctex/ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -USES= emacs ghostscript gmake tex +USES= emacs:build ghostscript gmake tex USE_TEX= latex texhash GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-lispdir=${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} \ - --with-auto-dir=${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/auctex/auto \ +CONFIGURE_ARGS= --with-lispdir=${PREFIX}/${EMACS_SITE_LISPDIR} \ + --with-auto-dir=${PREFIX}/${EMACS_SITE_LISPDIR}/auctex/auto \ --with-texmf-dir=${PREFIX}/${TEXMFDIR} +CONFLICTS_INSTALL= auctex-emacs_* + NO_ARCH= yes SUB_FILES= pkg-message INFO= auctex preview-latex PORTDOCS= tex-ref.pdf OPTIONS_DEFINE= DOCS DOCS_CONFIGURE_ON= --docdir=${DOCSDIR} DOCS_CONFIGURE_OFF= WITHOUT_AUCTEX_DOCSDIR=yes TEXHASHDIRS= ${TEXMFDIR} +post-install: + @${FIND} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/auctex \ + -name "*.elc" -delete + .include diff --git a/print/auctex/pkg-plist b/print/auctex/pkg-plist index 95f311b8ec1f..0f07272b96b4 100644 --- a/print/auctex/pkg-plist +++ b/print/auctex/pkg-plist @@ -1,707 +1,382 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/auctex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/auto/.nosearch -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/bib-cite.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/bib-cite.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context-en.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context-en.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context-nl.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context-nl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/font-latex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/font-latex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/amstex.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/bibtex.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/dropdown.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/dvipdf.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/dvips.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/error.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/exec.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execbibtex.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execdvips.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execerror.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execpdftex.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/exectex.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execviewdvi.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execviewpdf.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execviewps.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/gv.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/jumpdvi.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/ltx-symb-turn-off.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/ltx-symb-turn-on.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/pdftex.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prverr16.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prverr20.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prverr24.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex-cap-up.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex12.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex16.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex20.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex24.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk12.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk14.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk16.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk20.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk24.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/pspdf.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/sep.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/spell.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/tex.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/view.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/viewdvi.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/viewpdf.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/viewps.xpm -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/latex-flymake.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/latex-flymake.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/latex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/latex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/multi-prompt.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/multi-prompt.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/plain-tex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/plain-tex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/preview.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/preview.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/.nosearch -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/Alegreya.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/Alegreya.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/AlegreyaSans.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/AlegreyaSans.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/AnonymousPro.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/AnonymousPro.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/CJK.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/CJK.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/CJKutf8.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/CJKutf8.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/FiraMono.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/FiraMono.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/FiraSans.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/FiraSans.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/MinionPro.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/MinionPro.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/MyriadPro.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/MyriadPro.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/XCharter.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/XCharter.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/acro.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/acro.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/acronym.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/acronym.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/afterpage.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/afterpage.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/algorithm.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/algorithm.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/algpseudocode.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/algpseudocode.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/algpseudocodex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/algpseudocodex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/alltt.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/alltt.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/alphanum.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/alphanum.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsaddr.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsaddr.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsart.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsart.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsbook.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsbook.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsbsy.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsbsy.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsfonts.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsfonts.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsmath.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsmath.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsopn.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsopn.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amssymb.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amssymb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amstex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amstex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amstext.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amstext.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsthm.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsthm.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/appendix.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/appendix.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/arabxetex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/arabxetex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/array.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/array.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/article.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/article.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/attachfile.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/attachfile.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/australian.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/australian.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/austrian.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/austrian.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/babel.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/babel.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/backref.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/backref.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/baskervaldx.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/baskervaldx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/beamer.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/beamer.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/beamerarticle.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/beamerarticle.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/beamerswitch.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/beamerswitch.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/biblatex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/biblatex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bicaption.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bicaption.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bidi.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bidi.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bidibeamer.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bidibeamer.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bigdelim.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bigdelim.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bigstrut.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bigstrut.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bm.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bm.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/book.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/book.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/booktabs.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/booktabs.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/brazil.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/brazil.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/brazilian.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/brazilian.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/breqn.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/breqn.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bulgarian.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bulgarian.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/canadian.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/canadian.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/cancel.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/cancel.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/captcont.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/captcont.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/caption.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/caption.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/catchfilebetweentags.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/catchfilebetweentags.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/changebar.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/changebar.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/changelog.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/changelog.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/changes.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/changes.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/cleveref.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/cleveref.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/color.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/color.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/colortbl.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/colortbl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/commath.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/commath.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/comment.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/comment.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/csquotes.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/csquotes.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/currvita.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/currvita.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/cuted.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/cuted.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/czech.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/czech.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/danish.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/danish.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dashundergaps.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dashundergaps.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dcolumn.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dcolumn.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dinbrief.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dinbrief.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dk-bib.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dk-bib.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dk.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dk.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/doc.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/doc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dutch.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dutch.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/emp.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/emp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/empheq.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/empheq.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/english.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/english.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/enumitem.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/enumitem.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/environ.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/environ.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/epigraph.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/epigraph.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/epsf.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/epsf.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/erewhon.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/erewhon.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/eso-pic.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/eso-pic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/etoolbox.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/etoolbox.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/everysel.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/everysel.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/exam.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/exam.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/exercise.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/exercise.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/expl3.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/expl3.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/extramarks.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/extramarks.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyhdr.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyhdr.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancynum.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancynum.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyref.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyref.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyvrb.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyvrb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fbb.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fbb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fbox.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fbox.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/filecontents.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/filecontents.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/flashcards.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/flashcards.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/floatpag.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/floatpag.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/floatrow.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/floatrow.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/flushend.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/flushend.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/foils.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/foils.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fontaxes.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fontaxes.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fontenc.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fontenc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fontspec.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fontspec.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/footmisc.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/footmisc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/footnotehyper.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/footnotehyper.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/framed.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/framed.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/francais.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/francais.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/french.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/french.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/frenchb.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/frenchb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fvextra.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fvextra.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/geometry.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/geometry.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/german.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/german.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/gloss-italian.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/gloss-italian.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/graphics.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/graphics.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/graphicx.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/graphicx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/harvard.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/harvard.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/hologo.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/hologo.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/hyperref.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/hyperref.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/icelandic.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/icelandic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifetex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifetex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifluatex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifluatex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifpdf.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifpdf.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/iftex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/iftex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifthen.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifthen.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifvtex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifvtex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifxetex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ifxetex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/imakeidx.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/imakeidx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/index.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/index.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/inputenc.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/inputenc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/italian.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/italian.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-article.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-article.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-book.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-book.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-report.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-report.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jarticle.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jarticle.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jbook.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jbook.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jreport.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jreport.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsarticle.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsarticle.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsbook.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsbook.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsreport.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsreport.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jura.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jura.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jurabib.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jurabib.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kantlipsum.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kantlipsum.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/keyval.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/keyval.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kpfonts.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kpfonts.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kvoptions.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kvoptions.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kvsetkeys.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kvsetkeys.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/l3doc.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/l3doc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/letter.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/letter.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lettrine.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lettrine.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lipsum.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lipsum.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/listings.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/listings.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/longtable.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/longtable.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lscape.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lscape.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltablex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltablex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltcaption.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltcaption.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltugboat.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltugboat.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltx-base.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltx-base.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltxdoc.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltxdoc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltxguide.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltxguide.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltxtable.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltxtable.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/luacode.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/luacode.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/luatextra.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/luatextra.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/makeidx.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/makeidx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/marginnote.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/marginnote.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mathtools.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mathtools.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mdframed.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mdframed.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mdsymbol.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mdsymbol.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mdwlist.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mdwlist.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/memoir.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/memoir.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/menukeys.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/menukeys.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/metalogo.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/metalogo.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mflogo.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mflogo.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/microtype.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/microtype.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/midfloat.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/midfloat.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/minted.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/minted.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mn2e.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mn2e.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mnras.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mnras.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/moodle.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/moodle.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multibib.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multibib.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multicol.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multicol.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multido.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multido.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multind.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multind.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multirow.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multirow.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multitoc.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multitoc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nameref.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nameref.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/natbib.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/natbib.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/naustrian.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/naustrian.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newfloat.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newfloat.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newpxmath.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newpxmath.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newpxtext.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newpxtext.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newtxmath.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newtxmath.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newtxsf.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newtxsf.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newtxtext.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newtxtext.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newtxttt.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newtxttt.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newzealand.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/newzealand.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ngerman.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ngerman.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nicefrac.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nicefrac.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nomencl.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nomencl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ntheorem.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ntheorem.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ocg-p.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ocg-p.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ocgx.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ocgx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/overpic.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/overpic.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/paracol.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/paracol.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/paralist.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/paralist.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/parskip.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/parskip.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pdflscape.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pdflscape.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pdfpages.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pdfpages.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pdfsync.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pdfsync.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/physics.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/physics.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/placeins.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/placeins.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plext.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plext.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plfonts.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plfonts.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plhb.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plhb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polish.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polish.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polski.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polski.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polyglossia.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polyglossia.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/portuges.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/portuges.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/portuguese.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/portuguese.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/preview.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/preview.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/proc.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/proc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/prosper.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/prosper.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/psfig.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/psfig.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-grad.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-grad.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-node.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-node.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-plot.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-plot.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-slpe.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-slpe.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pstricks.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pstricks.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pythontex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pythontex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ragged2e.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ragged2e.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/refcount.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/refcount.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/relsize.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/relsize.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/report.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/report.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/revtex4-2.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/revtex4-2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/rotating.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/rotating.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ruby.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ruby.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scholax.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scholax.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrartcl.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrartcl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrbase.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrbase.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrbook.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrbook.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrlttr2.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrlttr2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrpage2.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrpage2.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrreprt.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrreprt.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/setspace.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/setspace.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/shortvrb.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/shortvrb.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/sidecap.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/sidecap.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/simpleicons.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/simpleicons.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/siunitx.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/siunitx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/slides.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/slides.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/slovak.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/slovak.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/soul.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/soul.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/sourcecodepro.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/sourcecodepro.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/splitidx.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/splitidx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/stabular.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/stabular.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/stfloats.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/stfloats.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/subcaption.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/subcaption.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/subfigure.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/subfigure.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/subfiles.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/subfiles.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/swedish.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/swedish.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tabularx.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tabularx.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tabulary.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tabulary.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tarticle.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tarticle.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tbook.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tbook.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tcolorbox.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tcolorbox.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tcolorboxlib-raster.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tcolorboxlib-raster.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tcolorboxlib-theorems.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tcolorboxlib-theorems.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tex-live.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tex-live.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/textcomp.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/textcomp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/textpos.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/textpos.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/theorem.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/theorem.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/thm-restate.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/thm-restate.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/thmtools.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/thmtools.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tikz.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tikz.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/titleps.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/titleps.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/titlesec.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/titlesec.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/titletoc.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/titletoc.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/transparent.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/transparent.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/treport.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/treport.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/truncate.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/truncate.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ulem.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ulem.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/unicode-math.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/unicode-math.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/unicodefonttable.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/unicodefonttable.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/units.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/units.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/url.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/url.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/varioref.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/varioref.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/verbatim.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/verbatim.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/virtex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/virtex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/vwcol.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/vwcol.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/wasysym.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/wasysym.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/wrapfig.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/wrapfig.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xcolor.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xcolor.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xkcdcolors.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xkcdcolors.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xltabular.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xltabular.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xparse.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xparse.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xr-hyper.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xr-hyper.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xr.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xr.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xspace.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xspace.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/zlmtt.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/zlmtt.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-bar.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-bar.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-fold.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-fold.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-font.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-font.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-info.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-info.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-ispell.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-ispell.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-jp.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-jp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-mik.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-mik.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-style.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-style.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/texmathp.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/texmathp.elc -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/toolbar-x.el -%%EMACS_VERSION_SITE_LISPDIR%%/auctex/toolbar-x.elc -%%EMACS_VERSION_SITE_LISPDIR%%/preview-latex.el -%%EMACS_VERSION_SITE_LISPDIR%%/tex-site.el +%%EMACS_SITE_LISPDIR%%/auctex.el +%%EMACS_SITE_LISPDIR%%/auctex/auto/.nosearch +%%EMACS_SITE_LISPDIR%%/auctex/bib-cite.el +%%EMACS_SITE_LISPDIR%%/auctex/context-en.el +%%EMACS_SITE_LISPDIR%%/auctex/context-nl.el +%%EMACS_SITE_LISPDIR%%/auctex/context.el +%%EMACS_SITE_LISPDIR%%/auctex/font-latex.el +%%EMACS_SITE_LISPDIR%%/auctex/images/amstex.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/bibtex.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/dropdown.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/dvipdf.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/dvips.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/error.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/exec.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/execbibtex.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/execdvips.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/execerror.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/execpdftex.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/exectex.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/execviewdvi.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/execviewpdf.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/execviewps.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/gv.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/jumpdvi.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/ltx-symb-turn-off.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/ltx-symb-turn-on.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/pdftex.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prverr16.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prverr20.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prverr24.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvtex-cap-up.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvtex12.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvtex16.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvtex20.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvtex24.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvwrk12.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvwrk14.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvwrk16.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvwrk20.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/prvwrk24.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/pspdf.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/sep.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/spell.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/tex.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/view.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/viewdvi.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/viewpdf.xpm +%%EMACS_SITE_LISPDIR%%/auctex/images/viewps.xpm +%%EMACS_SITE_LISPDIR%%/auctex/latex-flymake.el +%%EMACS_SITE_LISPDIR%%/auctex/latex.el +%%EMACS_SITE_LISPDIR%%/auctex/multi-prompt.el +%%EMACS_SITE_LISPDIR%%/auctex/plain-tex.el +%%EMACS_SITE_LISPDIR%%/auctex/preview.el +%%EMACS_SITE_LISPDIR%%/auctex/style/.nosearch +%%EMACS_SITE_LISPDIR%%/auctex/style/Alegreya.el +%%EMACS_SITE_LISPDIR%%/auctex/style/AlegreyaSans.el +%%EMACS_SITE_LISPDIR%%/auctex/style/AnonymousPro.el +%%EMACS_SITE_LISPDIR%%/auctex/style/CJK.el +%%EMACS_SITE_LISPDIR%%/auctex/style/CJKutf8.el +%%EMACS_SITE_LISPDIR%%/auctex/style/FiraMono.el +%%EMACS_SITE_LISPDIR%%/auctex/style/FiraSans.el +%%EMACS_SITE_LISPDIR%%/auctex/style/MinionPro.el +%%EMACS_SITE_LISPDIR%%/auctex/style/MyriadPro.el +%%EMACS_SITE_LISPDIR%%/auctex/style/XCharter.el +%%EMACS_SITE_LISPDIR%%/auctex/style/acro.el +%%EMACS_SITE_LISPDIR%%/auctex/style/acronym.el +%%EMACS_SITE_LISPDIR%%/auctex/style/afterpage.el +%%EMACS_SITE_LISPDIR%%/auctex/style/algorithm.el +%%EMACS_SITE_LISPDIR%%/auctex/style/algpseudocode.el +%%EMACS_SITE_LISPDIR%%/auctex/style/algpseudocodex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/alltt.el +%%EMACS_SITE_LISPDIR%%/auctex/style/alphanum.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amsaddr.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amsart.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amsbook.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amsbsy.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amsfonts.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amsmath.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amsopn.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amssymb.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amstex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amstext.el +%%EMACS_SITE_LISPDIR%%/auctex/style/amsthm.el +%%EMACS_SITE_LISPDIR%%/auctex/style/appendix.el +%%EMACS_SITE_LISPDIR%%/auctex/style/arabxetex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/array.el +%%EMACS_SITE_LISPDIR%%/auctex/style/article.el +%%EMACS_SITE_LISPDIR%%/auctex/style/attachfile.el +%%EMACS_SITE_LISPDIR%%/auctex/style/australian.el +%%EMACS_SITE_LISPDIR%%/auctex/style/austrian.el +%%EMACS_SITE_LISPDIR%%/auctex/style/babel.el +%%EMACS_SITE_LISPDIR%%/auctex/style/backref.el +%%EMACS_SITE_LISPDIR%%/auctex/style/baskervaldx.el +%%EMACS_SITE_LISPDIR%%/auctex/style/beamer.el +%%EMACS_SITE_LISPDIR%%/auctex/style/beamerarticle.el +%%EMACS_SITE_LISPDIR%%/auctex/style/beamerswitch.el +%%EMACS_SITE_LISPDIR%%/auctex/style/biblatex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/bicaption.el +%%EMACS_SITE_LISPDIR%%/auctex/style/bidi.el +%%EMACS_SITE_LISPDIR%%/auctex/style/bidibeamer.el +%%EMACS_SITE_LISPDIR%%/auctex/style/bigdelim.el +%%EMACS_SITE_LISPDIR%%/auctex/style/bigstrut.el +%%EMACS_SITE_LISPDIR%%/auctex/style/bm.el +%%EMACS_SITE_LISPDIR%%/auctex/style/book.el +%%EMACS_SITE_LISPDIR%%/auctex/style/booktabs.el +%%EMACS_SITE_LISPDIR%%/auctex/style/brazil.el +%%EMACS_SITE_LISPDIR%%/auctex/style/brazilian.el +%%EMACS_SITE_LISPDIR%%/auctex/style/breqn.el +%%EMACS_SITE_LISPDIR%%/auctex/style/bulgarian.el +%%EMACS_SITE_LISPDIR%%/auctex/style/canadian.el +%%EMACS_SITE_LISPDIR%%/auctex/style/cancel.el +%%EMACS_SITE_LISPDIR%%/auctex/style/captcont.el +%%EMACS_SITE_LISPDIR%%/auctex/style/caption.el +%%EMACS_SITE_LISPDIR%%/auctex/style/catchfilebetweentags.el +%%EMACS_SITE_LISPDIR%%/auctex/style/changebar.el +%%EMACS_SITE_LISPDIR%%/auctex/style/changelog.el +%%EMACS_SITE_LISPDIR%%/auctex/style/changes.el +%%EMACS_SITE_LISPDIR%%/auctex/style/cleveref.el +%%EMACS_SITE_LISPDIR%%/auctex/style/color.el +%%EMACS_SITE_LISPDIR%%/auctex/style/colortbl.el +%%EMACS_SITE_LISPDIR%%/auctex/style/commath.el +%%EMACS_SITE_LISPDIR%%/auctex/style/comment.el +%%EMACS_SITE_LISPDIR%%/auctex/style/csquotes.el +%%EMACS_SITE_LISPDIR%%/auctex/style/currvita.el +%%EMACS_SITE_LISPDIR%%/auctex/style/cuted.el +%%EMACS_SITE_LISPDIR%%/auctex/style/czech.el +%%EMACS_SITE_LISPDIR%%/auctex/style/danish.el +%%EMACS_SITE_LISPDIR%%/auctex/style/dashundergaps.el +%%EMACS_SITE_LISPDIR%%/auctex/style/dcolumn.el +%%EMACS_SITE_LISPDIR%%/auctex/style/dinbrief.el +%%EMACS_SITE_LISPDIR%%/auctex/style/dk-bib.el +%%EMACS_SITE_LISPDIR%%/auctex/style/dk.el +%%EMACS_SITE_LISPDIR%%/auctex/style/doc.el +%%EMACS_SITE_LISPDIR%%/auctex/style/dutch.el +%%EMACS_SITE_LISPDIR%%/auctex/style/emp.el +%%EMACS_SITE_LISPDIR%%/auctex/style/empheq.el +%%EMACS_SITE_LISPDIR%%/auctex/style/english.el +%%EMACS_SITE_LISPDIR%%/auctex/style/enumitem.el +%%EMACS_SITE_LISPDIR%%/auctex/style/environ.el +%%EMACS_SITE_LISPDIR%%/auctex/style/epigraph.el +%%EMACS_SITE_LISPDIR%%/auctex/style/epsf.el +%%EMACS_SITE_LISPDIR%%/auctex/style/erewhon.el +%%EMACS_SITE_LISPDIR%%/auctex/style/eso-pic.el +%%EMACS_SITE_LISPDIR%%/auctex/style/etoolbox.el +%%EMACS_SITE_LISPDIR%%/auctex/style/everysel.el +%%EMACS_SITE_LISPDIR%%/auctex/style/exam.el +%%EMACS_SITE_LISPDIR%%/auctex/style/exercise.el +%%EMACS_SITE_LISPDIR%%/auctex/style/expl3.el +%%EMACS_SITE_LISPDIR%%/auctex/style/extramarks.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fancyhdr.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fancynum.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fancyref.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fancyvrb.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fbb.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fbox.el +%%EMACS_SITE_LISPDIR%%/auctex/style/filecontents.el +%%EMACS_SITE_LISPDIR%%/auctex/style/flashcards.el +%%EMACS_SITE_LISPDIR%%/auctex/style/floatpag.el +%%EMACS_SITE_LISPDIR%%/auctex/style/floatrow.el +%%EMACS_SITE_LISPDIR%%/auctex/style/flushend.el +%%EMACS_SITE_LISPDIR%%/auctex/style/foils.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fontaxes.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fontenc.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fontspec.el +%%EMACS_SITE_LISPDIR%%/auctex/style/footmisc.el +%%EMACS_SITE_LISPDIR%%/auctex/style/footnotehyper.el +%%EMACS_SITE_LISPDIR%%/auctex/style/framed.el +%%EMACS_SITE_LISPDIR%%/auctex/style/francais.el +%%EMACS_SITE_LISPDIR%%/auctex/style/french.el +%%EMACS_SITE_LISPDIR%%/auctex/style/frenchb.el +%%EMACS_SITE_LISPDIR%%/auctex/style/fvextra.el +%%EMACS_SITE_LISPDIR%%/auctex/style/geometry.el +%%EMACS_SITE_LISPDIR%%/auctex/style/german.el +%%EMACS_SITE_LISPDIR%%/auctex/style/gloss-italian.el +%%EMACS_SITE_LISPDIR%%/auctex/style/graphics.el +%%EMACS_SITE_LISPDIR%%/auctex/style/graphicx.el +%%EMACS_SITE_LISPDIR%%/auctex/style/harvard.el +%%EMACS_SITE_LISPDIR%%/auctex/style/hologo.el +%%EMACS_SITE_LISPDIR%%/auctex/style/hyperref.el +%%EMACS_SITE_LISPDIR%%/auctex/style/icelandic.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ifetex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ifluatex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ifpdf.el +%%EMACS_SITE_LISPDIR%%/auctex/style/iftex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ifthen.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ifvtex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ifxetex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/imakeidx.el +%%EMACS_SITE_LISPDIR%%/auctex/style/index.el +%%EMACS_SITE_LISPDIR%%/auctex/style/inputenc.el +%%EMACS_SITE_LISPDIR%%/auctex/style/italian.el +%%EMACS_SITE_LISPDIR%%/auctex/style/j-article.el +%%EMACS_SITE_LISPDIR%%/auctex/style/j-book.el +%%EMACS_SITE_LISPDIR%%/auctex/style/j-report.el +%%EMACS_SITE_LISPDIR%%/auctex/style/jarticle.el +%%EMACS_SITE_LISPDIR%%/auctex/style/jbook.el +%%EMACS_SITE_LISPDIR%%/auctex/style/jreport.el +%%EMACS_SITE_LISPDIR%%/auctex/style/jsarticle.el +%%EMACS_SITE_LISPDIR%%/auctex/style/jsbook.el +%%EMACS_SITE_LISPDIR%%/auctex/style/jsreport.el +%%EMACS_SITE_LISPDIR%%/auctex/style/jura.el +%%EMACS_SITE_LISPDIR%%/auctex/style/jurabib.el +%%EMACS_SITE_LISPDIR%%/auctex/style/kantlipsum.el +%%EMACS_SITE_LISPDIR%%/auctex/style/keyval.el +%%EMACS_SITE_LISPDIR%%/auctex/style/kpfonts.el +%%EMACS_SITE_LISPDIR%%/auctex/style/kvoptions.el +%%EMACS_SITE_LISPDIR%%/auctex/style/kvsetkeys.el +%%EMACS_SITE_LISPDIR%%/auctex/style/l3doc.el +%%EMACS_SITE_LISPDIR%%/auctex/style/letter.el +%%EMACS_SITE_LISPDIR%%/auctex/style/lettrine.el +%%EMACS_SITE_LISPDIR%%/auctex/style/lipsum.el +%%EMACS_SITE_LISPDIR%%/auctex/style/listings.el +%%EMACS_SITE_LISPDIR%%/auctex/style/longtable.el +%%EMACS_SITE_LISPDIR%%/auctex/style/lscape.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ltablex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ltcaption.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ltugboat.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ltx-base.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ltxdoc.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ltxguide.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ltxtable.el +%%EMACS_SITE_LISPDIR%%/auctex/style/luacode.el +%%EMACS_SITE_LISPDIR%%/auctex/style/luatextra.el +%%EMACS_SITE_LISPDIR%%/auctex/style/makeidx.el +%%EMACS_SITE_LISPDIR%%/auctex/style/marginnote.el +%%EMACS_SITE_LISPDIR%%/auctex/style/mathtools.el +%%EMACS_SITE_LISPDIR%%/auctex/style/mdframed.el +%%EMACS_SITE_LISPDIR%%/auctex/style/mdsymbol.el +%%EMACS_SITE_LISPDIR%%/auctex/style/mdwlist.el +%%EMACS_SITE_LISPDIR%%/auctex/style/memoir.el +%%EMACS_SITE_LISPDIR%%/auctex/style/menukeys.el +%%EMACS_SITE_LISPDIR%%/auctex/style/metalogo.el +%%EMACS_SITE_LISPDIR%%/auctex/style/mflogo.el +%%EMACS_SITE_LISPDIR%%/auctex/style/microtype.el +%%EMACS_SITE_LISPDIR%%/auctex/style/midfloat.el +%%EMACS_SITE_LISPDIR%%/auctex/style/minted.el +%%EMACS_SITE_LISPDIR%%/auctex/style/mn2e.el +%%EMACS_SITE_LISPDIR%%/auctex/style/mnras.el +%%EMACS_SITE_LISPDIR%%/auctex/style/moodle.el +%%EMACS_SITE_LISPDIR%%/auctex/style/multibib.el +%%EMACS_SITE_LISPDIR%%/auctex/style/multicol.el +%%EMACS_SITE_LISPDIR%%/auctex/style/multido.el +%%EMACS_SITE_LISPDIR%%/auctex/style/multind.el +%%EMACS_SITE_LISPDIR%%/auctex/style/multirow.el +%%EMACS_SITE_LISPDIR%%/auctex/style/multitoc.el +%%EMACS_SITE_LISPDIR%%/auctex/style/nameref.el +%%EMACS_SITE_LISPDIR%%/auctex/style/natbib.el +%%EMACS_SITE_LISPDIR%%/auctex/style/naustrian.el +%%EMACS_SITE_LISPDIR%%/auctex/style/newfloat.el +%%EMACS_SITE_LISPDIR%%/auctex/style/newpxmath.el +%%EMACS_SITE_LISPDIR%%/auctex/style/newpxtext.el +%%EMACS_SITE_LISPDIR%%/auctex/style/newtxmath.el +%%EMACS_SITE_LISPDIR%%/auctex/style/newtxsf.el +%%EMACS_SITE_LISPDIR%%/auctex/style/newtxtext.el +%%EMACS_SITE_LISPDIR%%/auctex/style/newtxttt.el +%%EMACS_SITE_LISPDIR%%/auctex/style/newzealand.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ngerman.el +%%EMACS_SITE_LISPDIR%%/auctex/style/nicefrac.el +%%EMACS_SITE_LISPDIR%%/auctex/style/nomencl.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ntheorem.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ocg-p.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ocgx.el +%%EMACS_SITE_LISPDIR%%/auctex/style/overpic.el +%%EMACS_SITE_LISPDIR%%/auctex/style/paracol.el +%%EMACS_SITE_LISPDIR%%/auctex/style/paralist.el +%%EMACS_SITE_LISPDIR%%/auctex/style/parskip.el +%%EMACS_SITE_LISPDIR%%/auctex/style/pdflscape.el +%%EMACS_SITE_LISPDIR%%/auctex/style/pdfpages.el +%%EMACS_SITE_LISPDIR%%/auctex/style/pdfsync.el +%%EMACS_SITE_LISPDIR%%/auctex/style/physics.el +%%EMACS_SITE_LISPDIR%%/auctex/style/placeins.el +%%EMACS_SITE_LISPDIR%%/auctex/style/plext.el +%%EMACS_SITE_LISPDIR%%/auctex/style/plfonts.el +%%EMACS_SITE_LISPDIR%%/auctex/style/plhb.el +%%EMACS_SITE_LISPDIR%%/auctex/style/polish.el +%%EMACS_SITE_LISPDIR%%/auctex/style/polski.el +%%EMACS_SITE_LISPDIR%%/auctex/style/polyglossia.el +%%EMACS_SITE_LISPDIR%%/auctex/style/portuges.el +%%EMACS_SITE_LISPDIR%%/auctex/style/portuguese.el +%%EMACS_SITE_LISPDIR%%/auctex/style/preview.el +%%EMACS_SITE_LISPDIR%%/auctex/style/proc.el +%%EMACS_SITE_LISPDIR%%/auctex/style/prosper.el +%%EMACS_SITE_LISPDIR%%/auctex/style/psfig.el +%%EMACS_SITE_LISPDIR%%/auctex/style/pst-grad.el +%%EMACS_SITE_LISPDIR%%/auctex/style/pst-node.el +%%EMACS_SITE_LISPDIR%%/auctex/style/pst-plot.el +%%EMACS_SITE_LISPDIR%%/auctex/style/pst-slpe.el +%%EMACS_SITE_LISPDIR%%/auctex/style/pstricks.el +%%EMACS_SITE_LISPDIR%%/auctex/style/pythontex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ragged2e.el +%%EMACS_SITE_LISPDIR%%/auctex/style/refcount.el +%%EMACS_SITE_LISPDIR%%/auctex/style/relsize.el +%%EMACS_SITE_LISPDIR%%/auctex/style/report.el +%%EMACS_SITE_LISPDIR%%/auctex/style/revtex4-2.el +%%EMACS_SITE_LISPDIR%%/auctex/style/rotating.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ruby.el +%%EMACS_SITE_LISPDIR%%/auctex/style/scholax.el +%%EMACS_SITE_LISPDIR%%/auctex/style/scrartcl.el +%%EMACS_SITE_LISPDIR%%/auctex/style/scrbase.el +%%EMACS_SITE_LISPDIR%%/auctex/style/scrbook.el +%%EMACS_SITE_LISPDIR%%/auctex/style/scrlttr2.el +%%EMACS_SITE_LISPDIR%%/auctex/style/scrpage2.el +%%EMACS_SITE_LISPDIR%%/auctex/style/scrreprt.el +%%EMACS_SITE_LISPDIR%%/auctex/style/setspace.el +%%EMACS_SITE_LISPDIR%%/auctex/style/shortvrb.el +%%EMACS_SITE_LISPDIR%%/auctex/style/sidecap.el +%%EMACS_SITE_LISPDIR%%/auctex/style/simpleicons.el +%%EMACS_SITE_LISPDIR%%/auctex/style/siunitx.el +%%EMACS_SITE_LISPDIR%%/auctex/style/slides.el +%%EMACS_SITE_LISPDIR%%/auctex/style/slovak.el +%%EMACS_SITE_LISPDIR%%/auctex/style/soul.el +%%EMACS_SITE_LISPDIR%%/auctex/style/sourcecodepro.el +%%EMACS_SITE_LISPDIR%%/auctex/style/splitidx.el +%%EMACS_SITE_LISPDIR%%/auctex/style/stabular.el +%%EMACS_SITE_LISPDIR%%/auctex/style/stfloats.el +%%EMACS_SITE_LISPDIR%%/auctex/style/subcaption.el +%%EMACS_SITE_LISPDIR%%/auctex/style/subfigure.el +%%EMACS_SITE_LISPDIR%%/auctex/style/subfiles.el +%%EMACS_SITE_LISPDIR%%/auctex/style/swedish.el +%%EMACS_SITE_LISPDIR%%/auctex/style/tabularx.el +%%EMACS_SITE_LISPDIR%%/auctex/style/tabulary.el +%%EMACS_SITE_LISPDIR%%/auctex/style/tarticle.el +%%EMACS_SITE_LISPDIR%%/auctex/style/tbook.el +%%EMACS_SITE_LISPDIR%%/auctex/style/tcolorbox.el +%%EMACS_SITE_LISPDIR%%/auctex/style/tcolorboxlib-raster.el +%%EMACS_SITE_LISPDIR%%/auctex/style/tcolorboxlib-theorems.el +%%EMACS_SITE_LISPDIR%%/auctex/style/tex-live.el +%%EMACS_SITE_LISPDIR%%/auctex/style/textcomp.el +%%EMACS_SITE_LISPDIR%%/auctex/style/textpos.el +%%EMACS_SITE_LISPDIR%%/auctex/style/theorem.el +%%EMACS_SITE_LISPDIR%%/auctex/style/thm-restate.el +%%EMACS_SITE_LISPDIR%%/auctex/style/thmtools.el +%%EMACS_SITE_LISPDIR%%/auctex/style/tikz.el +%%EMACS_SITE_LISPDIR%%/auctex/style/titleps.el +%%EMACS_SITE_LISPDIR%%/auctex/style/titlesec.el +%%EMACS_SITE_LISPDIR%%/auctex/style/titletoc.el +%%EMACS_SITE_LISPDIR%%/auctex/style/transparent.el +%%EMACS_SITE_LISPDIR%%/auctex/style/treport.el +%%EMACS_SITE_LISPDIR%%/auctex/style/truncate.el +%%EMACS_SITE_LISPDIR%%/auctex/style/ulem.el +%%EMACS_SITE_LISPDIR%%/auctex/style/unicode-math.el +%%EMACS_SITE_LISPDIR%%/auctex/style/unicodefonttable.el +%%EMACS_SITE_LISPDIR%%/auctex/style/units.el +%%EMACS_SITE_LISPDIR%%/auctex/style/url.el +%%EMACS_SITE_LISPDIR%%/auctex/style/varioref.el +%%EMACS_SITE_LISPDIR%%/auctex/style/verbatim.el +%%EMACS_SITE_LISPDIR%%/auctex/style/virtex.el +%%EMACS_SITE_LISPDIR%%/auctex/style/vwcol.el +%%EMACS_SITE_LISPDIR%%/auctex/style/wasysym.el +%%EMACS_SITE_LISPDIR%%/auctex/style/wrapfig.el +%%EMACS_SITE_LISPDIR%%/auctex/style/xcolor.el +%%EMACS_SITE_LISPDIR%%/auctex/style/xkcdcolors.el +%%EMACS_SITE_LISPDIR%%/auctex/style/xltabular.el +%%EMACS_SITE_LISPDIR%%/auctex/style/xparse.el +%%EMACS_SITE_LISPDIR%%/auctex/style/xr-hyper.el +%%EMACS_SITE_LISPDIR%%/auctex/style/xr.el +%%EMACS_SITE_LISPDIR%%/auctex/style/xspace.el +%%EMACS_SITE_LISPDIR%%/auctex/style/zlmtt.el +%%EMACS_SITE_LISPDIR%%/auctex/tex-bar.el +%%EMACS_SITE_LISPDIR%%/auctex/tex-fold.el +%%EMACS_SITE_LISPDIR%%/auctex/tex-font.el +%%EMACS_SITE_LISPDIR%%/auctex/tex-info.el +%%EMACS_SITE_LISPDIR%%/auctex/tex-ispell.el +%%EMACS_SITE_LISPDIR%%/auctex/tex-jp.el +%%EMACS_SITE_LISPDIR%%/auctex/tex-mik.el +%%EMACS_SITE_LISPDIR%%/auctex/tex-style.el +%%EMACS_SITE_LISPDIR%%/auctex/tex.el +%%EMACS_SITE_LISPDIR%%/auctex/texmathp.el +%%EMACS_SITE_LISPDIR%%/auctex/toolbar-x.el +%%EMACS_SITE_LISPDIR%%/preview-latex.el +%%EMACS_SITE_LISPDIR%%/tex-site.el %%TEXMFDIR%%/doc/latex/styles/preview.pdf %%TEXMFDIR%%/tex/latex/preview/prauctex.cfg %%TEXMFDIR%%/tex/latex/preview/prauctex.def %%TEXMFDIR%%/tex/latex/preview/prcounters.def %%TEXMFDIR%%/tex/latex/preview/preview.sty %%TEXMFDIR%%/tex/latex/preview/prfootnotes.def %%TEXMFDIR%%/tex/latex/preview/prlyx.def %%TEXMFDIR%%/tex/latex/preview/prshowbox.def %%TEXMFDIR%%/tex/latex/preview/prshowlabels.def %%TEXMFDIR%%/tex/latex/preview/prtightpage.def %%TEXMFDIR%%/tex/latex/preview/prtracingall.def diff --git a/print/hyperlatex/Makefile b/print/hyperlatex/Makefile index 7b28bf5fb968..8a763be2aee2 100644 --- a/print/hyperlatex/Makefile +++ b/print/hyperlatex/Makefile @@ -1,43 +1,44 @@ PORTNAME= Hyperlatex DISTVERSION= 2.9a -PORTREVISION= 26 +PORTREVISION= 27 CATEGORIES= print MASTER_SITES= SF/${PORTNAME:tl}/${PORTNAME:tl}/2.9a -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Produce HTML and printed documents from LaTeX source WWW= https://hyperlatex.sourceforge.net/ RUN_DEPENDS= ppmtogif:graphics/netpbm USES= emacs tex USE_TEX= latex -CONFLICTS_INSTALL= Hyperlatex Hyperlatex-emacs_* +CONFLICTS_INSTALL= Hyperlatex-emacs_* + +NO_ARCH= yes +NO_BUILD= yes + +CONFLICTS_INSTALL= Hyperlatex-emacs_* LATEX_DIR= ${PREFIX}/share/texmf/tex/latex/hyperlatex HYPERLATEX_DIR= ${PREFIX}/share/hyperlatex do-configure: @(cd ${WRKSRC} && \ ${REINPLACE_CMD} -e 's|http://www.cs.uu.nl/\\~{}otfried/img/||' hlx/siteinit.hlx && \ ${REINPLACE_CMD} -e 's|$$HOME/Hyperlatex/Hlx|${HYPERLATEX_DIR}|' bin/hyperlatex && \ ${REINPLACE_CMD} -e '1s|^#$$|#\!/usr/bin/awk|' bin/normalize-eps.awk) -do-build: - cd ${WRKSRC}/hlx; emacs -batch -q -no-site-file -l hyperlatex.el -f hyperlatex-compile - do-install: @${MKDIR} ${STAGEDIR}${HYPERLATEX_DIR} @${MKDIR} ${STAGEDIR}${LATEX_DIR} ${INSTALL_SCRIPT} ${WRKSRC}/bin/hyperlatex ${STAGEDIR}${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/bin/ps2image ${STAGEDIR}${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/bin/normalize-eps.awk \ ${STAGEDIR}${PREFIX}/bin/normalize-eps ${INSTALL_DATA} ${WRKSRC}/etc/hyperlatex.sty ${STAGEDIR}${LATEX_DIR} - cd ${WRKSRC}/hlx; for f in *.el *.elc *.hlx *.xbm *.awk ; do \ + cd ${WRKSRC}/hlx; for f in *.el *.hlx *.xbm *.awk ; do \ if [ -f $$f ]; then ${INSTALL_DATA} $$f \ ${STAGEDIR}${HYPERLATEX_DIR}; fi; done .include diff --git a/print/hyperlatex/pkg-plist b/print/hyperlatex/pkg-plist index 4248f6f84224..183b7927f029 100644 --- a/print/hyperlatex/pkg-plist +++ b/print/hyperlatex/pkg-plist @@ -1,29 +1,28 @@ bin/hyperlatex bin/normalize-eps bin/ps2image share/hyperlatex/article.hlx share/hyperlatex/babel.hlx share/hyperlatex/bluepanels.hlx share/hyperlatex/book.hlx share/hyperlatex/color.hlx share/hyperlatex/colortbl.hlx share/hyperlatex/dutch.hlx share/hyperlatex/english.hlx share/hyperlatex/fancyhdr.hlx share/hyperlatex/frames.hlx share/hyperlatex/french.hlx share/hyperlatex/german.hlx share/hyperlatex/hyperlatex.el -share/hyperlatex/hyperlatex.elc share/hyperlatex/hyperxml.hlx share/hyperlatex/italian.hlx share/hyperlatex/longtable.hlx share/hyperlatex/makeidx.hlx share/hyperlatex/portuges.hlx share/hyperlatex/pstcol.hlx share/hyperlatex/report.hlx share/hyperlatex/sequential.hlx share/hyperlatex/simplepanels.hlx share/hyperlatex/siteinit.hlx share/hyperlatex/tabularx.hlx share/texmf/tex/latex/hyperlatex/hyperlatex.sty diff --git a/print/pdf-tools/Makefile b/print/pdf-tools/Makefile index 7d0cceff1046..4032d71ceb55 100644 --- a/print/pdf-tools/Makefile +++ b/print/pdf-tools/Makefile @@ -1,43 +1,38 @@ PORTNAME= pdf-tools DISTVERSIONPREFIX= v DISTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= print elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= jrm@FreeBSD.org COMMENT= Emacs support library for PDF files WWW= https://github.com/vedang/pdf-tools LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= cask${EMACS_PKGNAMESUFFIX}>0:devel/cask@${EMACS_FLAVOR} \ - tablist${EMACS_PKGNAMESUFFIX}>=0.70.4:devel/tablist@${EMACS_FLAVOR} LIB_DEPENDS= libpng16.so:graphics/png \ libpoppler-glib.so:graphics/poppler-glib \ libpoppler.so:graphics/poppler -RUN_DEPENDS= tablist${EMACS_PKGNAMESUFFIX}>=0.70:devel/tablist@${EMACS_FLAVOR} +RUN_DEPENDS= tablist>=0.70:devel/tablist -USES= autoreconf:build emacs gettext-runtime gmake gnome magick:7,build,run +USES= autoreconf:build emacs:build gettext-runtime gmake gnome magick:7,build,run USE_GITHUB= yes GH_ACCOUNT= vedang USE_GNOME= cairo glib20 -EMACS_FLAVORS_EXCLUDE= devel_nox nox - -CONFLICTS_INSTALL= pdf-tools pdf-tools-emacs_* # bin/epdfinfo +CONFLICTS_INSTALL= pdf-tools-emacs_* do-build: cd ${WRKSRC}/server && ./autogen.sh && ./configure -q && make - ${EMACS_CMD} -q --batch -L ${WRKSRC}/lisp -f batch-byte-compile \ - ${WRKSRC}/lisp/*.el ${EMACS_CMD} -q --batch -f loaddefs-generate-batch \ ${WRKSRC}/lisp/${PORTNAME}-loaddefs.el ${WRKSRC}/lisp do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} ${INSTALL_PROGRAM} ${WRKSRC}/server/epdfinfo ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/lisp/* ${FILESDIR}/${PORTNAME}-init.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} .include diff --git a/print/pdf-tools/pkg-plist b/print/pdf-tools/pkg-plist index 5e0eded99d5e..106827d69b26 100644 --- a/print/pdf-tools/pkg-plist +++ b/print/pdf-tools/pkg-plist @@ -1,39 +1,21 @@ %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-annot.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-annot.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-cache.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-cache.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-dev.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-dev.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-history.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-history.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-info.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-info.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-isearch.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-isearch.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-links.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-links.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-loader.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-loader.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-macs.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-macs.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-misc.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-misc.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-occur.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-occur.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-outline.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-outline.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-roll.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-roll.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-sync.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-sync.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-tools-init.el %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-tools-loaddefs.el %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-tools.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-tools.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-util.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-util.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-view.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-view.elc %%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-virtual.el -%%EMACS_SITE_LISPDIR%%/pdf-tools/pdf-virtual.elc bin/epdfinfo diff --git a/print/yatex/Makefile b/print/yatex/Makefile index 058c3a2c147f..840cd12afa63 100644 --- a/print/yatex/Makefile +++ b/print/yatex/Makefile @@ -1,62 +1,61 @@ PORTNAME= yatex DISTVERSION= 1.83 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES?= print elisp MASTER_SITES= https://www.yatex.org/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= ${PORTNAME}${DISTVERSION} MAINTAINER= hrs@FreeBSD.org COMMENT= Yet Another LaTeX mode and html mode on Emacs WWW= https://www.yatex.org/ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKDIR}/LICENSE USES= dos2unix emacs EMACS_NO_DEPENDS= yes NO_ARCH= yes NO_BUILD= yes SUB_FILES= pkg-message yatex-startup.el SUB_LIST= EMACS_SITE_LISPDIR="${EMACS_SITE_LISPDIR}" INFO= yahtmle yahtmlj yatexe yatexj PORTDOCS= 00readme readme.meadow.j yatex.new yatexj.tex yatex.ref \ yahtmlj.tex htmlqa yatexadd.doc yatexgen.doc qanda \ yatexe.tex htmlqa.eng yahtmle.tex yatexref.eng qanda.eng OPTIONS_DEFINE= DOCS ELFILES=yahtml.el yatex.el yatex19.el yatex23.el yatexadd.el \ yatexenv.el yatexflt.el yatexgen.el yatexhie.el yatexhks.el \ yatexhlp.el yatexlib.el yatexm-o.el yatexmth.el yatexpkg.el \ yatexprc.el yatexsec.el post-extract: ${INSTALL_DATA} ${WRKSRC}/docs/* ${WRKSRC} ${SED} -n "/(c)1991/,/^;;; Code:$$/p" \ < ${WRKSRC}/yatex.el > ${WRKDIR}/LICENSE do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/yatex cd ${WRKSRC} && ${INSTALL_DATA} \ ${ELFILES} \ ${WRKDIR}/yatex-startup.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/yatex @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/yatex/help cd ${WRKSRC}/help && ${INSTALL_DATA} \ YATEXHLP.jp YATEXHLP.eng \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/yatex/help for F in ${INFO}; do \ ${INSTALL_DATA} ${WRKSRC}/docs/$$F \ ${STAGEDIR}${PREFIX}/${INFO_PATH}/$${F}.info; \ done post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/security/starttls/Makefile b/security/starttls/Makefile index b355d3417036..5b7d6cbbaf11 100644 --- a/security/starttls/Makefile +++ b/security/starttls/Makefile @@ -1,25 +1,31 @@ PORTNAME= starttls PORTVERSION= 0.10 -PORTREVISION= 36 +PORTREVISION= 37 CATEGORIES= security MASTER_SITES= ftp://ftp.opaopa.org/pub/elisp/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= bofh@FreeBSD.org -COMMENT= Simple wrapper program for STARTTLS on ${EMACS_PORT_NAME} +COMMENT= Simple wrapper program for STARTTLS on Emacs LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= emacs gmake ssl GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE} +MAKE_ARGS+= lispdir=${PREFIX}/${EMACS_SITE_LISPDIR} + +CONFLICTS_INSTALL= starttls-emacs_* + .include .if ${OPSYS} == FreeBSD CFLAGS+= -Wno-error=int-conversion .endif +post-install: + @${RM} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/starttls.elc + .include diff --git a/security/starttls/pkg-plist b/security/starttls/pkg-plist index 92fc22cc0beb..61ada7c07c82 100644 --- a/security/starttls/pkg-plist +++ b/security/starttls/pkg-plist @@ -1,3 +1,2 @@ bin/starttls share/emacs/site-lisp/starttls.el -share/emacs/site-lisp/starttls.elc diff --git a/sysutils/lr/Makefile b/sysutils/lr/Makefile index 8efec70d9fcd..ff5203d063a4 100644 --- a/sysutils/lr/Makefile +++ b/sysutils/lr/Makefile @@ -1,57 +1,56 @@ PORTNAME= lr DISTVERSIONPREFIX= v DISTVERSION= 2.0.1 CATEGORIES= sysutils MAINTAINER= eduardo@FreeBSD.org COMMENT= List files, recursively WWW= https://github.com/leahneukirchen/lr/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= leahneukirchen MAKE_ARGS= CFLAGS="${CFLAGS}" \ PREFIX="${PREFIX}" OPTIONS_DEFINE= CONTRIB EMACS NEOVIM VIM OPTIONS_DEFAULT= CONTRIB EMACS NEOVIM VIM OPTIONS_SUB= yes CONTRIB_DESC= Contrib scripts EMACS_DESC= Emacs plugin NEOVIM_DESC= Neovim plugin VIM_DESC= Vim plugin CONTRIB_RUN_DEPENDS= xe:sysutils/xe EMACS_USES= emacs -EMACS_VARS= EMACS_NO_DEPENDS=yes post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lr post-install-CONTRIB-on: ${INSTALL_SCRIPT} ${WRKSRC}/contrib/lrls \ ${STAGEDIR}${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/contrib/lrocate \ ${STAGEDIR}${PREFIX}/bin post-install-EMACS-on: ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/contrib/lr.el \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/lr.el post-install-VIM-on: ${MKDIR} ${STAGEDIR}${PREFIX}/share/vim/vimfiles/plugin ${INSTALL_DATA} ${WRKSRC}/contrib/lr.vim \ ${STAGEDIR}${PREFIX}/share/vim/vimfiles/plugin/ post-install-NEOVIM-on: ${MKDIR} ${STAGEDIR}${PREFIX}/share/nvim/runtime/plugin ${INSTALL_DATA} ${WRKSRC}/contrib/lr.vim \ ${STAGEDIR}${PREFIX}/share/nvim/runtime/plugin/ .include diff --git a/sysutils/puppet-mode.el/Makefile b/sysutils/puppet-mode.el/Makefile index 4f0b197f675b..8737a25d5dde 100644 --- a/sysutils/puppet-mode.el/Makefile +++ b/sysutils/puppet-mode.el/Makefile @@ -1,28 +1,29 @@ PORTNAME= puppet-mode.el PORTVERSION= 0.2 -PORTREVISION= 22 +PORTREVISION= 23 CATEGORIES= sysutils elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= demon@FreeBSD.org COMMENT= Simple mode for editing puppet manifests WWW= https://github.com/puppetlabs/puppet-syntax-emacs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= emacs USE_GITHUB= yes GH_ACCOUNT= puppetlabs GH_PROJECT= puppet-syntax-emacs GH_TAGNAME= be5d708 +CONFLICTS_INSTALL= puppet-mode.el-emacs_* + NO_ARCH= yes NO_BUILD= yes PLIST_FILES= ${EMACS_SITE_LISPDIR}/puppet-mode.el do-install: ${INSTALL_DATA} ${WRKSRC}/puppet-mode.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/sysutils/puppet-mode.el/pkg-message b/sysutils/puppet-mode.el/pkg-message index 55ddc94ad95d..c645f503e988 100644 --- a/sysutils/puppet-mode.el/pkg-message +++ b/sysutils/puppet-mode.el/pkg-message @@ -1,14 +1,14 @@ [ { type: install message: < diff --git a/textproc/dictem/Makefile b/textproc/dictem/Makefile index 57d1bdbff5c3..1c0960914626 100644 --- a/textproc/dictem/Makefile +++ b/textproc/dictem/Makefile @@ -1,48 +1,46 @@ PORTNAME= dictem PORTVERSION= 1.0.4 -PORTREVISION= 24 +PORTREVISION= 25 CATEGORIES= textproc net elisp MASTER_SITES= SF/dictem/dictem/dictem-${PORTVERSION} -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= max.n.boyarov@gmail.com COMMENT= DICT protocol client for [X]Emacs WWW= https://sourceforge.net/projects/dictem/ LICENSE= GPLv2 RUN_DEPENDS= ${LOCALBASE}/bin/dict:textproc/dict USES= emacs +CONFLICTS_INSTALL= dictem-emacs_* + NO_ARCH= yes +NO_BUILD= yes SRC_EL= dictem.el dictem-lingvo-dsl.el dictem-elisp.el .for f in ${SRC_EL} -PLIST_FILES+= ${LISPDIR}/${f} ${LISPDIR}/${f}c +PLIST_FILES+= ${LISPDIR}/${f} .endfor WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PORTDOCS= README AUTHORS NEWS COPYING TODO -LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/dictem +LISPDIR= ${EMACS_SITE_LISPDIR}/dictem OPTIONS_DEFINE= DOCS -do-build: - (cd ${WRKSRC} && ${EMACS_CMD} --no-site-file --no-init-file -batch \ - -l compile.el -f compile-dictem ${SRC_EL}) - do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${LISPDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} ${SRC_EL} ${SRC_EL:S/.el$/.elc/} \ + (cd ${WRKSRC} && ${INSTALL_DATA} ${SRC_EL} \ ${STAGEDIR}${PREFIX}/${LISPDIR}/) post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for doc in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/textproc/dictem/files/patch-compile.el b/textproc/dictem/files/patch-compile.el deleted file mode 100644 index 29af6a1f931b..000000000000 --- a/textproc/dictem/files/patch-compile.el +++ /dev/null @@ -1,16 +0,0 @@ ---- /dev/null 2013-11-20 22:00:00.000000000 +0300 -+++ compile.el 2013-11-20 21:34:57.112822385 +0300 -@@ -0,0 +1,13 @@ -+;; -*- emacs-lisp -*- -+ -+;; -+;; Help ports system compile for emacs and xemacs -+;; -+ -+(require 'bytecomp) -+ -+(add-to-list 'load-path (expand-file-name ".")) -+ -+(defun compile-dictem () -+ (mapcar 'byte-compile-file command-line-args-left)) -+ diff --git a/textproc/dictionary/Makefile b/textproc/dictionary/Makefile index 82eda3857078..f4473743caa4 100644 --- a/textproc/dictionary/Makefile +++ b/textproc/dictionary/Makefile @@ -1,38 +1,39 @@ PORTNAME= dictionary PORTVERSION= 1.8.7 -PORTREVISION= 40 +PORTREVISION= 41 CATEGORIES= textproc net elisp MASTER_SITES= http://me.in-berlin.de/~myrkr/dictionary/ \ http://bsdchat.com/dist/dryice/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Dictionary client for Emacs WWW= https://www.myrkr.in-berlin.de/dictionary/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/GPL USES= emacs -LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +LISPDIR= ${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME} ELS= connection.el dictionary.el link.el +CONFLICTS_INSTALL= dictionary-emacs_* + +NO_ARCH= yes +NO_BUILD= yes + PORTDOCS= * OPTIONS_DEFINE= DOCS -do-build: - cd ${WRKSRC} && ${EMACS_CMD} -batch -l lpath.el -f batch-byte-compile ${ELS} - do-install: @${MKDIR} ${STAGEDIR}${LISPDIR} -.for i in ${ELS} *.elc dictionary-init.el +.for i in ${ELS} dictionary-init.el ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${LISPDIR} .endfor do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include diff --git a/textproc/dictionary/pkg-plist b/textproc/dictionary/pkg-plist index 78a29b9c255c..b43498b0ec61 100644 --- a/textproc/dictionary/pkg-plist +++ b/textproc/dictionary/pkg-plist @@ -1,7 +1,4 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/dictionary/connection.el -%%EMACS_VERSION_SITE_LISPDIR%%/dictionary/connection.elc -%%EMACS_VERSION_SITE_LISPDIR%%/dictionary/dictionary-init.el -%%EMACS_VERSION_SITE_LISPDIR%%/dictionary/dictionary.el -%%EMACS_VERSION_SITE_LISPDIR%%/dictionary/dictionary.elc -%%EMACS_VERSION_SITE_LISPDIR%%/dictionary/link.el -%%EMACS_VERSION_SITE_LISPDIR%%/dictionary/link.elc +%%EMACS_SITE_LISPDIR%%/dictionary/connection.el +%%EMACS_SITE_LISPDIR%%/dictionary/dictionary-init.el +%%EMACS_SITE_LISPDIR%%/dictionary/dictionary.el +%%EMACS_SITE_LISPDIR%%/dictionary/link.el diff --git a/textproc/doc-mode.el/Makefile b/textproc/doc-mode.el/Makefile index f55985871052..5575029ddee8 100644 --- a/textproc/doc-mode.el/Makefile +++ b/textproc/doc-mode.el/Makefile @@ -1,20 +1,22 @@ PORTNAME= doc-mode.el PORTVERSION= 1.1 -PORTREVISION= 33 +PORTREVISION= 34 CATEGORIES= textproc elisp MASTER_SITES= SF/xpt/doc-mode/doc-mode-${PORTVERSION} -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= doc-mode-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Asciidoc fontlocking for emacs WWW= https://xpt.sourceforge.net/tools/doc-mode/ USES= emacs tar:tgz +CONFLICTS_INSTALL= doc-mode.el-emacs_* + +NO_ARCH= yes NO_BUILD= yes do-install: - ${INSTALL_DATA} ${WRKSRC}/doc-mode.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/doc-mode.el + ${INSTALL_DATA} ${WRKSRC}/doc-mode.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/ .include diff --git a/textproc/markdown-mode.el/Makefile b/textproc/markdown-mode.el/Makefile index 2202371f2b4a..1ae85f80bcd3 100644 --- a/textproc/markdown-mode.el/Makefile +++ b/textproc/markdown-mode.el/Makefile @@ -1,39 +1,40 @@ PORTNAME= markdown-mode.el DISTVERSIONPREFIX= v DISTVERSION= 2.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= olgeni@FreeBSD.org COMMENT= Emacs major mode for editing Markdown-formatted text WWW= https://jblevins.org/projects/markdown-mode/ LICENSE= GPLv3+ USES= emacs gmake USE_GITHUB= yes GH_ACCOUNT= jrblevin GH_PROJECT= markdown-mode +CONFLICTS_INSTALL= markdown-mode.el-emacs_* + NO_ARCH= yes +NO_BUILD= yes -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/markdown-mode.el \ - ${EMACS_VERSION_SITE_LISPDIR}/markdown-mode.elc +PLIST_FILES= ${EMACS_SITE_LISPDIR}/markdown-mode.el PORTDOCS= CHANGES.md CONTRIBUTING.md README.md OPTIONS_DEFINE= DOCS do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/*.el ${WRKSRC}/*.elc \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/*.el \ + ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/textproc/markdown-mode.el/pkg-message b/textproc/markdown-mode.el/pkg-message index c8314e404226..dc296c1dc590 100644 --- a/textproc/markdown-mode.el/pkg-message +++ b/textproc/markdown-mode.el/pkg-message @@ -1,14 +1,14 @@ [ { type: install message: < diff --git a/textproc/muse/pkg-plist b/textproc/muse/pkg-plist index 84726982b6df..02a8c4384d5a 100644 --- a/textproc/muse/pkg-plist +++ b/textproc/muse/pkg-plist @@ -1,96 +1,66 @@ %%EMACS_SITE_LISPDIR%%/muse/contrib/cgi.el -%%EMACS_SITE_LISPDIR%%/muse/contrib/cgi.elc %%EMACS_SITE_LISPDIR%%/muse/contrib/htmlize-hack.el %%EMACS_SITE_LISPDIR%%/muse/contrib/httpd.el -%%EMACS_SITE_LISPDIR%%/muse/contrib/httpd.elc %%EMACS_SITE_LISPDIR%%/muse/contrib/Makefile %%EMACS_SITE_LISPDIR%%/muse/contrib/blosxom/getstamps.pl %%EMACS_SITE_LISPDIR%%/muse/contrib/blosxom/metadate_0_0_3 %%EMACS_SITE_LISPDIR%%/muse/contrib/ikiwiki/IkiWiki/Plugin/muse.pm %%EMACS_SITE_LISPDIR%%/muse/contrib/ikiwiki/IkiWiki/Plugin/test.pl %%EMACS_SITE_LISPDIR%%/muse/contrib/pyblosxom/getstamps.py %%EMACS_SITE_LISPDIR%%/muse/contrib/pyblosxom/hardcodedates.py %%EMACS_SITE_LISPDIR%%/muse/contrib/pyblosxom/make-blog %%EMACS_SITE_LISPDIR%%/muse/contrib/pyblosxom/metadate.py %%EMACS_SITE_LISPDIR%%/muse/experimental/Makefile %%EMACS_SITE_LISPDIR%%/muse/experimental/muse-cite.el %%EMACS_SITE_LISPDIR%%/muse/experimental/muse-mathml.el %%EMACS_SITE_LISPDIR%%/muse/experimental/muse-message.el %%EMACS_SITE_LISPDIR%%/muse/experimental/muse-protocol-iw.el %%EMACS_SITE_LISPDIR%%/muse/experimental/muse-split.el %%EMACS_SITE_LISPDIR%%/muse/muse-autoloads.el %%EMACS_SITE_LISPDIR%%/muse/muse-backlink.el -%%EMACS_SITE_LISPDIR%%/muse/muse-backlink.elc %%EMACS_SITE_LISPDIR%%/muse/muse-blosxom.el -%%EMACS_SITE_LISPDIR%%/muse/muse-blosxom.elc %%EMACS_SITE_LISPDIR%%/muse/muse-book.el -%%EMACS_SITE_LISPDIR%%/muse/muse-book.elc %%EMACS_SITE_LISPDIR%%/muse/muse-colors.el -%%EMACS_SITE_LISPDIR%%/muse/muse-colors.elc %%EMACS_SITE_LISPDIR%%/muse/muse-context.el -%%EMACS_SITE_LISPDIR%%/muse/muse-context.elc %%EMACS_SITE_LISPDIR%%/muse/muse-docbook.el -%%EMACS_SITE_LISPDIR%%/muse/muse-docbook.elc %%EMACS_SITE_LISPDIR%%/muse/muse-groff.el -%%EMACS_SITE_LISPDIR%%/muse/muse-groff.elc %%EMACS_SITE_LISPDIR%%/muse/muse-html.el -%%EMACS_SITE_LISPDIR%%/muse/muse-html.elc %%EMACS_SITE_LISPDIR%%/muse/muse-http.el -%%EMACS_SITE_LISPDIR%%/muse/muse-http.elc %%EMACS_SITE_LISPDIR%%/muse/muse-ikiwiki.el -%%EMACS_SITE_LISPDIR%%/muse/muse-ikiwiki.elc %%EMACS_SITE_LISPDIR%%/muse/muse-import-docbook.el -%%EMACS_SITE_LISPDIR%%/muse/muse-import-docbook.elc %%EMACS_SITE_LISPDIR%%/muse/muse-import-latex.el -%%EMACS_SITE_LISPDIR%%/muse/muse-import-latex.elc %%EMACS_SITE_LISPDIR%%/muse/muse-import-xml.el -%%EMACS_SITE_LISPDIR%%/muse/muse-import-xml.elc %%EMACS_SITE_LISPDIR%%/muse/muse-ipc.el -%%EMACS_SITE_LISPDIR%%/muse/muse-ipc.elc %%EMACS_SITE_LISPDIR%%/muse/muse-journal.el -%%EMACS_SITE_LISPDIR%%/muse/muse-journal.elc %%EMACS_SITE_LISPDIR%%/muse/muse-latex.el -%%EMACS_SITE_LISPDIR%%/muse/muse-latex.elc %%EMACS_SITE_LISPDIR%%/muse/muse-latex2png.el -%%EMACS_SITE_LISPDIR%%/muse/muse-latex2png.elc %%EMACS_SITE_LISPDIR%%/muse/muse-mode.el -%%EMACS_SITE_LISPDIR%%/muse/muse-mode.elc %%EMACS_SITE_LISPDIR%%/muse/muse-poem.el -%%EMACS_SITE_LISPDIR%%/muse/muse-poem.elc %%EMACS_SITE_LISPDIR%%/muse/muse-project.el -%%EMACS_SITE_LISPDIR%%/muse/muse-project.elc %%EMACS_SITE_LISPDIR%%/muse/muse-protocols.el -%%EMACS_SITE_LISPDIR%%/muse/muse-protocols.elc %%EMACS_SITE_LISPDIR%%/muse/muse-publish.el -%%EMACS_SITE_LISPDIR%%/muse/muse-publish.elc %%EMACS_SITE_LISPDIR%%/muse/muse-regexps.el -%%EMACS_SITE_LISPDIR%%/muse/muse-regexps.elc %%EMACS_SITE_LISPDIR%%/muse/muse-texinfo.el -%%EMACS_SITE_LISPDIR%%/muse/muse-texinfo.elc %%EMACS_SITE_LISPDIR%%/muse/muse-wiki.el -%%EMACS_SITE_LISPDIR%%/muse/muse-wiki.elc %%EMACS_SITE_LISPDIR%%/muse/muse-xml.el -%%EMACS_SITE_LISPDIR%%/muse/muse-xml.elc %%EMACS_SITE_LISPDIR%%/muse/muse-xml-common.el -%%EMACS_SITE_LISPDIR%%/muse/muse-xml-common.elc %%EMACS_SITE_LISPDIR%%/muse/muse.el -%%EMACS_SITE_LISPDIR%%/muse/muse.elc %%EXAMPLESDIR%%/Makefile %%EXAMPLESDIR%%/QuickStart.muse %%EXAMPLESDIR%%/emacs-muse.png %%EXAMPLESDIR%%/ikiwiki/muse-init-project.el %%EXAMPLESDIR%%/ikiwiki/muse-init-simple.el %%EXAMPLESDIR%%/johnw/muse-init.el %%EXAMPLESDIR%%/johnw/publish-johnw %%EXAMPLESDIR%%/muse-made-with.png %%EXAMPLESDIR%%/mwolson/muse-init.el %%EXAMPLESDIR%%/mwolson/stylesheets/blog.css %%EXAMPLESDIR%%/mwolson/stylesheets/common.css %%EXAMPLESDIR%%/mwolson/stylesheets/print.css %%EXAMPLESDIR%%/mwolson/stylesheets/screen.css %%EXAMPLESDIR%%/mwolson/templates/footer.html %%EXAMPLESDIR%%/mwolson/templates/generic-footer.html %%EXAMPLESDIR%%/mwolson/templates/generic-header.html %%EXAMPLESDIR%%/mwolson/templates/header.html %%EXAMPLESDIR%%/mwolson/templates/header.tex %%EXAMPLESDIR%%/publish-project diff --git a/textproc/ox-gfm.el/Makefile b/textproc/ox-gfm.el/Makefile index e658b33e08f6..012ea552f8a0 100644 --- a/textproc/ox-gfm.el/Makefile +++ b/textproc/ox-gfm.el/Makefile @@ -1,33 +1,32 @@ PORTNAME= ox-gfm.el PORTVERSION= 1.0p20231215.1901 PORTREVISION= 1 CATEGORIES= textproc MAINTAINER= pat@patmaddox.com COMMENT= Github Flavored Markdown exporter for Org Mode WWW= https://github.com/larstvei/ox-gfm LICENSE= GPLv3+ USES= emacs -EMACS_NO_DEPENDS= yes USE_GITHUB= yes GH_ACCOUNT= larstvei GH_PROJECT= ox-gfm GH_TAGNAME= 4f774f1 NO_ARCH= yes NO_BUILD= yes OPTIONS_DEFINE= DOCS do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} ${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/*.md ${STAGEDIR}${DOCSDIR} .include diff --git a/textproc/uim-el/Makefile b/textproc/uim-el/Makefile index 71eb10721818..75cf8caf588f 100644 --- a/textproc/uim-el/Makefile +++ b/textproc/uim-el/Makefile @@ -1,51 +1,54 @@ PORTNAME= uim-el PORTVERSION= 1.9.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= nobutaka@FreeBSD.org COMMENT?= Emacs lisp for uim input method library WWW= https://github.com/uim/uim LICENSE= BSD3CLAUSE GPLv2+ GPLv3+ LGPL21+ PD LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= uim-el-agent:textproc/uim USES= autoreconf:build,2.69 emacs gettext gmake gnome iconv libtool \ pathfix perl5 pkgconfig USE_GNOME= intltool USE_PERL5= build USE_GITHUB= yes GH_ACCOUNT= uim GH_PROJECT= uim +CONFLICTS_INSTALL= uim-el-emacs_* + +NO_ARCH= yes + GNU_CONFIGURE= yes BUILD_WRKSRC= ${WRKSRC}/emacs INSTALL_WRKSRC= ${WRKSRC}/emacs CONFIGURE_ARGS?=--enable-maintainer-mode --enable-emacs \ - --with-lispdir=${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR} + --with-lispdir=${LOCALBASE}/${EMACS_SITE_LISPDIR} CONFIGURE_ENV= EMACS="${EMACS_CMD}" CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib DOCSDIR_JA= ${PREFIX}/share/doc/ja/uim-el PLIST_SUB+= DOCSDIR_JA="${DOCSDIR_JA:S,^${PREFIX}/,,}" OPTIONS_DEFINE= DOCS pre-configure: cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./autogen.sh post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${MKDIR} ${STAGEDIR}${DOCSDIR_JA} ${INSTALL_DATA} ${WRKSRC}/emacs/README ${STAGEDIR}${DOCSDIR}/README ${INSTALL_DATA} ${WRKSRC}/emacs/README.ja ${STAGEDIR}${DOCSDIR_JA}/README.ja .include diff --git a/textproc/uim-el/pkg-plist b/textproc/uim-el/pkg-plist index 15afd1a97d42..888a8010d59a 100644 --- a/textproc/uim-el/pkg-plist +++ b/textproc/uim-el/pkg-plist @@ -1,13 +1,13 @@ -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-candidate.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-debug.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-helper.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-key.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-keymap.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-leim.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-preedit.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-util.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-var.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim-version.el -%%EMACS_VERSION_SITE_LISPDIR%%/uim-el/uim.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-candidate.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-debug.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-helper.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-key.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-keymap.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-leim.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-preedit.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-util.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-var.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim-version.el +%%EMACS_SITE_LISPDIR%%/uim-el/uim.el %%PORTDOCS%%%%DOCSDIR_JA%%/README.ja %%PORTDOCS%%%%DOCSDIR%%/README diff --git a/textproc/xml-lite.el/Makefile b/textproc/xml-lite.el/Makefile index 0d9fc1a57f3f..bcd47f642196 100644 --- a/textproc/xml-lite.el/Makefile +++ b/textproc/xml-lite.el/Makefile @@ -1,36 +1,35 @@ PORTNAME= xml-lite.el PORTVERSION= 1.1 -PORTREVISION= 28 +PORTREVISION= 29 PORTEPOCH= 1 CATEGORIES= textproc elisp MASTER_SITES= http://dogbiscuit.org/mdub/software/ -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} DISTNAME= ${PORTNAME} EXTRACT_SUFX= # empty MAINTAINER= ports@FreeBSD.org COMMENT= Simple XML-editing for GNU Emacs WWW= https://www.dogbiscuit.org/mdub/software/ LICENSE= GPLv2+ USES= emacs -NO_WRKSUBDIR= yes +CONFLICTS_INSTALL= xml-lite.el-emacs_* + EXTRACT_CMD= ${CP} EXTRACT_BEFORE_ARGS= EXTRACT_AFTER_ARGS=${WRKSRC}/${PORTNAME} -PLIST_FILES= ${EMACS_SITE_LISPDIR}/${PORTNAME} \ - ${EMACS_SITE_LISPDIR}/${PORTNAME}c +NO_ARCH= yes +NO_BUILD= yes -do-build: - cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile ${PORTNAME} +NO_WRKSUBDIR= yes + +PLIST_FILES= ${EMACS_SITE_LISPDIR}/${PORTNAME} do-install: ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} \ ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}c \ - ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include diff --git a/textproc/xml-lite.el/pkg-message b/textproc/xml-lite.el/pkg-message index 5bd6b971478a..8f86e52b6a6c 100644 --- a/textproc/xml-lite.el/pkg-message +++ b/textproc/xml-lite.el/pkg-message @@ -1,10 +1,10 @@ [ { type: install message: < diff --git a/textproc/yaml-mode.el/pkg-message b/textproc/yaml-mode.el/pkg-message deleted file mode 100644 index 330aa6a8e925..000000000000 --- a/textproc/yaml-mode.el/pkg-message +++ /dev/null @@ -1,11 +0,0 @@ -[ -{ type: install - message: < diff --git a/www/emacs-w3m/Makefile b/www/emacs-w3m/Makefile index 81c556f8155d..bee6a6e35740 100644 --- a/www/emacs-w3m/Makefile +++ b/www/emacs-w3m/Makefile @@ -1,63 +1,65 @@ PORTNAME= emacs-w3m PORTVERSION= 1.4.632.b.${SNAPDATE} +PORTREVISION= 1 CATEGORIES= www elisp -PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= nobutaka@FreeBSD.org COMMENT= Simple front-end to w3m for emacs WWW= http://emacs-w3m.namazu.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= w3m:www/w3m RUN_DEPENDS= w3m:www/w3m -USES= autoreconf emacs tar:xz +USES= autoreconf emacs:build tar:xz USE_GITHUB= yes GH_TAGNAME= ec18c21 -ALL_TARGET= default +ALL_TARGET= info INSTALL_TARGET= install install-icons +CONFLICTS_INSTALL= emacs-w3m-emacs_* + NO_ARCH= yes SNAPDATE= 20251229 MAKE_JOBS_UNSAFE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-emacs=${EMACS_CMD} \ - --with-lispdir=${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/w3m \ + --with-lispdir=${PREFIX}/${EMACS_SITE_LISPDIR}/w3m \ --with-icondir=${PREFIX}/${EMACS_LIBDIR}/etc/w3m/icons \ --without-compress-install INFO= emacs-w3m-ja emacs-w3m PORTDOCS= README* OPTIONS_DEFINE= DOCS OCTET_VIEWER SHIMBUN OPTIONS_DEFAULT= OCTET_VIEWER SHIMBUN OPTIONS_SUB= yes OCTET_VIEWER_DESC= Octet stream viewer support SHIMBUN_DESC= Build and/or install Shimbun SHIMBUN_EXTRA_PATCHES_OFF= ${PATCHDIR}/extra-patch-Makefile.in -SHIMBUN_BUILD_DEPENDS= flim${EMACS_PKGNAMESUFFIX}>0:editors/flim@${EMACS_FLAVOR} -SHIMBUN_RUN_DEPENDS= flim${EMACS_PKGNAMESUFFIX}>0:editors/flim@${EMACS_FLAVOR} +SHIMBUN_BUILD_DEPENDS= flim>0:editors/flim +SHIMBUN_RUN_DEPENDS= flim>0:editors/flim OCTET_VIEWER_RUN_DEPENDS=\ - semi${EMACS_PKGNAMESUFFIX}>0:editors/semi@${EMACS_FLAVOR} \ + semi>0:editors/semi \ wvHtml:textproc/wv \ xlhtml:textproc/xlhtml post-patch: @${MV} ${WRKSRC}/aclocal.m4 ${WRKSRC}/acinclude.m4 post-install: - ${RM} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/w3m/mew-shimbun.elc \ - ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/w3m/mew-w3m.elc + @${FIND} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/w3m/ \ + -name "*.elc" -delete post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/www/emacs-w3m/pkg-message b/www/emacs-w3m/pkg-message index c2c812184e4b..5f9937ae509a 100644 --- a/www/emacs-w3m/pkg-message +++ b/www/emacs-w3m/pkg-message @@ -1,24 +1,24 @@ [ { type: install message: <