Slrnconf is a graphical configuation utility for the newsreader slrn. It is intended to make the hairy configuration of SLRN a bit easier. Slrnconf will try to read your ~/.slrnrc at startup. If you're using a different file, just open it via File -> Open. There are no command line switches. WWW: http://home.arcor.de/kaffeetisch/slrnconf.html type='text/html' href='http://tfcis.org/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/?id=6126a9c5a826afdbe6ebfd5bf6d02c6e2be2a700'/> 6126a9c5a826afdbe6ebfd5bf6d02c6e2be2a700 With hat: portmgr Sponsored by: Absolight
With hat:	portmgr
Sponsored by:	Absolight
x11/xxkb: 1.11 -> 1.11.1, change of license from ART10 to ART20 2015-11-21T17:31:10+00:00 pi pi@FreeBSD.org 2015-11-21T17:31:10+00:00 350a33cfef3e2566b94efd027e73aa947609fcd3 PR: 204288 Submitted by: Torsten Zuehlsdorff <ports@toco-domains.de> Approved by: alexander.pohoyda@gmx.net (maintainer timeout)
PR:		204288
Submitted by:	Torsten Zuehlsdorff <ports@toco-domains.de>
Approved by:	alexander.pohoyda@gmx.net (maintainer timeout)
- Add missing USES=pkgconfig, fix build with LIBRSVG2 2015-09-18T14:47:16+00:00 amdmi3 amdmi3@FreeBSD.org 2015-09-18T14:47:16+00:00 f43d367e3cbebaab3f24b81c142d87024591e927 - Switch to options helpers Approved by: portmgr blanket
- Switch to options helpers

Approved by:	portmgr blanket
Finish stage support 2014-01-30T22:32:45+00:00 antoine antoine@FreeBSD.org 2014-01-30T22:32:45+00:00 7ed040d5f56c944918d890c01472593e846307dc

Support stagedir. 2014-01-10T09:32:14+00:00 vanilla vanilla@FreeBSD.org 2014-01-10T09:32:14+00:00 707909bbdc9e883b1f4321903aad07cdb3b1d45d Approved by: portmgr (blanket infrastructure)
Approved by:	portmgr (blanket infrastructure)
Add NO_STAGE all over the place in preparation for the staging support (cat: x11) 2013-09-20T23:43:19+00:00 bapt bapt@FreeBSD.org 2013-09-20T23:43:19+00:00 75c703a072d2981400dc17a23ec971f3cf28a570

Two imake related changes: 2013-09-02T13:26:34+00:00 tijl tijl@FreeBSD.org 2013-09-02T13:26:34+00:00 ca2a2263a744b7c6f6f551ba68906f43afe04522 1) Move -a from XMKMF command variable to a new XMKMF_ARGS variable. For ports that don't need -a introduce USES=imake:notall. This way ports no longer have to redefine XMKMF. 2) xmkmf -a runs imake with the flags in IMAKECPPFLAGS as extra arguments to set CPP, CC and CXX. This creates the top Makefile, and then xmkmf runs make Makefiles. This Makefiles target runs imake for each subdirectory but these imake invocations did not have the flags from IMAKECPPFLAGS so the resulting makefiles used the wrong C preprocessor when clang is used (/usr/bin/cpp instead of /usr/local/bin/tradcpp). Instead of letting xmkmf pass IMAKECPPFLAGS from the environment to imake let imake handle IMAKECPPFLAGS itself just like it handles IMAKEINCLUDE. This exposed configure errors in x11-clocks/mouseclock and x11-wm/fvwm. Approved by: portmgr (bapt)
1) Move -a from XMKMF command variable to a new XMKMF_ARGS variable.
   For ports that don't need -a introduce USES=imake:notall.
   This way ports no longer have to redefine XMKMF.

