notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: graphics/ufraw/Makefile

Number of commits found: 111 (showing only 100 on this page)

1 | 2  »  

Monday, 4 Mar 2024
09:50 Rodrigo Osorio (rodrigo) search for other commits by this committer
graphics/ufraw: moved manpages to share/man

Set GNU_CONFIGURE_MANPREFIX and fix plist
Fix formatting to make linters happy
commit hash: a810370066adf6a2532992837d1672c2d1d4fe15 commit hash: a810370066adf6a2532992837d1672c2d1d4fe15 commit hash: a810370066adf6a2532992837d1672c2d1d4fe15 commit hash: a810370066adf6a2532992837d1672c2d1d4fe15 a810370
Friday, 3 Nov 2023
14:05 Rodrigo Osorio (rodrigo) search for other commits by this committer
*/*: Update WWW to use HTTPS for sourceforge.net projects

Homepage link is permanent redirected to its HTTPS counterpart
commit hash: da665df3210e964c46f2ba9ee9fb6fd3fc916dd4 commit hash: da665df3210e964c46f2ba9ee9fb6fd3fc916dd4 commit hash: da665df3210e964c46f2ba9ee9fb6fd3fc916dd4 commit hash: da665df3210e964c46f2ba9ee9fb6fd3fc916dd4 da665df
Friday, 28 Jul 2023
17:13 Daniel Engberg (diizzy) search for other commits by this committer
*/*: Bump jpeg-turbo users treewide

New major version 3.0.0
commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f 664a2fa
Sunday, 9 Jul 2023
22:08 Matthias Andree (mandree) search for other commits by this committer
graphics/ufraw: make compatible with exiv2 0.28

PR:		272311
commit hash: 0e4d3e69d22d89c1e0972f90bab859473c3935ca commit hash: 0e4d3e69d22d89c1e0972f90bab859473c3935ca commit hash: 0e4d3e69d22d89c1e0972f90bab859473c3935ca commit hash: 0e4d3e69d22d89c1e0972f90bab859473c3935ca 0e4d3e69
Thursday, 18 May 2023
11:39 Dimitry Andric (dim) search for other commits by this committer
graphics/ufraw: fix build with clang 16

Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because graphics/ufraw's configure scripts and Makefiles do not
explicitly set the C++ standard, this leads to several errors:

  /usr/local/include/lcms2.h:1291:44: error: ISO C++17 does not allow 'register'
storage class specifier [-Wregister]
  typedef cmsInt32Number (* cmsSAMPLER16)   (CMSREGISTER const cmsUInt16Number
In[],
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1292:44: error: ISO C++17 does not allow 'register'
storage class specifier [-Wregister]
                                             CMSREGISTER cmsUInt16Number Out[],
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1293:44: error: ISO C++17 does not allow 'register'
storage class specifier [-Wregister]
                                             CMSREGISTER void * Cargo);
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1295:44: error: ISO C++17 does not allow 'register'
storage class specifier [-Wregister]
  typedef cmsInt32Number (* cmsSAMPLERFLOAT)(CMSREGISTER const cmsFloat32Number
In[],
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1296:44: error: ISO C++17 does not allow 'register'
storage class specifier [-Wregister]
                                             CMSREGISTER cmsFloat32Number Out[],
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^
  /usr/local/include/lcms2.h:1297:44: error: ISO C++17 does not allow 'register'
storage class specifier [-Wregister]
                                             CMSREGISTER void * Cargo);
                                             ^~~~~~~~~~~~
  /usr/local/include/lcms2.h:158:23: note: expanded from macro 'CMSREGISTER'
  #  define CMSREGISTER register
                        ^

Specifically for lcms2.h, adding -DCMS_NO_REGISTER_KEYWORD to CPPFLAGS
would be enough, but graphics/ufraw also pulls in exiv2 headers which
make use of std::auto_ptr, another construct that has been removed from
C++17.

Add USE_CXXSTD=gnu++98 to compile for C++98 with GNU extensions instead.

PR:		271424
Approved by:	portmgr (build fix blanket)
MFH:		2023Q2
commit hash: 3792a424426e3174db35a7fff23815baa25d3b8c commit hash: 3792a424426e3174db35a7fff23815baa25d3b8c commit hash: 3792a424426e3174db35a7fff23815baa25d3b8c commit hash: 3792a424426e3174db35a7fff23815baa25d3b8c 3792a42
Tuesday, 2 May 2023
16:17 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/jasper: Update to 4.0.0

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/jasper-software/jasper/releases
Security:	CVE-2022-2963, CVE-2022-40755
commit hash: b1c370eb31887dff78e3eafc278d3b2b6cd06b24 commit hash: b1c370eb31887dff78e3eafc278d3b2b6cd06b24 commit hash: b1c370eb31887dff78e3eafc278d3b2b6cd06b24 commit hash: b1c370eb31887dff78e3eafc278d3b2b6cd06b24 b1c370e
Thursday, 2 Mar 2023
05:23 Tobias C. Berner (tcberner) search for other commits by this committer
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
---
commit hash: fa81a4f5f8ed2bc2104eca4ebbb1b69731bae2e8 commit hash: fa81a4f5f8ed2bc2104eca4ebbb1b69731bae2e8 commit hash: fa81a4f5f8ed2bc2104eca4ebbb1b69731bae2e8 commit hash: fa81a4f5f8ed2bc2104eca4ebbb1b69731bae2e8 fa81a4f
Friday, 30 Dec 2022
09:04 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Update to 4.2.0

