101 Commits

Author SHA1 Message Date
Älven
3b1b14f872
comms/hamlib: Update 4.6.4 => 4.6.5, improve port
Changelogs:
* https://github.com/Hamlib/Hamlib/blob/4.6.5/NEWS
* https://github.com/Hamlib/Hamlib/compare/4.6.4...4.6.5

* Clarify LICENSEs
* Add STATIC option
* Make DOCS option really work
* Pet portclippy(1) and portfmt(1)

PR:		289738
Co-authored by:	je3kmz@
Approved by:	hamradio@ (alven@, yuri@)
Approved by:	yuri@ (Mentor)

Differential Revision: https://reviews.freebsd.org/D52669
2025-09-28 16:46:16 +04:00
Baptiste Daroussin
324879be22 comms/xlog: do not package mime database
mime database is handled system wide via the trigger in the
shared-mime-info package!

Despite upstream clearly stating in its INSTALL file that Linux and BSD
packagers should not use --enable-mime-update, it was added to this
port. Remove it to get back to a sane handling of the mime database.
2025-09-04 10:23:42 +02:00
Diane Bruce
83433aa47e comms/xlog: update to 2.0.25
* Changes for xlog version 2.0.25 - 2024-Sep-16
  * Rename icon files and copy to proper directories (thanks Daniel OK2VLK)
  * Updated cty.dat 20240914 (cty-3432)

PR:		286171
Reported by:	Älven <alster@vinterdalen.se>
2025-04-20 14:16:56 -04:00
Charlie Li
e87d8134a3
gnome.mk: rename gdkpixbuf2 to gdkpixbuf to prepare for port move
The GTK 1-based gdk-pixbuf has not existed for some time.

No functional or package changes.
2025-03-17 00:02:08 -04:00
Rene Ladan
4485bd8221 all: drop support for expired FreeBSD 14.0
Simplify expressions for FreeBSD 13.X

Reviewed by:	many

Differential Revision:	https://reviews.freebsd.org/D46601
2024-10-01 20:56:20 +02:00
Charlie Li
126b33fb2c
comms/xlog: undeprecate and unexpire
xlog is still a widely-used open source logging software in amateur
radio.

Assign to hamradio@
2024-03-18 07:47:19 -04:00
Muhammad Moinur Rahman
67a5cc8e6f
comms/xlog: Mark DEPRECATED
- Uses upstream EOL gtk2 libraries
- Set EXPIRATION_DATE 2024-12-31