2) xmkmf -a runs imake with the flags in IMAKECPPFLAGS as extra arguments
   to set CPP, CC and CXX.  This creates the top Makefile, and then xmkmf
   runs make Makefiles.  This Makefiles target runs imake for each
   subdirectory but these imake invocations did not have the flags from
   IMAKECPPFLAGS so the resulting makefiles used the wrong C preprocessor
   when clang is used (/usr/bin/cpp instead of /usr/local/bin/tradcpp).
   Instead of letting xmkmf pass IMAKECPPFLAGS from the environment to
   imake let imake handle IMAKECPPFLAGS itself just like it handles
   IMAKEINCLUDE.

   This exposed configure errors in x11-clocks/mouseclock and x11-wm/fvwm.

Approved by:	portmgr (bapt)
New USES imake to handle the dependency on imake. 2013-06-28T11:51:05+00:00 bapt bapt@FreeBSD.org 2013-06-28T11:51:05+00:00 ba5181b4c873c984e4559cfddf3b6ce79362a9a2 This uses accept 'env' as an argument for ports that do use their own or a different do-configure target. Modify xmkmf so it accept IMAKECPPFLAGS as default flags for imake and pass it to the called imake. Modify xorg-cf-files (the FreeBSD.cf configuration file) to allow CppCmd to be overwritten. Pass CppCmd CcCmd and CplusplusCmd via command line to each call of imake via IMAKECPPFLAGS Pass IMAKE_DEFINE with the above arguments to MAKE_ARGS so that imake spawned from Makefile generated by a previous imake also inherit the defined CppCmd CcCmd and CplusplusCmd. Make imake use devel/tradcpp all the time, so that when buidling with clang we do not depend on gcc's cpp. Make imake respect CC and CXX Make imake respect USE_GCC (if set imake will use gcc's cpp). While here: - Remove a couple of indefinite articles from comments - Trim headers - Fix a couple of ports to build with clang or use: USE_GCC=any - Fix a now useless redefinition of the extraction chain - Fix a typo in japanese/Wnn7-lib bundled imake template definitions - Fix some XMKMF execution with no env specified - Use options helper in x11/xautolock to simplify the port
This uses accept 'env' as an argument for ports that do use their own or a different do-configure target.

Modify xmkmf so it accept IMAKECPPFLAGS as default flags for imake and pass it to the called imake.
Modify xorg-cf-files (the FreeBSD.cf configuration file) to allow CppCmd to be overwritten.
Pass CppCmd CcCmd and CplusplusCmd via command line to each call of imake via IMAKECPPFLAGS
Pass IMAKE_DEFINE with the above arguments to MAKE_ARGS so that imake spawned from Makefile generated by a previous
imake also inherit the defined CppCmd CcCmd and CplusplusCmd.
Make imake use devel/tradcpp all the time, so that when buidling with clang we do not depend on gcc's cpp.
Make imake respect CC and CXX
Make imake respect USE_GCC (if set imake will use gcc's cpp).

While here:
- Remove a couple of indefinite articles from comments
- Trim headers
- Fix a couple of ports to build with clang or use: USE_GCC=any
- Fix a now useless redefinition of the extraction chain
- Fix a typo in japanese/Wnn7-lib bundled imake template definitions
- Fix some XMKMF execution with no env specified
- Use options helper in x11/xautolock to simplify the port
- Sanitize Makefile formatting, trim header and clean it up a bit 2012-11-13T14:25:00+00:00 danfe danfe@FreeBSD.org 2012-11-13T14:25:00+00:00 0da57109e242307dd7b25b00ea9f2f4d90b17786 - Define LICENSE (Artistic 1.0) - Drop shlib version number from LIB_DEPENDS - Convert to the new OPTIONS framework, utilize PORTDOCS - Drop indefinite article from COMMENT and bring it close to official description on sf.net - Convert Russian language docs from archaic KOI8-R to modern UTF-8 - Rephrase, reformat, and generally augment port description Approved by: maintainer timeout Feature safe: yes
- Define LICENSE (Artistic 1.0)
- Drop shlib version number from LIB_DEPENDS
- Convert to the new OPTIONS framework, utilize PORTDOCS
- Drop indefinite article from COMMENT and bring it close to official
  description on sf.net
- Convert Russian language docs from archaic KOI8-R to modern UTF-8
- Rephrase, reformat, and generally augment port description

Approved by:	maintainer timeout
Feature safe:	yes