- Convert REINPLACE_CMD to patch file
- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
commit hash: e73ed31d9f444ad5a59d89f6651a35a0bc18629a commit hash: e73ed31d9f444ad5a59d89f6651a35a0bc18629a commit hash: e73ed31d9f444ad5a59d89f6651a35a0bc18629a commit hash: e73ed31d9f444ad5a59d89f6651a35a0bc18629a e73ed31
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
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)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 20 Jul 2022
14:22 Tobias C. Berner (tcberner) search for other commits by this committer
graphics: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  "Waitman Gobble" <uzimac@da3m0n8t3r.com>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Abel Chow <ozsanh45vds001@sneakemail.com>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Ade Lovett <ade@FreeBSD.org>
  *  Ade Lovett <ade@lovett.com>
  *  Akinori MUSHA aka knu <knu@idaemons.org>
  *  Aldis Berjoza <aldis@bsdroot.lv>
  *  Alex Hayward <xelah@xelah.com>
  *  Alex Ivasyuv <siegerstein@pochta.ru>
  *  Alex Samorukov <samm@os2.kiev.ua>
  *  Alexander Gromnitsky
  *  Alexander Kojevnikov <alexander@kojevnikov.com>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexander Nedotsukov <bland@FreeBSD.org>
  *  Alexander Nedotsukov <bland@mail.ru>
  *  Alexander Y. Grigoryev <alexander.4mail@gmail.com>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Alonso Cardenas Marquez <acm@FreeBSD.org>
  *  Anatoliy Dmytriyev <tolid@plab.ku.dk>
  *  Anatoly Borodin <anatoly.borodin@gmail.com>
  *  Anders Nordby <anders@fix.no>
  *  Andras Horvath <han@log69.com>
  *  Andreas Daehn <ad001@uni-rostock.de>
  *  Andrew Pantyukhin <infofarmer@FreeBSD.org>
  *  Andrey Slusar <anray@FreeBSD.org>
  *  Andrey Zakhvatov
  *  Anes Mukhametov <anes@anes.su>
  *  Anonymous <swell.k@gmail.com>
  *  Anton Berezin <tobez@FreeBSD.org>
  *  Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
  *  Arjan van Leeuwen <avleeuwen@piwebs.com>
  *  Ashish SHUKLA <ashish@FreeBSD.org>
  *  Bill Fumerola <billf@chc-chimes.com>
  *  Björn König <bkoenig@alpha-tierchen.de>
  *  Brad Hendrickse <bradh@iafrica.com>
  *  Bruce M Simpson <bms@FreeBSD.org>
  *  Carlos Eduardo G. Carvalho <cartola@openit.com.br>
  *  Charlie Kester <corky1951@comcast.net>
  *  Choe, Cheng-Dae
  *  Choe, Cheng-Dae <whitekid@gmail.com>
  *  Chris D. Faulhaber <jedgar@FreeBSD.org>
  *  Chris D. Faulhaber <jedgar@fxp.org>
  *  Chris Piazza <cpiazza@FreeBSD.org>
  *  Christopher Key <cjk32@cam.ac.uk>
  *  Chuck Robey <chuckr@FreeBSD.org>
  *  Corey Smith <corsmith@gmail.com>
  *  Dan Langille <dvl@FreeBSD.org>
  *  Daniel O'Connor <darius@dons.net.au>
  *  Daniel Roethlisberger <daniel@roe.ch>
  *  Danilo Egea Gondolfo <danilo@FreeBSD.org>
  *  Dave Cottlehuber <dch@skunkwerks.at>
  *  David Bremner <bremner@unb.ca>
  *  David Gilbert <dgilbert@velocet.ca>
  *  David Naylor <dbn@FreeBSD.org>
  *  David Yeske <dyeske@gmail.com>
  *  Denis Barov <dindin@dindin.ru>
  *  Denis Podolskiy <bytestore@yandex.ru>
  *  Dennis Herrmann <adox@mcx2.org>
  *  Devaux Fabien <fab@gcu.info>
  *  Dmitry Sivachenko <dima@Chg.RU>
  *  Dominik Brettnacher <domi@nonsensss.de>
  *  Donn Miller <dmmiller@cvzoom.net>
  *  Douglas Carmichael <dcarmich@mcs.com>
  *  Douglas K. Rand <rand@meridian-enviro.com>
  *  Edwin Groothuis <edwin@mavetju.org>
  *  Emanuel Haupt <ehaupt@FreeBSD.org>
  *  Emanuel Haupt <ehaupt@critical.ch>
  *  Emil J.V. Björsell (Jev)
  *  Emmanuel Vadot <manu@FreeBSD.org>
  *  Eric Anholt <anholt@FreeBSD.org>
  *  Eric Freeman <freebsdports@chillibear.com>
  *  Eric P. Scott <eps+pbug0703@ana.com>
  *  Erwin Lansing <erwin@FreeBSD.org>
  *  Eugene Mychlo <myc@barev.net>
  *  Fernan Aguero <fernan@iib.unsam.edu.ar>
  *  Franz Klammer <klammer@webonaut.com>
  *  FreeBSD GNOME Team <gnome@FreeBSD.org>
  *  G. Adam Stanislav <adam@whizkidtech.net>
  *  Garrett Wollman <wollman@lcs.mit.edu>
  *  Gea-Suan Lin <gslin@gslin.org>
  *  George Reid <greid@ukug.uk.freebsd.org>
  *  Gerrit Beine (<gerrit.beine@gmx.de>)
  *  Gerrit Beine (<tux@pinguru.net>)
  *  Glenn Johnson
  *  Greg Lewis <glewis@FreeBSD.org>
  *  Gustau Perez <gustau.perez@gmail.com>
  *  Gustau Pérez i Querol <gustau.perez@gmail.com>
  *  Gvozdikov Veniamin <g.veniamin@googlemail.com>
  *  Hernan Di Pietro <hernan.di.pietro@gmail.com>
  *  Hiroto Kagotani <hiroto.kagotani@gmail.com>
  *  Horia Racoviceanu <horia@racoviceanu.com>
  *  Hye-Shik Chang <perky@fallin.lv>
  *  Hye-Shik Chang <perky@python.or.kr>
  *  Igor Pokrovsky <ip@doom.homeunix.org>
  *  Igor Pokrovsky <tiamat@comset.net>
  *  James FitzGibbon <jfitz@FreeBSD.org>
  *  Jamie Hermans <jamie@hermans.ca>
  *  Jan Henrik Sylvester <me@janh.de>
  *  Janni
  *  Janos Mohacsi <janos.mohacsi@bsd.hu>
  *  Jason Helfman <jgh@FreeBSD.org>
  *  Jean-Marc Zucconi <jmz@FreeBSD.org>
  *  Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
  *  Jean-Yves Lefort <jylefort@FreeBSD.org>
  *  Jean-Yves Lefort <jylefort@brutele.be>
  *  Jeff Molofee
  *  Jeremy Norris <ishmael127@home.com>
  *  Jeremy Norris <ishmael27@home.com>
  *  Joe Marcus Clarke <marcus@FreeBSD.org>
  *  Johannes Dieterich <jmd@FreeBSD.org>
  *  Johannes Jost Meixner <johannes@perceivon.net>
  *  Johannes Meixner <johannes@perceivon.net>
  *  John Hay
  *  John McAree <john@mcaree.org>
  *  John Prather
  *  John Reynolds <johnjen@reynoldsnet.org>
  *  Joris Dedieu <joris.dedieu@gmail.com>
  *  Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
  *  Jose Jachuf <jjachuf@gmail.com>
  *  Joseph Koshy <koshy@india.hp.com>
  *  Juergen Unger <j.unger@choin.net>
  *  KANOU Hiroki <kanou@mil.allnet.ne.jp>
  *  KIRIYAMA Kazuhiko
  *  Kay Lehmann
  *  Kevin Golding <ports@caomhin.org>
  *  Kimura Fuyuki <fuyuki@hadaly.org>
  *  Koop Mast <kwm@FreeBSD.org>
  *  Kris Kennaway <kris@FreeBSD.org>
  *  Kris Moore <kmoore@FreeBSD.org>
  *  Kubilay Kocak <koobs@FreeBSD.org>
  *  Kurt Kanzenbach <kurt@kmk-computers.de>
  *  Kyle Martin <mkm@ieee.org>
  *  Laurent Courty
  *  Leonardo Martins <lmartins@nepe.eee.ufg.br>
  *  Lev Serebryakov <lev@FreeBSD.org>
  *  Malte Lance <malte.lance@gmx.net>
  *  Marc Fonvieille <blackend@FreeBSD.org>
  *  Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
  *  Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> et al.
  *  Mark Atkinson <atkin901@gmail.com>
  *  Mark Murray <markm@FreeBSD.org>
  *  Mark Pulford <mark@kyne.com.au>
  *  Markus Brueffer <markus@FreeBSD.org>
  *  Martin Dieringer <martin.dieringe@gmx.de>
  *  Martin Dieringer <martin.dieringer@gmx.de>
  *  Martin Matuska <mm@FreeBSD.org>
  *  Martin Neubauer <m.ne@gmx.net>
  *  Martin Sugioarto <martin.sugioarto@udo.edu>
  *  Martin Tournoij <carpetsmoker@rwxrwxrwx.net>
  *  Martin Tournoij <carpetsmoker@xs4all.nl>
  *  Martin Wilke <miwi@FreeBSD.org>
  *  Mateusz Piotrowski <0mp@FreeBSD.org>
  *  Mathieu Arnold
  *  Matthew Luckie <mjl@luckie.org.nz>
  *  Matthew X. Economou <xenophon+fbsdports@irtnog.org>
  *  Matthias Fechner <mfechner@FreeBSD.org>
  *  Matthieu Volat <mazhe@alkumuna.eu>
  *  Maurice Castro <maurice@serc.rmit.edu.au>
  *  Maxim Sobolev <sobomax@FreeBSD.org>
  *  Michael Gmelin <freebsd@grem.de>
  *  Michael Johnson <ahze@FreeBSD.org>
  *  Michael Johnson <ahze@ahze.net>
  *  Michael Nottebrock <lofi@FreeBSD.org>
  *  Michael Reifenberger <mr@FreeBSD.org>
  *  Mike Krutov <neko@takino.org>
  *  Mikhail T. <mi@aldan.algebra.com>
  *  Mikhail Teterin <mi@aldan.algebra.com>
  *  Muhammad Moinur Rahman <5u623l20@gmail.com>
  *  NAKATA Maho <maho@FreeBSD.org>
  *  Naram Qashat <cyberbotx@cyberbotx.com>
  *  Nick Hilliard <nick@foobar.org>
  *  Nicola Vitale <nivit@FreeBSD.org>
  *  Nicola Vitale <nivit@email.it>
  *  Nikolay Korotkiy <sikmir@gmail.com>
  *  Norio Suzuki <nosuzuki@e-mail.ne.jp>
  *  Oliver Heesakkers <dev2@heesakkers.info>
  *  Oliver Lehmann <oliver@FreeBSD.org>
  *  Olivier Duchateau
  *  Paul Everlund
  *  Pav Lucistnik <pav@FreeBSD.org>
  *  Pedro F. Giffuni
  *  Pedro Garcia Freitas <sawp@sawp.com.br>
  *  Pedro Giffuni
  *  Pedro Giffuni <pfg@FreeBSD.org>
  *  Pete Fritchman <petef@FreeBSD.org>
  *  Pete Fritchman <petef@databits.net>
  *  Peter Ankerstal <peter@pean.org>
  *  Peter Jeremy <peterjeremy@optushome.com.au>
  *  Peter Schmiedeskamp <pschmied@qwest.net>
  *  Phil Phillips <pphillips@experts-exchange.com>
  *  Pietro Cerutti <gahr@FreeBSD.org>
  *  Pietro Cerutti <gahr@gahr.ch>
  *  Piotr Kubaj <pkubaj@anongoth.pl>
  *  Piotr Smyrak <smyru@heron.pl>
  *  Piotr Smyrak, piotr.smyrak@heron.pl
  *  Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Quentin Stievenart <acieroid@awesom.eu>
  *  R Joseph Wright <rjoseph@mammalia.org>
  *  Radim Kolar
  *  Rainer Hurling <rhurlin@gwdg.de>
  *  Randall Hopper
  *  Randall Hopper <aa8vb@ipass.net>
  *  Randall Hopper <aa8vb@nc.rr.com>
  *  Reinier de Blois <rddeblois@gmail.com>
  *  Richard Hwang <rhwang@bigpanda.com>, Mikhail Teterin