If someone needs this port feel free to undeprecate and takeover
maintainership.
2024-03-17 15:15:16 +01:00
Muhammad Moinur Rahman
cad4b8f20b comms/xlog: Impelled to share/man 2024-01-24 11:20:15 +01:00
Muhammad Moinur Rahman
9b178ffd7e */*: llvm15 build fixes
llvm15 was also merged into 13.2-STABLE effective from OSVERSION
1302505. Fix the ports that failed to build with llvm15.

Approved by:	portmgr (blanket)
2023-05-17 18:30:15 +02:00
Muhammad Moinur Rahman
7402592f93 comms/xlog: Unbreak on HEAD
- Pet portclipy
- Adopt port
2023-05-13 16:24:16 +02:00
Tobias C. Berner
fa81a4f5f8 accessibility/at-spi2-core: update to 2.46.0
What's new in at-spi2-core 2.46.0:
* Fix GetInterfaces documentation on org.a11y.atspi.Accessible
  interface.

What's new in at-spi2-core 2.45.91:
* Send device event controller events using the same signature as other
  events.
* Document the Accessible, Action, and Cache dbus interfaces.
* Fix license of atspi-gmain.c (#87).

What's new in at-spi2-core 2.45.90:
* xml: Add some documentation.
* xml: Fix event arguments.
* xml: Add some missing DeviceEventController methods.
* Bind the AT-SPI bus to the graphical session.
* Mark bus service as belonging to the session slice.
* Add ATSPI_ROLE_PUSH_BUTTON_MENU.
* Add an "announcement" event/signal to allow objects to send
  notifications (!63).
* Various code clean-ups and test improvements.

What's new in at-spi2-core 2.45.1:
* Atk and at-spi2-atk are now merged into this project.
* Now requires meson 0.56.2 and glib 2.67.4.
* at-spi2-atk: Expose the accessible hierarchy via dbus introspection.
* Properly escape the AT-SPI bus address; fixes warnings about the address
  not containing a colon (!55).
* Add a text value to AtspiValue, so that a value can expose a textual
  description, as in the new Atk value API.
* Add atspi_event_listener_register_with_app, to allow an event listener
  to be registered only for a given application (!52).

- accessibility/atk and accessibility/at-spi2-atk have been merged into
  accessibility/at-spi2-core

- accessibility/at-spi2-core: bump consumers of removed ports atk and at-spi2-atk

PR:		269704
Exp-run by:	antoine
---
2023-03-02 06:23:10 +01:00
Stefan Eßer
fb16dfecae 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)
2022-09-07 23:58:51 +02:00
Stefan Eßer
b7f05445c0 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.

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)
2022-09-07 23:10:59 +02:00
Tobias C. Berner
258a98847e comms: remove 'Created by' lines
A big Thank You to the original contributors of these ports:

  *  'Big Bad Bob' Frazier <bobf@mrp3.com>
  *  <mr@freebsd.org>
  *  Alex Samorukov <samm@freebsd.org>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Anders Nordby <anders@FreeBSD.org>
  *  Andreas Klemm <andreas@klemm.gtn.com>
  *  Andrew Dolgov <fox@furry.spb.ru>
  *  Andrey Lykhin <lan31@inbox.ru>
  *  Anton Voronin <anton@urc.ac.ru>
  *  Brandon S. Allbery KF8NH <allbery@ece.cmu.edu>
  *  Brian Dean <bsd@FreeBSD.org>
  *  Bruce Cran <bruce@cran.org.uk>
  *  Carl Makin <carl@stagecraft.cx>
  *  Darren <igla@batterybackups.net>
  *  David
  *  David O'Brien <obrien@cs.ucdavis.edu>
  *  David Thiel <lx@redundancy.redundancy.org>
  *  Denis Shaposhnikov <dsh@vlink.ru>
  *  Devon H. O'Dell <devon.odell@coyotepoint.com>
  *  Diane Bruce <db@db.net>
  *  Douglas K. Rand <rand@meridian-enviro.com>
  *  Edward Tomasz Napierala <trasz@FreeBSD.org>
  *  Emanuel Haupt <ehaupt@FreeBSD.org>
  *  Felix Palmen <felix@palmen-it.de>
  *  Frank Steinborn <steinex@nognu.de>
  *  Ganael Laplanche <ganael.laplanche@martymac.org>
  *  George Reid <greid@ukug.uk.freebsd.org>
  *  Hye-Shik Chang <perky@fallin.lv>
  *  Janos.Mohacsi@bsd.hu
  *  Jean-Baptiste Quenot <jb.quenot@caraldi.com>
  *  Jeffrey Baitis <jeff@baitis.net>
  *  Johan Strom <johan@stromnet.se>
  *  Johan Strom <johna@stromnet.se>
  *  Jui-Nan Lin <jnlin@freebsd.cs.nctu.edu.tw>
  *  Julian Stacey <jhs@FreeBSD.org>
  *  Kirill Bezzubets <kirill@solaris.ru>
  *  MITA Yoshio <mita@FreeBSD.org>
  *  Markus Brueffer <markus@FreeBSD.org>
  *  Martin Matuska <mm@FreeBSD.org>
  *  Martin Wilke <miwi@FreeBSD.org>
  *  Masafumi NAKANE <max@FreeBSD.org>
  *  Matt Dawson <matt@mattsnetwork.co.uk>
  *  Maxim Sobolev <sobomax@FreeBSD.org>
  *  Michael Reifenberger (mike@Reifenberger.com)
  *  Mike Heffner <mikeh@FreeBSD.org>
  *  Nick Sayer <nsayer@FreeBSD.org>
  *  Nicole Reid <root@cooltrainer.org>
  *  Olivier Cochard-Labbe <olivier@FreeBSD.org>
  *  Patrick Gardella <patrick@FreeBSD.org>
  *  Paul Traina <pst@FreeBSD.org>
  *  Pav Lucistnik <pav@FreeBSD.org>
  *  Rick Elrod <codeblock@eighthbit.net>
  *  Rodrigo Osorio <rodrigo@FreeBSD.org>
  *  Sebastian Yepes <esn@x123.info>
  *  Staffan Ulfberg <staffanu@multivac.fatburen.org>
  *  Stephen Hurd <shurd@FreeBSD.org>
  *  Steve Woodford <scw@netbsd.hut.fi>
  *  Steven Kreuzer <skreuzer@FreeBSD.org>
  *  Sunry Chen <sunrychen@gmail.com>
  *  Søren Straarup <xride@x12.dk>
  *  Tony Shadwick <tshadwick@oss-solutions.com>
  *  Tsung-Han Yeh <snowfly@yuntech.edu.tw>
  *  Vladimir Grebenschikov
  *  Vladimir Kondratyev <wulf@FreeBSD.org>
  *  db
  *  dirkx@webweaving.org
  *  dom@happygiraffe.net
  *  elbarto@ArcadeBSD.org
  *  hm
  *  jmz
  *  joes@seaport.net
  *  lambert@lambertfam.org
  *  nox@FreeBSD.org
  *  obrien@cs.ucdavis.edu
  *  rkw
  *  shurd
  *  shurd@FreeBSD.org
  *  wlloyd@slap.net
  * //www.tomek.cedro.info)

With hat:	portmgr
2022-07-20 16:21:01 +02:00
Daniel Engberg
1eda5f7723 comms/xlog: Update to 2.0.24
Changelog: http://xlog.nongnu.org/xlog.changelog
This fixes compilation issue reported by pkg-fallout

Reported by:	pkg-fallout
2022-01-02 12:31:43 +01:00
Danilo Egea Gondolfo
e01a4de40a comms/xlog: Update to 2.0.22
Drop maintainership.
2021-05-12 22:27:10 +01:00
Mathieu Arnold
305f148f48
Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
Danilo Egea Gondolfo
4bdf61631a - Update to 2.0.19 2020-08-12 16:34:39 +00:00
Piotr Kubaj
54f96e5584 comms/xlog: fix build on GCC architectures
Use newer compiler:
cc1: error: unrecognized command line option "-Wno-stringop-truncation"

Approved by:	mentors (implicit approval)
2019-10-14 12:04:52 +00:00
Danilo Egea Gondolfo
59d5b7ee20 - Update to 2.0.17
- Add gnome to USES
2019-01-21 22:45:00 +00:00
Danilo Egea Gondolfo
fd8d4198f3 - Update to 2.0.15 2017-12-26 22:45:33 +00:00
Danilo Egea Gondolfo
2f994b8369 - Update to 2.0.14
- Declare some dependencies explicitly (Q/A)
2016-12-14 18:27:01 +00:00
Dmitry Marakasov
1d1f878054 - Fix trailing whitespace in pkg-descrs, categories [a-f]*
Approved by:	portmgr blanket
2016-05-19 10:21:23 +00:00
Mathieu Arnold
7f4572eae4 Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 13:29:15 +00:00
Dmitry Marakasov
03b1d17156 - Add LICENSE_FILE
- Fix build by linking with libm
2015-10-05 20:36:46 +00:00
Mathieu Arnold
60d1a83c2a 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
2015-05-14 10:15:04 +00:00
Danilo Egea Gondolfo
ad11804c6c - Update to 2.0.13 2015-04-23 13:52:39 +00:00
Max Brazhnikov
23bb6e4584 Fix DESKTOP_ENTRIES:
- Icon field must be either absolute path or icon name if installation follows Icon Theme Specification
- Remove invalid categories
- StartupNotify field must be literally false/true, not ${FALSE}/${TRUE}
2015-02-27 16:30:40 +00:00
Baptiste Daroussin
2c8db67726 Cleanup plist 2014-10-20 09:31:33 +00:00
Antoine Brodin
228ab58873 Change INSTALL_DATA to install with mode 644
Remove patches and hacks that were used to work around the previous
situation
This allows to stage more ports as a regular user

Differential Revision:	https://reviews.freebsd.org/D703
Reviewed by and discussed with:	bapt
With hat:	portmgr
2014-09-04 19:26:24 +00:00
Danilo Egea Gondolfo
117e4c5841 - Update from 2.0.11 to 2.0.12
- Mute REINPLACE_CMD
2014-04-02 13:16:51 +00:00
Danilo Egea Gondolfo
096caf2a9c - Update from 2.0.10 to 2.0.11
- Add shared-mime-info to USES
2013-11-18 04:45:57 +00:00
Danilo Egea Gondolfo
4f06a5c8d6 - Change maintainer email to @FreeBSD.org
- Convert LIB_DEPENDS to new syntax
- Add stage support
- Update pkg-descr

Approved by:	wg/culot (mentors, implicit)
2013-10-07 01:36:43 +00:00
Baptiste Daroussin
2b300eeb3f Add NO_STAGE all over the place in preparation for the staging support (cat: comms) 2013-09-20 16:03:29 +00:00
Baptiste Daroussin
db7a56d5ed Add an explicit dependency on pkgconf 2013-09-03 06:36:41 +00:00
William Grzybowski
8f805c6c15 comms/xlog: update to 2.0.10
- Update to 2.0.10

Changes: http://xlog.nongnu.org/xlog.changelog

PR:		ports/180975
Submitted by:	Danilo Egêa Gondolfo <danilogondolfo gmail.com> (maintainer)
2013-08-01 14:52:58 +00:00
Jason Helfman
998b4e520e - update to 2.0.9
- trim master_sites

PR:		180749
Submitted by:	danilogondolfo@gmail.com (maintainer)
2013-07-23 07:55:58 +00:00
Jason Helfman
0622b55e58 - update to 2.0.8
- Fix options
- pass maintainership to sumbmitter
- while here convert to options_sub routines, and shorten master_sites

PR:		180041
Submitted by:	danilogondolfo@gmail.com
2013-06-28 03:02:51 +00:00
Boris Samorodov
5aec02d2b6 Put LICENSE at apropriate position. 2013-06-20 15:31:48 +00:00
Ryan Steinmetz
7e8fe2b65f - Reset maintainer due to fatal email bounce
Reported by:	portscout
2013-06-18 13:52:06 +00:00
Baptiste Daroussin
9ff06b3cbf Convert a bunch of ports from WITHOUT_NLS -> ${PORT_OPTIONS:MNLS}
While here:
- trim headers
- convert to new options framework
2013-04-29 22:27:05 +00:00
Alex Kozlov
e159824929 - Convert USE_GETTEXT to USES (part 3)
Approved by:	portmgr (bapt)
2013-04-24 18:10:30 +00:00
Dirk Meyer
2b74a89bc8 - update png to 1.5.10 2012-06-01 05:26:28 +00:00
Diane Bruce
9918dddc79 - comms/xlog fix distfile locations and update WWW
PR:		ports/155132
Submitted by:	Maintainer
2011-02-28 23:11:17 +00:00
Sylvio Cesar Teixeira
7dc8f38925 - Update to 2.0.5
PR:		ports/155009
Submitted by:	Matt Dawson <matt@chronos.org.uk> (maintainer)
2011-02-28 18:48:03 +00:00
Martin Wilke
8d9a6cc77e Remove md5 and add LICENSE
PR:		154307
Submitted by:	Matt Dawson <matt@chronos.org.uk> (maintainer)
Feature safe:	yes
2011-02-05 05:15:11 +00:00
Pav Lucistnik
8943ddd8be - Update to 2.0.4
PR:		ports/151809
Submitted by:	Matt Dawson <matt@chronos.org.uk> (maintainer)
2010-10-29 13:06:41 +00:00
Ade Lovett
8d837132c7 Bounce PORTREVISION for gettext-related ports. Have fun, ya'll. 2010-05-31 02:01:56 +00:00
Dirk Meyer
de78af3ac5 - update to 1.4.1
Reviewed by:	exp8 run on pointyhat
Supported by:	miwi
2010-03-28 06:47:48 +00:00
Dirk Meyer
ca9c60461c - update to jpeg-8 2010-02-05 11:46:55 +00:00