| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
and mandoc
PR: 273885
|
| |
|
| |
|
|
|
|
|
|
| |
PR: 273245
Approved by: bapt
Differential Revision: https://reviews.freebsd.org/D41858
|
|
|
|
|
|
|
|
|
|
| |
* Pet portclippy.
* Re-format Makefile with portfmt.
ChangeLog: https://git.savannah.gnu.org/cgit/groff.git/tree/NEWS?h=1.23.0
PR: 272810
Approved by: maintainer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because textproc/groff's Makefile does not explicitly set its C++
standard, this leads to several errors:
src/preproc/grn/hdb.cpp:38:15: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
int DBGetType(register char *s);
^~~~~~~~~
src/preproc/grn/hdb.cpp:64:3: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
register ELT *temp;
^~~~~~~~~
src/preproc/grn/hdb.cpp:83:8: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
DBRead(register FILE *file)
^~~~~~~~~
src/preproc/grn/hdb.cpp:85:3: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
register int i;
^~~~~~~~~
src/preproc/grn/hdb.cpp:86:3: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
register int done; /* flag for input exhausted */
^~~~~~~~~
src/preproc/grn/hdb.cpp:87:3: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
register double nx; /* x holder so x is not set before orienting */
^~~~~~~~~
src/preproc/grn/hdb.cpp:212:11: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
DBGetType(register char *s)
^~~~~~~~~
Add USE_CXXSTD=gnu++98 to avoid these errors.
Approved by: bapt (maintainer)
MFH: 2023Q2
|
|
|
|
|
|
|
|
|
|
| |
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
* Ade Lovett <ade@FreeBSD.org>
* Akinori MUSHA aka knu <knu@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alan Eldridge <alane@FreeBSD.org>
* Alex Dupre <ale@FreeBSD.org>
* Alex Kapranoff <kappa@FreeBSD.org.ua>
* Alexander Logvinov <ports@logvinov.com>
* Alexander Nedotsukov <bland@FreeBSD.org>
* Alexander Zhuravlev <zaa@zaa.pp.ru>
* Alexander@Leidinger.net
* Alexandre Biancalana <ale@biancalanas.net>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Alexis Praga <alexis.praga@free.fr>
* Andreas Heil <ah@linux-hq.de>
* Andrei V. Shetuhin <reki@reki.ru>
* Andrej Zverev <andrey.zverev@electro-com.ru>
* Andrew <andrew@ugh.net.au>
* Andrew Humphrey <ahumphrey@realestate.com.au>
* Andrew Lewis <freeghb@gmail.com>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Andrew Romero <melanhit@gmail.com>
* Andrey Kostenko <andrey@kostenko.name>
* Andrey Zakhvatov
* Andrey Zakhvatov <andy@FreeBSD.org>
* Anes Mukhametov <anes@anes.su>
* Antoine Brodin <antoine@FreeBSD.org>
* Anton Berezin <tobez@FreeBSD.org>
* Anton Berezin <tobez@tobez.org>
* Anton Yudin <toha@toha.org.ua>
* Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
* Ashish SHUKLA <wahjava@gmail.com>
* Autrijus Tang <autrijus@autrijus.org>
* Babak Farrokhi <farrokhi@FreeBSD.org>
* Ben Haga <tuxsuximus@hotmail.com>
* Ben Woods <woodsb02@FreeBSD.org>
* Benno Rice <benno@jeamland.net>
* Bill "I hate Perl" Fumerola
* Bill Brinzer <bill.brinzer@gmail.com>
* Bill Fumerola <billf@chc-chimes.com>
* Bill Swingle <unfurl@FreeBSD.org>
* Bob Eager <rde@ml1.org.uk>
* Boris Samorodov <bsam@FreeBSD.org>
* Brian Candler <B.Candler@pobox.com>
* Brion Moss <brion@queeg.com>
* Carlos J Puga Medina <cpm@fbsd.es>
* Carlos J. Puga Medina <cpm@FreeBSD.org>
* Cezary Morga <cm@therek.net>
* Cheng-Lung Sung <clsung@FreeBSD.org>
* Cheng-Lung Sung <clsung@dragon2.net>
* Chris D. Faulhaber <jedgar@fxp.org>
* Chris Hutchinson <portmaster@bsdforge.com>
* Christoper Key <cjk32@cam.ac.uk>
* Clemens Zauner <czauner+ports@onlineloop.com>
* Cyrille Lefevre <clefevre@citeweb.net>
* Dan Langille <dvl@FreeBSD.org>
* Daniel Roethlisberger <daniel@roe.ch>
* Danilo G. Baio <dbaio@FreeBSD.org>
* David Bremner <bremner@unb.ca>
* David O'Brien (obrien@FreeBSD.org)
* David Sze <dsze@alumni.uwaterloo.ca>
* Denis Pokataev <catone@cpan.org>
* Dennis Herrmann <dhn@FreeBSD.org>
* Dereckson <dereckson@gmail.com>
* Dikshie
* Dikshie <dikshie@sfc.wide.ad.jp>
* Dima Sivachenko <demon@gpad.ac.ru>
* Dirk Froemberg <dirk@FreeBSD.org>
* Ditesh Shashikant Gathani <ditesh@gathani.org>
* Dmitry Morozovsky <marck@FreeBSD.org>
* Dmitry Sivachenko <demon@FreeBSD.org>
* Dom Mitchell <dom@happygiraffe.net>
* Don Croyle <croyle@gelemna.org>
* Donald Burr <dburr@FreeBSD.org>
* Douglas Thrift <douglas@douglasthrift.net>
* Dru Lavigne <dru@FreeBSD.org>
* Dryice Liu <dryice@dryice.name>
* Ed Schouten <ed@FreeBSD.org>
* Edward Tomasz Napierala <trasz@FreeBSD.org>
* Elvis Chiang <elvis@sslab.cs.ccu.edu.tw>
* Emanuel Haupt <ehaupt@FreeBSD.org>
* Emanuel Haupt <ehaupt@critical.ch>
* Eric A. Griff <eric@talesfromthereal.com>
* Eric Freeman <freebsdports@chillibear.com>
* Erik Greenwald <erik@smluc.org>
* Ernst de Haan <znerd@FreeBSD.org>
* Erwin Lansing <erwin@FreeBSD.org>
* Espen Tagestad <espen@tagestad.no>
* Eugene Furs <justas@mbank.lv>
* Felippe de Meirelles Motta <lippemail@gmail.com>
* Felix Palmen <felix@palmen-it.de>
* Fernan Aguero <fernan@iib.unsam.edu.ar>
* Filip Parag <filip@parag.rs>
* Foxfair Hu <foxfair@FreeBSD.org>
* Freddie Cash <fcash@sd73.bc.ca>
* Frederic Culot <culot@FreeBSD.org>
* Frederic Dubuy <fdubuy@free.fr>
* Gabor Kovesdan <gabor@FreeBSD.org>
* Garrett Rooney <rooneg@electricjellyfish.net>
* Gasol Wu <gasol.wu@gmail.com>
* Gea-Suan Lin <gslin@gslin.org>
* Geoffroy Desvernay <dgeo@centrale-marseille.fr>
* George Hartzell <hartzell@fruitfly.org>
* Gerald Pfeifer <gerald@pfeifer.com>
* Gerrit Beine <gerrit.beine@gmx.de>
* Glenn Trewitt <glenn@trewitt.org>
* Goran Tal <goran.tal@gmail.com>
* Graham Todd <gtodd@bellanet.org>
* Greg Larkin <glarkin@FreeBSD.org>
* Greg Lewis <glewis@FreeBSD.org>
* Grzegorz Blach <gblach@FreeBSD.org>
* Guangyuan Yang <ygy@FreeBSD.org>
* Hansjoerg Pehofer <hansjoerg.pehofer@uibk.ac.at>
* Henrik Motakef <henrik.motakef@web.de>
* Henry Hu <henry.hu.sh@gmail.com>
* Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
* Herve Quiroz <hq@FreeBSD.org>
* Hiroki Sato <hrs@FreeBSD.org>
* Horia Racoviceanu <horia@racoviceanu.com>
* Hye-Shik Chang <perky@fallin.lv>
* Ian Vaudrey <i.vaudrey@bigfoot.com>
* Ilya A. Arkhipov <rum1cro@yandex.ru>
* Jaap Boender <jaapb@kerguelen.org>
* James Earl
* James Flemer <jflemer@alum.rpi.edu>
* James Raftery <james@now.ie>
* Jason Burgess <dev@fenux.net>
* Jason Helfman <jgh@FreeBSD.org>
* Jean-Baptiste Quenot <jb.quenot@caraldi.com>
* Jean-Yves Lefort <jylefort@brutele.be>
* Jeff Putsch <jdputsch@comcast.net>
* Jeremy Shaffner <jeremy@external.org>
* Jie Gao <gaoj@cpsc.ucalgary.ca>
* Jim Mock <jim@FreeBSD.org>
* Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
* Joe Marcus Clarke <marcus@FreeBSD.org>
* Johann Visagie <johann@egenetics.com>
* Johann Visagie <wjv@FreeBSD.org>
* Johannes Jost Meixner <xmj@FreeBSD.org>
* Johannes Meixner <johannes@perceivon.net>
* John MacFarlane <jgm@berkeley.edu>
* John Marino <marino@FreeBSD.org>
* Jonathan Chen <jonc@chen.org.nz>
* Jos Backus <josb@cncdsl.com>
* Joseph Koshy <jkoshy@FreeBSD.org>
* Josh Gilliam <josh@quick.net>
* Jov <amutu@amutu.com>
* Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
* Julien Laffaye <kimelto@gmail.com>
* Jun Kuriyama <kuriyama@opt.phys.waseda.ac.jp>
* Jyun-Yan You <jyyou@cs.nctu.edu.tw>
* KANOU Hiroki <kanou@khdd.net>
* KIMURA Yasuhiro <yasu@utahime.org>
* KIRIYAMA Kazuhiko <kiri@FreeBSD.org>
* Ka Ho Ng <khng300@gmail.com>
* Kay Lehmann <kay_lehmann@web.de>
* Kevin Lo <kevlo@FreeBSD.org>
* Kimura Fuyuki <fuyuki@hadaly.org>
* Kimura Fuyuki <fuyuki@mj.0038.net>
* Kimura Fuyuki <fuyuki@nigredo.org>
* Konstantin Menshikov <kostjnspb@yandex.ru>
* Koop Mast <kwm@FreeBSD.org>
* Kouichi ABE (WALL) <kouichi@mysticwall.com>
* Kris Kennaway <kris@FreeBSD.org>
* Kris Moore <kmoore@FreeBSD.org>
* Kuan-Chung Chiu <buganini@gmail.com>
* Kubilay Kocak <koobs@FreeBSD.org>
* Kurt Lidl <kurt.lidl@cello.com>
* Lars Balker Rasmussen <lbr@FreeBSD.org>
* Lars Engels <lme@FreeBSD.org>
* Lars Thegler <lars@thegler.dk>
* Lars Thegler <lth@FreeBSD.org>
* Leland Wang <llwang@infor.org>
* Leo Kim <leo@florida.sarang.net>
* Lev Serebryakov <lev@serebryakov.spb.ru>
* Li-Wen Hsu <lwhsu@FreeBSD.org>
* Loic Pefferkorn <loic-freebsd@loicp.eu>
* MANTANI Nobutaka <nobutaka@FreeBSD.org>
* MIHIRA Yoshiro <sanpei@FreeBSD.org>
* Marcin Cieslak
* Marcin Jessa <yazzy@yazzy.org>
* Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
* Mark Pulford <mark@kyne.com.au>
* Mark R V Murray <mark@grondar.za>
* Martin Kammerhofer
* Martin Matuska <mm@FreeBSD.org>
* Martin Wilke <miwi@FreeBSD.org>
* Marwan Burelle <marwan.burelle@lri.fr
* Masahiro Teramoto <markun@onohara.to>
* Mathieu Arnold <m@absolight.net>
* Matt Mills <matt_mills@btopenworld.com>
* Matthew Fuller <fullermd@over-yonder.net>
* Matthew Seaman
* Matthias Fechner <mfechner@FreeBSD.org>
* Mauricio Herrera Cuadra <mauricio@arareko.net>
* Max Baryshnikov <mephius@gmail.com>
* Max N. Boyarov <m.boyarov@gmail.com>
* Maxim Sobolev <sobomax@FreeBSD.org>
* Meno Abels <meno.abels@adviser.com>
* Michael Johnson <ahze@FreeBSD.org>
* Michael Johnson <ahze@ahze.net>
* Michael Moll <kvedulv@kvedulv.de>
* Michael Ranner <michael@ranner.eu>
* Michael Schout <mschout@gkg.net>
* Mike Bristow <mike@urgle.com>
* Mikhail Teterin <mi@aldan.algebra.com>
* Moggie <moggie@elasticmind.net>
* Mykola Dzham <freebsd@levsha.org.ua>
* Naram Qashat <cyberbotx@cyberbotx.com>
* Neil Booth
* Nicola Stanislao Vitale <nivit@FreeBSD.org
* Nicola Stanislao Vitale <nivit@FreeBSD.org>
* Nicola Vitale <nivit@FreeBSD.org>
* Nicola Vitale <nivit@email.it>
* Nik Clayton <nik@FreeBSD.org>
* Nikola Lecic <nikola.lecic@anthesphoria.net>
* Nosov Artem <chip-set@mail.ru>
* Oleg Mamontov <oleg@mamontov.net>
* Oliver Braun <obraun@informatik.unibw-muenchen.de>
* Oliver Eikemeier <eikemeier@fillmore-labs.com>
* Oliver Lehmann (oliver@FreeBSD.org)
* Olivier Duchateau
* Olivier Duchateau <olivierd@FreeBSD.org>
* Olivier Girard <Olivier.Girard@univ-angers.fr>
* Patrick Li <pat@databits.net>
* Patrick Powell <papowell@astart.com>
* Pav Lucistnik <pav@FreeBSD.org>
* Pav Lucistnik <pav@oook.cz>
* Pavel Timofeev <timp87@gmail.com>
* Pawel Pekala <pawel@FreeBSD.org>
* Pedro Giffuni
* Pedro Giffuni <pfg@FreeBSD.org>
* Pete Fritchman <petef@databits.net>
* Peter Johnson <johnson.peter@gmail.com>
* Peter Pentchev <roam@FreeBSD.org>
* Peter Schuller <peter.schuller@infidyne.com>
* Petteri Valkonen <petteri.valkonen@iki.fi>
* Pietro Cerutti <gahr@gahr.ch>
* Piotr Kubaj <pkubaj@anongoth.pl>
* Piotr Rybicki <meritus@innervision.pl>
* Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Radim Kolar <hsn@sanatana.dharma>
* Rainer Hurling <rhurlin@gwdg.de>
* Rene Ladan <rene@FreeBSD.org>
* René Ladan <rene@freebsd.org>
* Richard Gallamore <ultima@FreeBSD.org>
* Rick van der Zwet <info@rickvanderzwet.nl>
* Robert Gogolok <gogo@cs.uni-sb.de>
* Rod Taylor <ports@rbt.ca>
* Rodrigo OSORIO <rodrigo@FreeBSD.org>
* Roger Leigh <rleigh@codelibre.net>
* Rong-En Fan <rafan@infor.org>
* Rusmir Dusko <nemysis@FreeBSD.org>
* Russell Cloran <russell@rucus.ru.ac.za>
* Russell Jackson <raj@csub.edu>
* Ryan Steinmetz <zi@FreeBSD.org>
* Samuel Tardieu <sam@inf.enst.fr>
* Sascha Holzleiter <sascha@root-login.org>
* Scott Sanders <scott@jssjr.com>
* Seamus Venasse <svenasse@polaris.ca>
* Serge Gagnon <ser_gagnon@sympatico.ca>
* Sergei Kolobov <sergei@kolobov.com>
* Sergei Vyshenski <svysh.fbsd@gmail.com>
* Sergey A. Osokin <osa@FreeBSD.org>
* Sergey Skvortsov <skv@FreeBSD.org>
* Sergey Skvortsov <skv@protey.ru>
* Shen Chun-Hsing <statue@freebsd.netlab.cse.yzu.edu.tw>
* Shinsuke Matsui <smatsui@karashi.org>
* Silvio Ap Silva aka kanazuchi <alvolivre@live.com>
* Simon 'corecode' Schubert <corecode@corecode.ath.cx>
* Simon Olofsson <simon@olofsson.de>
* Soeren Boll Overgaard <boll@tolkien.dk>
* Sofian Brabez <sbz@FreeBSD.org>
* Stanislav Svirid <count@211.ru>
* Stefan Esser <se@FreeBSD.org>
* Stefan Pauly <stefan@fh-mainz.de>
* Stefan Walter <sw@gegenunendlich.de>
* Stephen Montgomery-Smith <stephen@math.missouri.edu>
* Stephen Roznowski (sjr@home.com)
* Stephon Chen <stephon@gmail.com>
* Steve Wills <swills@FreeBSD.org>
* Steve Wills <swills@rubick>
* Steven Kreuzer <skreuzer@FreeBSD.org>
* Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
* Sven R <freebsd@hackacad.net>
* Sébastien Santoro <dereckson@gmail.com>
* TAKAHASHI Kaoru <kaoru@kaisei.org>
* TAKATSU Tomonari <tota@FreeBSD.org>
* TAKATSU Tomonari <tota@rtfm.jp>
* TERAMOTO Masahiro <markun@onohara.to>
* Thierry Thomas <thierry@FreeBSD.org>
* Thierry Thomas <thierry@pompo.net>
* Thomas Gellekum <tg@FreeBSD.org>
* Thorsten Greiner <thorsten.greiner@web.de>
* Tilman Linneweh <arved@FreeBSD.org>
* Timothy Beyer <beyert@cs.ucr.edu>
* Timur Bakeyev <bat@cpan.org>
* Timur I. Bakeyev <timur@gnome.org>
* Toby Allsopp <toby@mi6.gen.nz>
* Tom Judge <tj@FreeBSD.org>
* Tom Judge <tom@tomjudge.com>
* Tom Sparks <tsparks@appliedops.net>
* Tomoyuki Sakurai <cherry@trombik.org>
* Torsten Zuehlsdorff <ports@toco-domains.de>
* Torsten Zuehlsdorff <tz@FreeBSD.org>
* Travis Campbell <hcoyote@ghostar.org>
* Tsung-Han Yeh <snowfly@yuntech.edu.tw>
* Ulrich Spoerlein <uqs@FreeBSD.org>
* Ulrich Spoerlein <uspoerlein@gmail.com>
* Uwe Pierau <uwe.pierau@tu-clausthal.de>
* Vadim Vatlin
* Vany <ivan@serezhkin.com>
* Vasek Balcar <vasek@ti.cz>
* Veniamin Gvozdikov <vg@FreeBSD.org>
* Vidar Karlsen <vidar@karlsen.tech>
* Vivek Khera <vivek@khera.org>
* Volker Stolz <vs@FreeBSD.org>
* Vsevolod Stakhov <vsevolod@highsecure.ru>
* Waitman Gobble <waitman@waitman.net>
* Wen Heping <wen@FreeBSD.org>
* Wen Heping <wenheping@gmail.com>
* Wen Heping<wen@FreeBSD.org>
* Will Andrews <will@FreeBSD.org>
* William Grzybowski <wg@FreeBSD.org>
* Xavier Humbert <xavier@amdh.fr>
* Xin LI <delphij@FreeBSD.org>
* Yarema <yds@CoolRat.org>
* Yarema <yds@Necessitu.de>
* Yen-Ming Lee <leeym@FreeBSD.org>
* Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
* Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
* Ying-Chieh Liao <ijliao@FreeBSD.org>
* Ying-Chieh Liao <ijliao@csie.nctu.edu.tw>
* Yinghong Liu <relaxbsd@gmail.com>
* Yinghong.Liu <relaxbsd@gmail.com>
* Yoshiro MIHIRA <sanpei@sanpei.org>
* Yoshiro MIHIRA <sanpei@yy.cs.keio.ac.jp>
* Yuan-Chung Hsiao <ychsiao@ychsiao.org>
* Yukihiro Nakai <Nakai@technologist.com>
* Yuri Pankov <yuri.pankov@gmail.com>
* Yuri Victorovich <yuri@rawbw.com>
* Zane C. Bowers-Hadley <vvelox@vvelox.net>
* Zeus Panchenko <zeus@gnu.org.ua>
* Zhen REN <bg1tpt@gmail.com>
* Zhihao Yuan <lichray@gmail.com>
* ache
* andreas@marvin.robin.de
* andrey@kostenko.name
* anholt@FreeBSD.org
* antoine@FreeBSD.org
* arved
* b.f. <bf@FreeBSD.org>
* bf@FreeBSD.org
* brett@peloton.physics.montana.edu
* buganini@gmail.com
* chinsan
* chinsan <chinsan.tw@gmail.com>
* chinsan <chinsan@mail2000.com.tw>
* clsung
* clsung@dragon2.net
* dannyman <dannyman@tellme.com>
* dd
* domi@saargate.de
* eivind
* eric
* faber@lunabase.org
* fenner
* fenner@FreeBSD.org
* gahr
* gugabsd <gugabsd@mundounix.com.br>
* gurkan@phys.ethz.ch
* ijliao
* jabley@automagic.org
* janos.mohacsi@bsd.hu
* jfieber
* jkoshy
* john@zoner.org
* jupengfei <jupengfei@gmail.com>
* kai
* kevit
* king@v2project.com
* kuriyama
* lars.eggert@gmx.net
* lbartoletti <lbartoletti@FreeBSD.org>
* lofi@FreeBSD.org
* lth@FreeBSD.org
* mainland@apeiron.net
* mandree@FreeBSD.org
* markm@FreeBSD.org
* meyser@xenet.de
* mike
* milki <milki@rescomp.berkeley.edu>
* nectar
* nik
* nivit@users.sourceforge.net
* nork@FreeBSD.org
* paulh@logicsquad.net
* petef@databits.net
* peter.schuller@infidyne.com
* philip@p6m7g8.com
* ports@c0decafe.net
* reed@pugetsoundtechnology.com
* rfarmer@predatorlabs.net
* risner@stdio.com
* scheidell@secnap.net
* shige
* skreuzer
* snowchyld
* steve
* sumikawa@FreeBSD.org
* sumikawa@kame.net
* thierry@pompo.net
* tj@FreeBSD.org
* trasz
* trevor
* vanilla
* wen@FreeBSD.org
* wosch
* znerd@FreeBSD.org
With hat: portmgr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).
A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.
These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,
Approved by: portmgr (implicit)
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
|
|
|
|
|
| |
groff silently links to iconv from ports, declare properly the
dependency
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=517376
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=513559
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=512436
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
Notes:
svn path=/head/; revision=502263
|
|
|
|
|
|
|
|
|
| |
Fix plist when URWFONTS is disabled
Reported by: Zeus Panchenko <zeus@ibs.dn.ua>
Notes:
svn path=/head/; revision=499077
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
Notes:
svn path=/head/; revision=499075
|
|
|
|
|
|
|
|
|
| |
checking whether printf survives out-of-memory conditions...
PR: 224740
Notes:
svn path=/head/; revision=491535
|
|
|
|
| |
Notes:
svn path=/head/; revision=488516
|
|
|
|
| |
Notes:
svn path=/head/; revision=488509
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=484628
|
|
|
|
|
|
|
|
|
| |
Ghostscript.
Reported by: antoine
Notes:
svn path=/head/; revision=472296
|
|
|
|
|
|
|
|
|
| |
tag to webpage-17.html plist entry.
PR: 220196, 220856
Notes:
svn path=/head/; revision=447656
|
|
|
|
|
|
|
|
|
|
| |
PR: 220731
Pointy hat to: linimon (r441879 acted on obsolete logs)
Submitted by: mikael.urankar@gmail.com
Approved by: maintainer timeout (2 weeks)
Notes:
svn path=/head/; revision=447170
|
|
|
|
|
|
|
|
|
|
|
| |
"install_error".
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=441879
|
|
|
|
|
|
|
|
|
|
| |
Small cleanups
Take maintainership
Reviewed by: uqs (previous maintainer)
Notes:
svn path=/head/; revision=441842
|
|
|
|
|
|
|
|
|
|
|
|
| |
/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
Notes:
svn path=/head/; revision=417489
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=413184
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=412349
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
Notes:
svn path=/head/; revision=411798
|
|
|
|
|
|
|
| |
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=395337
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
enabled when the library is available.
This depends on *-base (RUN_DEPENDS). USES=ghostscript:x11
will set dependency on one of them.
- Fix integer overflow reported as CVE-2015-3228.
- Update Uses/ghostscript.mk:
* Add x11 keyword. nox11 keyword is now obsolete.
* Use packagename in *_DEPENDS line to prevent relationship between
-base and -x11 packages from being broken.
- Fix x11/nox11 keyword and bump PORTREVISION in ports using
USES=ghostscript to update dependency of pre-compiled packages.
Notes:
svn path=/head/; revision=395047
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=392322
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
Notes:
svn path=/head/; revision=386312
|
|
|
|
| |
Notes:
svn path=/head/; revision=383574
|
|
|
|
|
|
|
|
|
|
| |
- Maintainer's timeout (uqs@FreeBSD.org)
PR: 198593
Submitted by: Shun <shun.fbsd.pr@dropcut.net>
Notes:
svn path=/head/; revision=382703
|
|
|
|
| |
Notes:
svn path=/head/; revision=372605
|
|
|
|
|
|
|
| |
Submitted by: Phil Pennock <phil.pennock@spodhuis.org>
Notes:
svn path=/head/; revision=360737
|
|
|
|
|
|
|
|
|
| |
PR: 189654
Submitted by: paul inetstat net
Approved by: maintainer
Notes:
svn path=/head/; revision=358580
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=352986
|
|
|
|
|
|
|
| |
Approved by: beat (mentor)
Notes:
svn path=/head/; revision=342052
|
|
|
|
|
|
|
| |
MFH 2014Q1
Notes:
svn path=/head/; revision=340831
|
|
|
|
|
|
|
| |
textproc)
Notes:
svn path=/head/; revision=327773
|
|
|
|
| |
Notes:
svn path=/head/; revision=327459
|
|
|
|
|
|
|
|
|
| |
- shift license for portlint
Approved by: maintainer, uqs@
Notes:
svn path=/head/; revision=316701
|