<mi@aldan.algebra.com>, Jun-ichiro itojun Itoh <itojun@itojun.org>
  *  Rick Elrod <codeblock@eighthbit.net>
  *  Rob Farmer <rfarmer@predatorlabs.net>
  *  Rod Person <rodperson@rodperson.com>
  *  Roland Jesse <roland.jesse@gmx.net>
  *  Romain Tartiere <romain@FreeBSD.org>
  *  Ron van Daal
  *  Ronald Kuehn <rk@ronald.org>
  *  Rong-En Fan <rafan@infor.org>
  *  Rusmir Dusko <nemysis@FreeBSD.org>
  *  Rusty Nejdl <rnejdl@ringofsaturn.com>
  *  Ryan Melcer <rmelcer@iteris.com>
  *  Ryan Steinmetz <zi@FreeBSD.org>
  *  Sahil Tandon <sahil@FreeBSD.org>
  *  Sam Lawrance
  *  Satoshi Asami <asami@FreeBSD.org>
  *  Satoshi Taoka <taoka@FreeBSD.org>
  *  Seiichirou Hiraoka
  *  Serge Negodyuck <petr@petrovich.kiev.ua>
  *  Sergey A. Osokin <osa@FreeBSD.org>
  *  Sergey Skvortsov <skv@protey.ru>
  *  Sergey V. Dyatko <sergey.dyatko@gmail.com>
  *  Shane Ambler
  *  Shaun Amott <shaun@inerd.com>
  *  Shell Hung <shell@shellhung.org>
  *  Shigeyuki FUKUSHIMA <shige@FreeBSD.org>
  *  Simun Mikecin <numisemis@yahoo.com>
  *  Sofian Brabez <sbrabez@gmail.com>
  *  Stanislav Sedov <ssedov@mbsd.msk.ru>
  *  Stanislav Sedov <stas@FreeBSD.org>
  *  Stas Timokhin <devel@stasyan.com>
  *  Stas Timokhin <stast@bsdportal.ru>
  *  Stefan Walter <sw@gegenunendlich.de>
  *  Stephen Roome <steve@pepcross.com>
  *  Steve Wills <steve@meatwad.mouf.net>
  *  Steve Wills <swills@FreeBSD.org>
  *  Steven Kreuzer <skreuzer@FreeBSD.org>
  *  Steven Wallace <swallace@FreeBSD.org>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  TAKAHASHI Kaoru <kaoru@kaisei.org>
  *  TAKATSU Tomonari <tota@FreeBSD.org>
  *  TAKATSU Tomonari <tota@rtfm.jp>
  *  TAOKA Fumiyoshi
  *  TATEISHI Katsuyuki <katsu@iec.hiroshima-u.ac.jp>
  *  Tassilo Philipp <tphilipp@potion-studios.com>
  *  Thibault Payet <monwarez@mailoo.org>
  *  Thierry Thomas <thierry@pompo.net>
  *  Thomas Dreibholz <dreibh@iem.uni-due.de>
  *  Thomas Gellekum <tg@FreeBSD.org>
  *  Thomas Hurst <tom@hur.st>
  *  Tilman Linneweh <arved@FreeBSD.org>
  *  Tim Bishop <tim@bishnet.net>
  *  Tod McQuillin <devin@spamcop.net>
  *  Tomoyuki Sakurai <cherry@trombik.org>
  *  Tsung-Han Yeh <snowfly@yuntech.edu.tw>
  *  UMENO Takashi <umeno@rr.iij4u.or.jp>
  *  Ulrich Spoerlein <q@uni.de>
  *  Vasil Dimov <vd@FreeBSD.org>
  *  Veniamin Gvozdikov <vg@FreeBSD.org>
  *  Vincent Tantardini <vinc@FreeBSD-fr.org>
  *  Vladimir Chukharev
  *  Wen Heping <wen@FreeBSD.org>
  *  Wen Heping <wenheping@gmail.com>
  *  Wen heping <wenheping@gmail.com>
  *  Wen heping<wenheping@gmail.com>
  *  Will Andrews <andrews@technologist.com>
  *  Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
  *  Ying-Chieh Liao <ijliao@FreeBSD.org>
  *  Yinghong Liu <relaxbsd@gmail.com>
  *  Yinghong.Liu <relaxbsd@gmail.com>
  *  Yuan-Chung Hsiao <ychsiao@ychsiao.org>
  *  Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp>
  *  Yukihiro Nakai <nacai@iname.com>
  *  Yukihiro Nakai <nakai@mlab.t.u-tokyo.ac.jp>
  *  Yuri Victorovich <yuri@FreeBSD.org>
  *  Yuri Victorovich <yuri@rawbw.com>
  *  Yuu Yashiki
  *  Yuzo FURUKAWA <hurukawa@kuee.kyoto-u.ac.jp>
  *  Zhihao Yuan <lichray@gmail.com>
  *  Zsolt Udvari <udvzsolt@gmail.com>
  *  ache
  *  alepulver
  *  anhot
  *  antonakis@gmail.com
  *  argv[0] (Iouri V. Ivliev)
  *  arved
  *  asami
  *  bf <bf@FreeBSD.org>
  *  bmc@WillsCreek.COM
  *  buganini@gmail.com
  *  cacho@mexicano.gdl.iteso.mx
  *  cartola (Carlos E. G. Carvalho)
  *  cartola@openit.com.br
  *  cfs@ing.puc.cl (original)
  *  chinsan
  *  chinsan <chinsan.tw@gmail.com>
  *  coryking
  *  cracauer@cons.org "Martin Cracauer"
  *  demon@FreeBSD.org
  *  dillon
  *  dom@happygiraffe.net
  *  erich@FreeBSD.org
  *  fenner
  *  fernan@iib.unsam.edu.ar
  *  frankch@waru.life.nthu.edu.tw
  *  gahr
  *  gary@hotlava.com
  *  gerard
  *  giffunip@asme.org
  *  glebius@FreeBSD.org
  *  gurkan@phys.ethz.ch
  *  hsu
  *  ijliao
  *  jamie
  *  jedgar@FreeBSD.org
  *  jeff@cetlink.net
  *  jjachuf@gmail.com
  *  jmz
  *  johalun
  *  johan
  *  johans
  *  kwm@FreeBSD.org
  *  lbartoletti <lbartoletti@FreeBSD.org>
  *  lesi@FreeBSD.org
  *  lichray@gmail.com
  *  luigi@FreeBSD.org
  *  maho@FreeBSD.org
  *  marcus@FreeBSD.org
  *  mb@imp.ch
  *  mi
  *  mm@FreeBSD.org
  *  nemysis <nemysis@gmx.ch>
  *  nik
  *  nork@FreeBSD.org
  *  olgeni@FreeBSD.org
  *  paulo@isr.uc.pt
  *  petef@FreeBSD.org
  *  pgs
  *  ports@FreeBSD.org
  *  proff@iq.org
  *  punkt.de Hosting Team <mops@punkt.de>
  *  rfarmer@predatorlabs.net
  *  roberto
  *  roland.jesse@gmx.net
  *  rpsfa@rit.edu
  *  saper@system.pl
  *  smace
  *  sobomax
  *  stas
  *  stb@lassitu.de
  *  theraven@FreeBSD.org
  *  thierry@pompo.net
  *  tobez
  *  trasz <trasz@pin.if.uz.zgora.pl>
  *  trevor
  *  vanilla
  *  will
  *  wolman@cs.washington.edu
  *  yukinopo@livedoor.com

