Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.9.83_1 31 Oct 2024 21:47:34
    |
Rene Ladan (rene)  |
textproc/linuxdoc-tools: expire on 2025-03-31 for textproc/jade |
0.9.83_1 22 Feb 2024 03:48:03
    |
Muhammad Moinur Rahman (bofh)  |
textproc/linuxdoc-tools: Moved man to share/man
Approved by: portmgr (blanket) |
0.9.83 13 Jul 2023 06:57:47
    |
Felix Palmen (zirias)  |
textproc/linuxdoc-tools: Update to 0.9.83
Also switch to USE_GITLAB with the new support for a tag name.
No functional changes but only build fixes of some bundled code, full
changelog can be found here:
https://gitlab.com/agmartin/linuxdoc-tools/-/blob/master/ChangeLog
Approved by: tcberner (mentor, implicit) |
0.9.82 21 Dec 2022 16:08:50
    |
Felix Palmen (zirias)  |
textproc/linuxdoc-tools: Fix build with DOCS
DOCS_USES was declared twice after update for the USES=tex change.
While here, sort DOCS_USE.
Approved by: tcberner (mentor, implicit) |
0.9.82 20 Dec 2022 15:59:26
    |
Muhammad Moinur Rahman (bofh)  |
*/*tex*: Fix USES=tex in some ports
During my previous commits I missed some ports which were using
lowercase USE_tex which were not searched during my commits on more than
100 ports. I am still unsure how those ports were working as there was
no option for lowercase tex in the previous bsd.tex.mk.
Reported by: zirias |
07 Sep 2022 21:58:51
    |
Stefan Eßer (se)  |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
0.9.82 07 Sep 2022 21:10:59
    |
Stefan Eßer (se)  |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
0.9.82 03 Aug 2022 09:01:26
    |
Felix Palmen (zirias)  |
maintainer: Update to FreeBSD address
Change all MAINTAINER entries with <felix@palmen-it.de> to
<zirias@FreeBSD.org>.
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36029 |
0.9.82 20 Jul 2022 14:23:14
    |
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 ) |
0.9.82 06 Apr 2021 14:31:07
    |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
0.9.82 06 Jul 2020 09:52:51
  |
lwhsu  |
Update to 0.9.82
PR: 247794
Submitted by: Felix Palmen <felix@palmen-it.de> (maintainer) |
0.9.80 20 May 2020 05:39:53
  |
fernape  |
textproc/linuxdoc-tools: Update to 0.9.80
PR: 246562
Submitted by: felix@palmen-it.de (maintainer) |
0.9.78 13 May 2020 02:11:14
  |
dbaio  |
textproc/linuxdoc-tools: Update to 0.9.78
PR: 246418
Submitted by: Felix Palmen <felix@palmen-it.de> (maintainer) |
0.9.77 05 May 2020 10:58:59
  |
dbaio  |
textproc/linuxdoc-tools: Update to 0.9.77
PR: 246178
Submitted by: Felix Palmen <felix@palmen-it.de> (maintainer) |
0.9.76 11 Apr 2020 07:17:38
  |
tcberner  |
textproc/linuxdoc-tools: Update to 0.9.76
PR: 245417
Submitted by: Felix Palmen <felix@palmen-it.de> (maintainer) |
0.9.75 26 Mar 2020 17:26:14
  |
makc  |
textproc/linuxdoc-tools:
- Unbreak and update to 0.9.75
PR: 244926
Submitted by: Felix Palmen (maintainer) |
0.9.71 06 Nov 2019 16:26:35
  |
antoine  |
Mark a few ports BROKEN (unfetchable) |
0.9.71 28 Mar 2018 16:52:54
  |
mat  |
Fix build with Perl 5.26.
Unescaped left brace in regex is illegal in regex when not used as a
quantifier.
- /foo{3}/ will match foofoofoo.
- /\\new{bar}/ is illegal and should be written as /\\new\{bar}/.
PR: 226817
Sponsored by: Absolight |
0.9.71 25 May 2017 14:42:40
  |
bapt  |
Register groff as both build and run dependency |
0.9.71 18 Jan 2017 13:20:32
  |
tijl  |
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user. Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well. The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.
Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).
PR: 215882
Exp-run by: antoine
Approved by: portmgr (antoine) |
0.9.71 24 Apr 2016 09:19:05
  |
lme  |
- Update to 0.9.71
- Build DOCS with dvipsk
PR: 208983
Submitted by: maintainer
Sponsored by: Essen Linuxhotel Hackathon 2016 |
0.9.69 01 Apr 2016 20:17:25
  |
amdmi3  |
- Switch to more correct USES=makeinfo
PR: 208444
Suggested by: bapt |
0.9.69 01 Apr 2016 20:11:32
  |
amdmi3  |
- Fix dependency line
Approved by: portmgr blanket |
0.9.69 01 Apr 2016 20:06:29
  |
amdmi3  |
- Add missing dependency on makeinfo, fix build on 11.x
PR: 208444
Submitted by: felix@palmen-it.de (maintainer) |
0.9.69 01 Apr 2016 14:25:18
  |
mat  |
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.
With hat: portmgr
Sponsored by: Absolight |
0.9.69 01 Apr 2016 13:18:17
  |
mat  |
Fixup some whitespace at the beginning of lines problems.
With hat: portmgr
Sponsored by: Absolight |
0.9.69 06 Nov 2015 18:35:26
  |
pawel  |
Linuxdoc-Tools is a fork of SGML-Tools 1.0.9, capable of processing
LinuxDoc DTD SGML files. Such files are sometimes used as an input
format for generated documentation.
WWW: https://tracker.debian.org/pkg/linuxdoc-tools
PR: 195478
Submitted by: Felix Palmen <felix@palmen-it.de> |