Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
12 Aug 2022 07:32:10 1.22.4_4 |
Alexey Dokuchaev (danfe)  |
textproc/groff: allow to build preconv(1) without encoding autodetection
After commit f515b0e657e7, I've received another complaint that, quote,
"the number of dependencies of [this] groff thing is quite unreasonable"
and entails installing e.g. Ninja and Meson, which in turn pulls Python,
etc. This happens because `textproc/uchardet' which can be used by the
preconv(1) utility for automatic encoding detection is built with CMake.
As this dependency is optional upstream, allow conservative ports users
to disable it and thus avoid pulling CMake and all that stuff. |
20 Jul 2022 14:23:14 1.22.4_4 |
Tobias C. Berner (tcberner)  |
textproc: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Choe, Cheng-Dae" whitekid
* -
* <glewis@FreeBSD.org>
* <koshy@india.hp.com>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron Straup Cope
* Aaron Straup Cope <ascope@cpan.org>
* Ache
* Adam Herzog <adam@herzogdesigns.com>
* Adam Weinberger <adamw@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
10 Jan 2022 15:15:39 1.22.4_4 |
Stefan Eßer (se)  |
Fix CONFLICTS entries of multiple ports
There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.
This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.
Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port (Only the first 15 lines of the commit message are shown above ) |
29 Oct 2021 09:50:18 1.22.4_4 |
Stefan Eßer (se)  |
*/*: Remove redundant '-[0-9]*' from CONFLICTS
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").
Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".
Approved by: portmgr (blanket) |
01 Oct 2021 17:27:10 1.22.4_4 |
Baptiste Daroussin (bapt)  |
textproc/groff: enforce iconv from ports
groff silently links to iconv from ports, declare properly the
dependency |
06 Apr 2021 14:31:13 1.22.4_3 |
Mathieu Arnold (mat)  |
all: Remove all other $FreeBSD keywords. |
06 Apr 2021 14:31:07 1.22.4_3 |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
13 Nov 2019 14:32:07
1.22.4_3 |
jbeich  |
Drop workaround for qemu-user-static hang after r517350
GSlice as used by qemu-user still aborts due to low RLIMIT_VMEM in an
emulated application but no longer hangs. While the behavior differs
from real hardware it matches the one from before r456518 that was
hardcoded as gl_cv_func_printf_enomem=no workaround.
PR: 224740 |
02 Oct 2019 08:46:19
1.22.4_3 |
bapt  |
groff: remove X11 option and dependency
Now that groff is required for manpages that are not supported by mandoc
the default dependency on X11 has become a big concern for many people.
From now the entire X11 option has been removed as it is only needed for
legacy part of groff that have little end user value.
The other part that was dragging in all the X11 dependencies was the ghostscript
dependency which is needed for 2 cases:
1. find the path of the urw fonts which is needed for pdf generation. the
configure script has been patched to stop using ghostscript to find that path,
but directly use the one provided.
2. the html driver which calls at runtime the gs binary along with some binaries
provided by the netpbm package. Given how little use it is, add a message to
tell the users to manually install ghostscript and netpbm as optional dependency
if they do need to use groff -Thtml.
Requested by: many |
20 Sep 2019 19:48:00
1.22.4_2 |
dim  |
Fix groff build with libc++ 9.0.0
Because libc++ 9.0.0 now includes <math.h> from <stdlib.h>, groff fails
to build with an error similar to:
In file included from src/libs/libgroff/assert.cpp:20:
In file included from /usr/include/c++/v1/stdlib.h:100:
./lib/math.h:38:3: error: "Please include config.h first."
#error "Please include config.h first."
^
./lib/math.h:40:1: error: unknown type name '_GL_INLINE_HEADER_BEGIN'
_GL_INLINE_HEADER_BEGIN
^
Fix this in the least intrusive way, by simply including config.h
instead of emitting an error message.
Approved by: bapt (maintainer)
PR: 240701
MFH: 2019Q3 |
22 May 2019 09:34:51
1.22.4_2 |
koobs  |
textproc/groff: Fix build/packaging with URWFONTS disabled
With URWFONTS disabled, the groff build fails:
pdfroff: installation problem: cannot find GhostScript interpreter
*** FATAL INSTALLATION ERROR ***
'pdfroff' requires a GhostScript interpreter to convert PostScript to PDF.
Since you do not appear to have one installed, 'pdfroff' connot continue.
This change provides configure with a more explicit argument to disable
ghostscript, vs the CONFIGURE_ENV method [1] introduced in ports 499077
after ports r499075 introduced the option.
Update pkg-plist to mark files not conditional on this option.
PR: 237615
Submitted by: <fullermd over-yonder net> [1]
Approved by: portmgr (blanket: build fix, just fix it)
MFH: no (not affected) |
16 Apr 2019 05:44:37
1.22.4_1 |
bapt  |
Fix configure still detecting ghostscript if installed and URWFONTS disabled
Fix plist when URWFONTS is disabled
Reported by: Zeus Panchenko <zeus@ibs.dn.ua> |
16 Apr 2019 04:23:23
1.22.4_1 |
bapt  |
Add a new option URWFONTS
This options allows to disable at build time dependency on gsfonts and
ghostcript, to reduce the number of dependency for minimal setup.
Note that ghostscript and gsfonts are only needed at build time otherwise (mark
ghostscritp as such in any case now) and they are needed for some usage of
gropdf.
Reported by: Zeus Panchenko <zeus@ibs.dn.ua> |
29 Jan 2019 02:02:19
1.22.4 |
jbeich  |
textproc/groff: unhang on qemu-aarch64-static after r488509
checking whether printf survives out-of-memory conditions...
PR: 224740 |
27 Dec 2018 08:54:55
1.22.4 |
bapt  |
Groff now requires texinfo to be installed to build |
27 Dec 2018 06:56:14
1.22.4 |
bapt  |
Update to 1.22.4 |
10 Nov 2018 18:12:58
1.22.3_1 |
bapt  |
Install texinfo files (GNU info) into ${PREFIX}/share/info
After a discussion on the mailing list on moving manpages to
${PREFIX}/share/man for consistency with base where it is
installed in usr/share/man, it appeared the same should happen
to GNU info files which were installed under share in base and
not in ports.
Now texinfo is not in base on any of the supported version of FreeBSD
it is possible to proceed to this move and it is easier to do than
the manpage change.
Other benefit than consistency are less patching: all build tools but
cmake are expecting info files to be under share/info and cmake (patched here)
was having an exception for BSD so the patch makes FreeBSD case less
specific for them
Bump revision of all impacted ports
PR: 232907
exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D17816 |
13 Jun 2018 08:39:06
1.22.3 |
tijl  |
Add build dependency on print/gsfonts. This used to be pulled in by
Ghostscript.
Reported by: antoine |
09 Aug 2017 20:52:08
1.22.3 |
peter  |
Fix broken build since r441842 (May 27, 2017). Add missing %%HTMLDOCS%%
tag to webpage-17.html plist entry.
PR: 220196, 220856 |
02 Aug 2017 18:49:39
1.22.3 |
jbeich  |
textproc/groff: lift BROKEN after r441842
PR: 220731
Pointy hat to: linimon (r441879 acted on obsolete logs)
Submitted by: mikael.urankar@gmail.com
Approved by: maintainer timeout (2 weeks) |
27 May 2017 21:43:26
1.22.3 |
linimon  |
Mark some ports failing to package on armv6, with errors classified as
"install_error".
While here, pet portlint.
Approved by: portmgr (tier-2 blanket) |
27 May 2017 11:37:35
1.22.3 |
bapt  |
Update to 1.22.3
Small cleanups
Take maintainership
Reviewed by: uqs (previous maintainer) |
25 Jun 2016 21:33:10
1.22.2_4 |
mat  |
Make MAKE_JOBS_UNSAFE, tries to use stuff before building them, for example:
/wrkdirs/usr/ports/textproc/groff/work/groff-1.22.2/src/devices/gropdf/pdfmom:
not found
gmake[3]: *** [Makefile.sub:117: examples/letter.pdf] Error 127
While there, remove the bsd.port.pre/post inclusion.
Sponsored by: Absolight |
13 Apr 2016 10:36:15
1.22.2_4 |
jbeich  |
Consistently prefer ${CONFIGURE_CMD} over ./${CONFIGURE_SCRIPT}
This also fixes SET_LATE_CONFIGURE_ARGS with custom CONFIGURE_CMD.
PR: 208294
Exp-run by: antoine
Approved by: portmgr (antoine), perl (mat)
Differential Revision: https://reviews.freebsd.org/D4158 |
01 Apr 2016 14:25:18
1.22.2_4 |
mat  |
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.
With hat: portmgr
Sponsored by: Absolight |
24 Mar 2016 15:47:50
1.22.2_4 |
tijl  |
Make print/ghostscript9-agpl-base the default Ghostscript port. Upstream
changed the license to the AGPL 3 in version 9.07 so print/ghostscript9-base
is stuck at 9.06 which is almost 4 years old now.
Fix the logic in Uses/ghostscript.mk so "agpl" is treated as a real version
on its own instead of as a variant of other versions.
Fix print/ghostscript9-agpl-base to install eps2write.
Update math/asymptote to 2.37 to support newer Ghostscript.
PR: 208159
Exp-run by: antoine
Approved by: portmgr (antoine) |
26 Aug 2015 02:45:26
1.22.2_3 |
amdmi3  |
- Fix shebangs
Approved by: portmgr blanket |
22 Aug 2015 17:48:36
1.22.2_2 |
hrs  |
- Split ghostscript into X11-independent and -dependent parts:
* print/ghostscript{7,8,9,9-agpl}-base
Installs Ghostscript binary, libgs, and related files.
These ports do not depend on X11 libraries (i.e. x11* devices
are not available). USES=ghostscript will set dependency on
one of them depending on GHOSTSCRIPT_DEFAULT.
The default device is set to "display" or "bbox".
* print/ghostscript{7,8,9,9-agpl}-x11
Installs a shared library which provides X11 support to
the installed Ghostscript binaries. x11* devices will be (Only the first 15 lines of the commit message are shown above ) |
16 Jul 2015 20:53:29
1.22.2_1 |
kwm  |
Convert code in bsd.port.mk for USE_GHOSTSCRIPT* to USES=ghostscript.
Add GHOSTSCRIPT_DEFAULT to bsd.default-versions.mk for easy version selection.
Arguments supported: <empty>, build, run, nox11 and agpl
PR: 201201 (exp-run)
Approved by: portmgr (mat@)
Exp run by: antione@ (previous patch)
Differential Revision: https://reviews.freebsd.org/D2938 |
14 May 2015 10:15:09
1.22.2_1 |
mat  |
MASTER_SITES cleanup.
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight |
08 Apr 2015 15:16:47
1.22.2_1 |
bapt  |
Fix packaging as a user (pkg already set the proper owners) |
30 Mar 2015 18:12:21
1.22.2_1 |
robak  |
textproc/groff: add CPE information
- Maintainer's timeout (uqs@FreeBSD.org)
PR: 198593
Submitted by: Shun <shun.fbsd.pr@dropcut.net> |
15 Nov 2014 16:26:33
1.22.2_1 |
antoine  |
Cleanup plist |
05 Jul 2014 12:09:33
1.22.2_1 |
uqs  |
Fix textproc/groff pkg-plist for WITHOUT_X11 builds
Submitted by: Phil Pennock <phil.pennock@spodhuis.org> |
20 Jun 2014 14:53:58
1.22.2_1 |
wg  |
textproc/groff: shebangfix and pet portlint
PR: 189654
Submitted by: paul inetstat net
Approved by: maintainer |
05 May 2014 09:45:37
1.22.2 |
bapt  |
Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)
bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore
Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier
With hat: portmgr |
31 Jan 2014 19:42:17
1.22.2 |
uqs  |
Upgrade to 1.22.2; STAGEify
Approved by: beat (mentor) |
23 Jan 2014 15:27:58
1.21_3 |
des  |
Relpace hardcoded ghostscript build dependency with USE_GHOSTSCRIPT_RUN.
MFH 2014Q1 |
20 Sep 2013 23:17:32
1.21_2 |
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
textproc) |
17 Sep 2013 09:00:42
1.21_2 |
bapt  |
Convert to new perl framework |
28 Apr 2013 04:27:44
1.21_2 |
jgh  |
- adoption of optionsNG, trim historical header
- shift license for portlint
Approved by: maintainer, uqs@ |
24 Apr 2013 04:13:09
1.21_2 |
hrs  |
Merge print/psutils-a4 and print/psutils-letter into a single port
print/psutils. The default paper size in the programs can be set via
libpaper ($PAPERSIZE or etc/papersize configuration file). |
10 Jun 2012 18:42:48
1.21_1 |
swills  |
- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
about for a while.
PR: ports/168208
Approved by: portmgr (miwi) |
01 Jun 2012 05:26:28
1.21_1 |
dinoex  |
- update png to 1.5.10 |
16 Jan 2011 18:09:03
1.21 |
uqs  |
Add CONFLICTS for groff ports
Submitted by: Andrzej Tobola <ato@iem.pw.edu.pl>
Feature safe: yes |
15 Jan 2011 16:40:48
1.21 |
uqs  |
Add textproc/groff, the latest version of the groff typesetting suite.
Feature safe: yes
Reviewed by: ehaupt |