With hat:	portmgr
commit hash: 022e658bd10b8753ede87b3dfda087efabddac98 commit hash: 022e658bd10b8753ede87b3dfda087efabddac98 commit hash: 022e658bd10b8753ede87b3dfda087efabddac98 commit hash: 022e658bd10b8753ede87b3dfda087efabddac98 022e658
Wednesday, 8 Jun 2022
20:34 Baptiste Daroussin (bapt) search for other commits by this committer
graphics/ufraw: remove GNOME option

gnome option only served the purpose to instal mime data including
gconf information only useful for gnome2 which is gone.

The mime data information are anyway installed by shared-mime-info
making this option completly unuseful
commit hash: 95e667c0f59c3ea31a3951083d90abe8529b9c9e commit hash: 95e667c0f59c3ea31a3951083d90abe8529b9c9e commit hash: 95e667c0f59c3ea31a3951083d90abe8529b9c9e commit hash: 95e667c0f59c3ea31a3951083d90abe8529b9c9e 95e667c
Saturday, 16 Apr 2022
20:55 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/jasper: Bump PORTREVISION of dependent ports for shlib change after
cdcedd316da6d7c8509c394474160c683489a3ae
commit hash: 735ea04b67c5fe82399afbc9eb1d280d7fd1d7ba commit hash: 735ea04b67c5fe82399afbc9eb1d280d7fd1d7ba commit hash: 735ea04b67c5fe82399afbc9eb1d280d7fd1d7ba commit hash: 735ea04b67c5fe82399afbc9eb1d280d7fd1d7ba 735ea04
Monday, 28 Feb 2022
15:06 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Update to 4.0.0

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
commit hash: d1d14ca3e59f48ada778c1a9dbc754c4186ed76a commit hash: d1d14ca3e59f48ada778c1a9dbc754c4186ed76a commit hash: d1d14ca3e59f48ada778c1a9dbc754c4186ed76a commit hash: d1d14ca3e59f48ada778c1a9dbc754c4186ed76a d1d14ca
Monday, 10 Jan 2022
15:15 Stefan Eßer (se) search for other commits by this committer
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
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)
commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 bcaf25a
Sunday, 29 Aug 2021
16:29 Alexey Dokuchaev (danfe) search for other commits by this committer
Cleanup: for ports under g* categories, drop redundant GH_{ACCOUNT,PROJECT}.
commit hash: 9e9956359dd9947e41a1731f182abbd39114b00c commit hash: 9e9956359dd9947e41a1731f182abbd39114b00c commit hash: 9e9956359dd9947e41a1731f182abbd39114b00c commit hash: 9e9956359dd9947e41a1731f182abbd39114b00c 9e99563
Saturday, 8 May 2021
13:39 Rodrigo Osorio (rodrigo) search for other commits by this committer
graphics/ufraw: Update ufraw configuration

 * Add --enable-jasper option to enable JPEG2000 support
 * Remove old/deprecate elements such as PC_FALSE not used anymore
 * Fix some optional configuration parameters
 * Add post-patch actions to modify configure.ac if some options
   are disabled. For some reasons, even if the option is 'disabled'
   the configure auto activates the the option if the required lib is installed.
 * Add missing dependencies for GIMP option
 * lint with portfmt and portclippy

PR:		255400
Reported by:	rhurlin
commit hash: c6ffec1fc8cfc146ad0eee524653d8a0dd3a487b commit hash: c6ffec1fc8cfc146ad0eee524653d8a0dd3a487b commit hash: c6ffec1fc8cfc146ad0eee524653d8a0dd3a487b commit hash: c6ffec1fc8cfc146ad0eee524653d8a0dd3a487b c6ffec1
Sunday, 25 Apr 2021
10:17 Rodrigo Osorio (rodrigo) search for other commits by this committer
graphics/ufraw: Upgrade to latest version

Major changes:
    * Intagrate multipleple fixes from openSUSE
    * Fix build against glib-2.68
    * ufraw_preview: do now overwrite configuration with preview size
    * ufraw-gimp: properly send EXIF data to Gimp 2.9 and later
    * Suppress compiler warnings on implicit fallthrough
    * ufraw_developer: use fabs() instead of abs() for double
    * Fix GCC 9 OpenMP issues by drop default(none)
    * From Gentoo ufraw-0.17-cfitsio-automagic.patch
    * From Gentoo ufraw-0.22-jasper-automagic.patch
    * From Gentoo ufraw-0.22-jpeg9.patch
    * From Gentoo ufraw-0.22-exiv2-0.27.patch
    * 05_CVE-2018-19655.patch from Debian
    * Prevent crash when camera specified in .ufraw file is not in lensfun db
    * Fix crash on destroy of lensfun object on PEF images

Security:	CVE-2018-19655
MFH:		2021Q2
commit hash: 0e861af1558fee9f258c8ee67e3d48aff151986f commit hash: 0e861af1558fee9f258c8ee67e3d48aff151986f commit hash: 0e861af1558fee9f258c8ee67e3d48aff151986f commit hash: 0e861af1558fee9f258c8ee67e3d48aff151986f 0e861af
Monday, 12 Apr 2021
14:52 Dima Panov (fluffy) search for other commits by this committer
graphics/ufraw: really package gimp plugin

Reported by:	poudriere -t build
commit hash: b83f065d87d6c65f0a2854d9415f5938e876b499 commit hash: b83f065d87d6c65f0a2854d9415f5938e876b499 commit hash: b83f065d87d6c65f0a2854d9415f5938e876b499 commit hash: b83f065d87d6c65f0a2854d9415f5938e876b499 b83f065
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Tuesday, 26 Jan 2021
14:00 sunpoet search for other commits by this committer
Bump PORTREVISION for astro/cfitsio shlib change
Original commitRevision:562668 
Saturday, 30 May 2020
16:43 rodrigo search for other commits by this committer
graphics/ufraw: fix 13-CURRENT build
Bump portrevision

PR:		246382
Submitted by:	cy
Original commitRevision:537094 
Sunday, 26 Jan 2020
04:57 danfe search for other commits by this committer
Chase shlib version bump of `graphics/lensfun' (r524150).
Original commitRevision:524151 
Friday, 27 Dec 2019
13:43 bapt search for other commits by this committer
Update jasper to 2.0.16

This is needed to be able to update gegl to latest version.
Bump revision of all consumer as the ABI is not 100% backward compatible.
Provide a patch for graphics/devil to properly build with latest jasper.
While here add a missing USES=xorg to graphics/devil
Original commitRevision:520989 
Saturday, 27 Jul 2019
11:53 sunpoet search for other commits by this committer
Update to 3.47

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
Original commitRevision:507401 
Friday, 26 Jul 2019
20:46 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
Original commitRevision:507372 
Sunday, 17 Mar 2019
13:14 tcberner search for other commits by this committer
graphics/exiv2: update to 0.27

Changelog:
	http://www.exiv2.org/changelog.html

- All depending ports have been bumped.
- graphics/py-exiv2 has been marked broken; use graphics/gexiv2 for python
bindings

Exp-run by:	antoine
PR:		235943
PR:		234830
Original commitRevision:496059 
Friday, 8 Mar 2019
21:29 tcberner search for other commits by this committer
graphics/ufraw: prepare for exiv2-0.27

Import gentoo's patch:
https://gitweb.gentoo.org/repo/gentoo.git/tree/media-gfx/ufraw/files/ufraw-0.22-exiv2-0.27.patch

PR:		235943
Original commitRevision:495076 
Saturday, 9 Feb 2019
11:04 tobik search for other commits by this committer
graphics/ufraw: Simplify using the GTK2 plist sub already added by OPTIONS_SUB
Original commitRevision:492491 
Thursday, 7 Feb 2019
11:02 rodrigo search for other commits by this committer
Be able to build ufraw without GTK2 option

Add gnome to the uses to make testport happy
Bump portrevision

PR:		234436
Reported by:	Thomas Guymer <t.m.guymer@thomasguymer.co.uk>
Original commitRevision:492359 
Thursday, 20 Dec 2018
05:08 linimon search for other commits by this committer
This port needs USES=compiler:c++11-lang to build on GCC-based architectures.

PR:		233921
Submitted by:	Piotr Kubaj
Approved by:	portmgr (tier-2 blanket)
Original commitRevision:487840 
Sunday, 1 Jul 2018
21:42 rodrigo search for other commits by this committer
Fix graphics/ufraw build for 12.0

Fix code issues who causes build failures
due to missing spaces between literal and identifier.

Bump PORTREVISION.

PR:		229271
Submitted by:	<w.schwarzenfeld@utanet.at>
Original commitRevision:473684 
Thursday, 14 Jun 2018
07:22 ehaupt search for other commits by this committer
- Install .desktop file
- Remove some cruft from Makefile

PR:		228917
Approved by:	rodrigo
Original commitRevision:472362 
Saturday, 28 Apr 2018
06:14 tcberner search for other commits by this committer
Update grahics/exiv2 to 0.26

PR:		223625
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D12345
Original commitRevision:468519 
Tuesday, 3 Apr 2018
22:51 rodrigo search for other commits by this committer
Fix space in the Makefile
Bump PORTREVISION

MFH:		2018Q2
Original commitRevision:466383 
22:47 rodrigo search for other commits by this committer
Move ufraw from sourceforge to github

On the same time recover updates done in development branch and never released
- Add WB for multiple new cameras :
  FUJIFILM X-T2, PENTAX K-1, Panasonic DMC-FZ300/DMC-FZ330,
  Canon PowerShot G7 X Mark II, Canon EOS M10, Canon EOS 700D,
  Canon EOS 80D, NIKON D200, FUJIFILM X-T10, PENTAX K-S2,
  NIKON D5500, NIKON D810, FUJIFILM X100T, Canon PowerShot G5 X,
  Panasonic DMC-LF1, SONY RX10M2, Canon EOS M2, Canon PowerShot S120,
  FUJIFILM X-M1, OLYMPUS E-M10 Mark II, etc
- multiple bug fixes : memory leak, etc

Remove existing patches since they coming from upstream and are now provided
by default in the distfile.

Incorporate the patched made by the debian project, including a fix for the
CVE-2015-8366.

MFH:		2018Q2
Security:	CVE-2015-8366
Original commitRevision:466382 
Friday, 9 Sep 2016
19:42 amdmi3 search for other commits by this committer
Most commonly used build systems support silent builds, when they
hide actual commands executed and only show short summary line (like
"CC foo.c"). CMake and ninja enable this by default, some autotools
using ports do as well. This is unacceptable because we need complete
build logs at any time, so we now switch to verbose build logs
unconditionally. Note that this change deliberately affects ALL
builds and not only package builds on cluster, because we need to
be sure that user experiencing failure can always provide informative
build log regardless of settings and without rerunning the build.

Change summary:

- Always do verbose builds for cmake, ninja and GNU configure (the
  latter includes check if --disable-silent-rules is actually supported
  by the configure script; there are isolated cases when it's not true)
- Remove CMAKE_VERBOSE, NINJA_VERBOSE and
  CONFIGURE_ARGS=--disable-silent-rules from all ports which set them
  for this is no longer needed
- Revert hacks for --disable-silent-rules support priorly committed
  to biology/ncbi-blast+ and net-p2p/mldonkey - no longer needed as well

Submitted by:	amdmi3
Reviewed by:	mat
Exp-run by:	antoine
Approved by:	portmgr (mat, antoine)
Differential Revision:	D7534
Original commitRevision:421635 
Thursday, 25 Aug 2016
14:53 pawel search for other commits by this committer
- Fix build on 12.0-CURRENT, patch was accepted by upstream:
  https://sourceforge.net/p/ufraw/bugs/407/
- Convert to options subs and helpers
- Mark GTK2 option as implied for GIMP, otherwise poudriere build fails

PR:		211735
Submitted by:	myself
Approved by:	maintainer timeout
Original commitRevision:420858 
Wednesday, 27 Jul 2016
10:22 tcberner search for other commits by this committer
Update graphics/exiv2 to 0.25.

As there is an shlib version bump, bump them portrevision of dependent ports.

While doing so, also switch to the cmake build system, as it requires less
patching and is easier to handle.

PR:             211329
Reviewed by:    mat, rakuco, kwm
Approved by:    rakuco (mentor)
Differential Revision:  https://reviews.freebsd.org/D7283
Original commitRevision:419170 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Sunday, 20 Mar 2016
14:35 jbeich search for other commits by this committer
graphics/lensfun: bump PORTREVISION in consumers after r411373
Original commitRevision:411447 
Monday, 17 Aug 2015
21:18 amdmi3 search for other commits by this committer
- Add missing file to plist

Approved by:	portmgr blanket
Original commitRevision:394534 
Monday, 22 Jun 2015
18:33 antoine search for other commits by this committer
Convert to USES=jpeg
Original commitRevision:390310 
Thursday, 18 Jun 2015
23:31 rodrigo search for other commits by this committer
Update ufraw from 0.21 to 0.22
Major changes :
- Upstream fix for CVE-2015-3885
- replace liblcms1 by liblcms2
- lot of new cameras and bugfixes
- better foveon support
Original commitRevision:390087 
Thursday, 14 May 2015
21:27 rodrigo search for other commits by this committer
Upgrade ufraw from 0.19.2 to 0.21
Remove deprecated patches
Apply bugfix for CVE-2015-3885

PR:		200197
obtained from:	rawtherapee
MFH:		2015Q2
Security:	CVE-2015-3885
Original commitRevision:386364 
Wednesday, 25 Mar 2015
20:09 marino search for other commits by this committer
graphics category: Remove $PTHREAD_LIBS

graphics/zbar didn't pass check-plist (pre-existing), fixed.

approved by:	PTHREAD blanket
Original commitRevision:382266 
Thursday, 25 Dec 2014
20:54 bapt search for other commits by this committer
Bump portrevision after png update
Original commitRevision:375598 
19:04 antoine search for other commits by this committer
Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade
Original commitRevision:375594 
Friday, 27 Jun 2014
09:55 rodrigo search for other commits by this committer
Don't copy mkinstalldirs from icu anymore since ufraw carry it's own version

PR:		ports/191422
Submitted by:	rodrigo (maintainer)
Approved by:	bapt (mentor)
Original commitRevision:359489 
Sunday, 4 May 2014
15:37 sunpoet search for other commits by this committer
- Update to 3.360
- Build and install static library
- Bump PORTREVISION for astro/cfitsio shlib change

Changes:	http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
Original commitRevision:352962 
Friday, 25 Apr 2014
10:54 tijl search for other commits by this committer
Like r351970 removed an extra USES+=desktop-file-utils from the Makefile,
also remove the extra update-desktop-database from pkg-plist.
Original commitRevision:352106 
Wednesday, 23 Apr 2014
20:26 mandree search for other commits by this committer
Drop excess USES+=desktop-file-utils under the GNOME option,
which broke the stage-qa target.

Approved by: portmgr (blanket)
Original commitRevision:351970 
Tuesday, 22 Apr 2014
13:41 rodrigo search for other commits by this committer
- fix clang issue caused by incorrect namespacing
- add dependency
- bump portrevision

PR:		ports/188044
Submitted by:	Chris Rees <crees@FreeBSD.org>
Approved by:	bapt (mentor)
Obtained from:	Macports
MFH:		2014Q2
Original commitRevision:351834 
Friday, 4 Apr 2014
20:36 danfe search for other commits by this committer
- Chase libexiv2.so shlib version bump after r350163
- Fix nearby minor style issues while here (not all)

Approved by:	portmgr (bapt), some ports are still NO_STAGE :(
Original commitRevision:350164 
Tuesday, 11 Feb 2014
20:17 marino search for other commits by this committer
graphics/ufraw: Fix fallout caused by icu upgrade

This ufraw port uses a scrip from icu and doesn't even specify icu
as a build dependency.  This looks wrong to me, but today I'm only
going to make ufraw build again.  The maintainer may want to review
this as it will break every time icu is updated.
Original commitRevision:343811 
Wednesday, 5 Feb 2014
21:58 mandree search for other commits by this committer
Modernize (LIB_DEPENDS, USES).
Support staging.

Add a patch that allows building with a strict-conformance C++11
compiler.

Approved by:	portmgr (implicit, under "just fix it" blanket approval)
Original commitRevision:342870 
20:02 sunpoet search for other commits by this committer
- Bump PORTREVISION for astro/cfitsio shlib change
- While I'm here, convert to new LIB_DEPENDS format

PR:		ports/185951
Submitted by:	Florian Degner <f.degner@gmx.de>
Original commitRevision:342830 
Wednesday, 29 Jan 2014
09:17 rodrigo search for other commits by this committer
Update maintainer email address

Approved by:	bapt@ (co-mentor)
Original commitRevision:341704 
Friday, 20 Sep 2013
18:35 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
graphics)
Original commitRevision:327733 
Monday, 2 Sep 2013
22:23 bapt search for other commits by this committer
Add an explicit dependency on pkgconf
Original commitRevision:326107 
Sunday, 11 Aug 2013
14:45 bsam search for other commits by this committer
Fix build after recent glib update.

PR:		ports/181013
Submitted by:	Jan Henrik Sylvester <me@janh.de>
Approved by:	rodrigo@bebik.net (maintainer)
Original commitRevision:324591 
Monday, 20 May 2013
07:50 bsam search for other commits by this committer
Update to version 0.19.2.

PR:		ports/178659
Submitted by:	Rodrigo (ros) OSORIO <rodrigo@bebik.net> (maintainer, final
		patch via e-mail)
Original commitRevision:318579 
Wednesday, 24 Apr 2013
18:10 ak search for other commits by this committer
- Convert USE_GETTEXT to USES (part 3)

Approved by:	portmgr (bapt)
Original commitRevision:316464 
Friday, 30 Nov 2012
08:48 jhale search for other commits by this committer
- EXIV2 and LENSFUN now have standard descriptions
- Drop "Enable" in FITS description

Reported by:	danfe
Feature safe:	yes
Original commitRevision:307999 
07:39 jhale search for other commits by this committer
- Convert to new options framework
- Drop ABI version numbers from LIB_DEPENDS
- Trim Makefile header

PR:		ports/174003
Submitted by:	Rodrigo (ros) OSORIO <rodrigo@bebik.net> (maintainer)
Feature safe:	yes
Original commitRevision:307995 
Tuesday, 31 Jul 2012
15:29 bsam search for other commits by this committer
Update graphics/exiv2 to version 0.23.
The so library version has changed.
Bump PORTREVISIONs at dependent ports.

PR:		ports/169733
Submitted by:	bsam (me)
Approved by:	multimedia (maintainer timeout 3 weeks)
Original commit
Monday, 11 Jun 2012
08:00 rm search for other commits by this committer
- fix build when WITH_GTK is disabled, but x11-toolkits/gtkimageview
  is installed

I also added similar change for WITH_GIMP option, because configure tries to
autodetect it too. PORTREVISION bump doesn't needed because GTK is enabled by
default.

PR:             166722
Submitted by:   Bojan Petrovic <bojan_petrovic at fastmail dot fm>
Approved by:    Rodrigo OSORIO <rodrigo at bebik dot net> (maintainer)
Original commit
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Monday, 14 May 2012
09:48 rm search for other commits by this committer
- pass maintainership to new volunteer

PR:             ports/167858
Submitted by:   Rodrigo OSORIO <rodrigo at bebik dot net>
Original commit
Saturday, 17 Dec 2011
17:41 danfe search for other commits by this committer
- Reenable LensFun library support by default as I believe it should not
  crash anymore (and thus bump port revision)
- Provide GNOME option to register .desktop file and GConf2 schemas (off
  by default)
- Include <bsd.port.options.mk> instead of <bsd.port.pre.mk> after OPTIONS
  to avoid having to define WANT_GNOME
- Minor non-functional Makefile adjustments

Reviewed by:    gnome@ (feedback from marcus, dougb, bsam)
Original commit
Wednesday, 30 Nov 2011
10:14 danfe search for other commits by this committer
- Build extra (dcraw, nikon-curve) executables to better adhere to port
  description and simply provide more functionality by default (install
  dcraw as ufraw-dcraw to avoid conflict with `graphics/dcraw' port)
- Make heavy (due to `graphics/gimp-app' dependency) GIMP plugin off by
  default: this port is most often used for quick command line raw
  conversion, and GIMP pulls way too much stuff unfortunately
- Make Gtk+2 GUI optional (X-less users should appreciate)
- Remove explicit USE_GNOME components (inherited though the mandatory
  dependencies)
- Disable LensFun support by default since processing Canon CR2 files
  results in segmentation fault in lf_lens_interpolate_vignetting()
- Ensure that users' selection of OPTIONS is upheld (remove exists(...)
  checks)
- Rephrase some options' texts, pass --disable-silent-rules option to
  configure script so that build logs could be more useful
- Bump PORTREVISION due to numerous important changes

Feature safe:   yes
Original commit
06:15 danfe search for other commits by this committer
In sight of upcoming update, cleanup things a bit (reformat, fix whitespace,
reorder some knobs, add LICENSE, etc).

Feature safe:   yes
Original commit
Monday, 24 Oct 2011
03:33 stas search for other commits by this committer
- Return my ports back to the pool.  I was unable to make any fixes to
  my ports in the past 3 weeks while ports were broken on any 10.x
  machines, which means I'm unable to maintain them.  So let people know
  that there's no available support for them until things are back to
  normal (which also means that anyone with spare time will be able
  to fix them without getting approval).
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Original commit
Tuesday, 20 Sep 2011
20:19 stas search for other commits by this committer
- Update to 0.18.

  This is a bugfix release.  It also adds a new translation and based on
  a new 9.06 version of dcraw.

Submitted by:   Martin Sugioarto <martin@sugioarto.com> (based on)
Original commit
Tuesday, 12 Apr 2011
08:24 bapt search for other commits by this committer
- chase exiv2 library bump
- while here remove some MD5
- fix some forgottern desktop-file-utils dependencies
Original commit
Friday, 20 Aug 2010
08:34 kwm search for other commits by this committer
Chase exiv2 shlib bump.
Original commit
Tuesday, 17 Aug 2010
00:32 stas search for other commits by this committer
- Update to 0.17.

PR:             ports/149249 (based on)
Submitted by:   Xin LI <delphij@freebsd.org>
Original commit
Saturday, 7 Aug 2010
20:48 lwhsu search for other commits by this committer
- Bump PORTREVISION for shared library update of graphics/lensfun
Original commit
Monday, 31 May 2010
02:01 ade search for other commits by this committer
Bounce PORTREVISION for gettext-related ports.  Have fun, ya'll.
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Friday, 5 Mar 2010
09:17 stas search for other commits by this committer
- Fix a couple of typos in options.

Feature safe:   yes
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Friday, 4 Dec 2009
22:28 stas search for other commits by this committer
- Add CONTRAST option to support contrast operations (enabled by default). [1]
- Add HOTPIXEL option to support hot pixels filtering (enabled by default).
- Add DST option that turns on using the local time in timestamps (off by
  default).
- Bump port revision.

PR:             ports/141053 [1]
Submitted by:   "Pierre Guinoiseau" <geekounet@poildetroll.net> [1]
Original commit
Friday, 16 Oct 2009
13:16 stas search for other commits by this committer
- Update to 0.16.
- Add option for FIST support.
Original commit
Saturday, 22 Aug 2009
00:23 amdmi3 search for other commits by this committer
- Switch SourceForge ports to the new File Release System: categories starting
with G
Original commit
Saturday, 18 Jul 2009
11:11 dinoex search for other commits by this committer
- update to jpeg7
Tested by:      pav on pointyhat
Original commit
Wednesday, 27 May 2009
11:32 stas search for other commits by this committer
- Use OPTIONS.
- Add lensfun support [1].
- Bump portrevision.

PR:             ports/134924 [1]
Submitted by:   Denis Barov <dindin@dindin.ru> [1]
Original commit
Wednesday, 11 Mar 2009
22:19 bsam search for other commits by this committer
. update graphics/exiv2 to the new version;
. bump ports which depends upon libexiv2.so
  (the library was bumpted from *.so.3 to *.so.7);
. mark current graphics/py-exiv2 as broken since it doesn't compile
  with new libexiv2; this should change with graphics/py-exiv2-0.2.

PR:             ports/131376
Submitted by:   bsam (me)
Discussed with: kde@
Approved by:    maintainer timeout (5 weeks)
Original commit
Monday, 5 Jan 2009
20:36 pav search for other commits by this committer
- Remove conditional checks for FreeBSD 5.x and older
Original commit
Thursday, 25 Dec 2008
23:29 stas search for other commits by this committer
- Update to 0.15.
Original commit
Sunday, 19 Oct 2008
16:03 stas search for other commits by this committer
- Update to 0.14.1.
- Take maintainership.
Original commit
Sunday, 7 Sep 2008
00:19 linimon search for other commits by this committer
Reset infofarmer due to maintainer-timeouts and no response to email.

Hat:    portmgr
Original commit
Friday, 6 Jun 2008
13:35 edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
Original commit
Saturday, 19 Apr 2008
17:56 miwi search for other commits by this committer
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
        Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
        ehaupt, nox, itetcu, flz, pav

PR:             116263
Tested on:      pointyhat
Approved by:    portmgr (pav)
Original commit
Friday, 7 Mar 2008
19:36 pav search for other commits by this committer
- Chase exiv2 update
Original commit
Wednesday, 12 Dec 2007
13:13 sat search for other commits by this committer
- Update to 0.13
Original commit
Friday, 26 Oct 2007
23:41 sat search for other commits by this committer
- Update to 0.12.1

Prodded by:     mi
Original commit
Wednesday, 1 Aug 2007
08:49 sat search for other commits by this committer
- Update to 0.12
Original commit
Monday, 23 Jul 2007
09:36 rafan search for other commits by this committer
- Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
  supports them.  This is determined by running ``configure --help'' in
  do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
  which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
  Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
  PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
  subdirectory detection.

PR:             ports/111470
Approved by:    portmgr
Discussed with: stas (Mk/*), gerald (info related stuffs)
Tested by:      pointyhat exp run
Original commit
Tuesday, 17 Jul 2007
11:35 sat search for other commits by this committer
- Disable gimp support if WITHOUT_GIMP is defined

Requested by:   J.R. Oldroyd <jr at opal.com>
Original commit

Number of commits found: 111 (showing only 100 on this page)

1 | 2  »