aboutsummaryrefslogtreecommitdiff
path: root/graphics/libexif
Commit message (Collapse)AuthorAgeFilesLines
* graphics/libexif: Update to 0.6.24Po-Chuan Hsieh2022-02-282-5/+5
| | | | Changes: https://github.com/libexif/libexif/releases
* graphics/libexif: Update to 0.6.23Po-Chuan Hsieh2021-09-272-5/+5
| | | | Changes: https://github.com/libexif/libexif/releases
* graphics/libexif: Convert REINPLACE_CMD to patch filePo-Chuan Hsieh2021-09-192-7/+31
|
* graphics/libexif: Fix CPE information because current one is deprecatedBernhard Froehlich2021-09-141-1/+1
| | | | Approved by: portmgr (blanket)
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* graphics/libexif: Update MAINTAINERDanilo G. Baio2020-10-071-1/+1
| | | | | | | | | Pass MAINTAINER'ship to sunpoet, missed in ports r551526. PR: 250105 Notes: svn path=/head/; revision=551668
* Update to 0.6.22Sunpoet Po-Chuan Hsieh2020-10-057-158/+15
| | | | | | | | | | | | | | | | | | | - Update MASTER_SITES - Use USES=localbase - Strip shared library - Convert to options target helper - Update WWW - Take maintainership Changes: https://github.com/libexif/libexif/releases PR: 250105 Submitted by: sunpoet (myself) Approved by: dbaio (maintainer) Security: cff0b2e2-0716-11eb-9e5d-08002728f74c MFH: 2020Q4 Notes: svn path=/head/; revision=551526
* graphics/libexif: Fix security vulnerabilitiesDanilo G. Baio2020-02-134-2/+147
| | | | | | | | | | | | | | | | | | | | | | - Fix CVE-2019-9278 In libexif, there is a possible out of bounds write due to an integer overflow. This could lead to remote escalation of privilege in the media content provider with no additional execution privileges needed. User interaction is needed for exploitation. - Fix a buffer read overflow in exif_entry_get_value - Fix a buffer overread in exif_mnote_data_olympus_load PR: 244060 Reported by: tj@mrsk.me (email) Approved by: former maintainer MFH: 2020Q1 Security: 00f30cba-4d23-11ea-86ba-641c67a117d8 Notes: svn path=/head/; revision=526071
* Update WWW: SF redirects to https://sourceforge.net/projects/<PROJECT_NAME>/Sunpoet Po-Chuan Hsieh2017-01-201-1/+1
| | | | Notes: svn path=/head/; revision=431996
* By default libtool replaces -export-symbols <file> with -retain-symbols-fileTijl Coosemans2015-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <file> on ELF systems, but this doesn't really do what -export-symbols is meant to do. On GNU ELF systems it converts <file> to a simple version script first and then uses -version-script instead of -retain-symbols-file. Let USES=libtool patch libtool scripts to do this on all systems with GNU ld(1). Bump PORTREVISION on all ports where the build log contains -export-symbols. audio/calf: This port builds a module that now exports only one function, but it also builds a number of executables that link to this module and expect to see other functions. Because it's already a bit dodgy to link to a module (libtool warns about this) let the module continue to export only one function and instead build an ordinary library from the same source that the executables can link to. Fix a number of other issues in the same Makefile.am and clean up the port Makefile. japanese/scim-honoka: Tries to hide all symbols that start with an underscore, but because this library is written in C++ all symbols start with _Z so it ends up hiding everything. Just don't hide anything at all like the textproc/scim configure script does. multimedia/schroedinger: Apply an upstream patch. textproc/scim-input-pad: Same as japanese/scim-honoka. PR: 201922 Approved by: portmgr (antoine) Exp-run by: antoine Notes: svn path=/head/; revision=393429
* - Add CPE infoDmitry Marakasov2015-05-141-1/+3
| | | | | | | | | - Add LICENSE_FILE Approved by: portmgr blanket Notes: svn path=/head/; revision=386331
* - Drop .la files, no dependees require themDmitry Marakasov2014-12-022-3/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=373751
* Cleanup plistBaptiste Daroussin2014-10-201-1/+0
| | | | Notes: svn path=/head/; revision=371283
* - Convert USE_BZIP2 to USESDmitry Marakasov2014-06-041-2/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=356493
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=351936
* - fix build when gettext is installedDirk Meyer2014-03-251-1/+1
| | | | Notes: svn path=/head/; revision=349196
* Convert to USES=libtoolBaptiste Daroussin2014-03-022-13/+8
| | | | | | | Use options helpers Notes: svn path=/head/; revision=346823
* - Stage supportMartin Wilke2014-02-051-5/+2
| | | | Notes: svn path=/head/; revision=342643
* - Modernise some USES:Raphael Kubo da Costa2014-01-201-3/+2
| | | | | | | | USE_GMAKE -> USES=gmake USE_GNOME=gnomehack -> USES=pathfix Notes: svn path=/head/; revision=340381
* Add DOCS and NLS options.Tijl Coosemans2013-12-291-0/+2
| | | | Notes: svn path=/head/; revision=338003
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | graphics) Notes: svn path=/head/; revision=327733
* - Convert USE_GETTEXT to USES (part 4)Alex Kozlov2013-04-261-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316596
* Convert g* to USES=pkgconfigBaptiste Daroussin2013-04-231-1/+1
| | | | Notes: svn path=/head/; revision=316343
* - graphics/libexif:Po-Chien Lin2013-03-143-20/+19
| | | | | | | | | | | | | | | | * Update to 0.6.21 * Add LICENSE * Switch to OptionsNG and PORTDOCS - Document libexif 2012-07-12 vulnerabilty - Bump PORTREVISION for libexif related ports - Trim headers while here PR: ports/175910 Approved by: swills (mentor) Security: d881d254-70c6-11e2-862d-080027a5ec9a Notes: svn path=/head/; revision=314141
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=282282
* - Update to 0.6.20Wen Heping2011-03-043-5/+12
| | | | | | | | | PR: ports/154107 Submitted by: Wen Heping (myself) Approved by: maintainer Notes: svn path=/head/; revision=270221
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-0/+1
| | | | Notes: svn path=/head/; revision=255371
* - Update to 0.6.18Sylvio Cesar Teixeira2009-11-013-4/+7
| | | | | | | | | | PR: ports/139686 Submitted by: sylvio@ Approved by: maintainer mentor (itetcu) Notes: svn path=/head/; revision=243607
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr Notes: svn path=/head/; revision=238781
* - Pass maintainership to marius@nuenneri.chWesley Shields2009-02-121-1/+1
| | | | | | | Submitted by: marius@nuenneri.ch (ports@ mailing list) Notes: svn path=/head/; revision=228138
* - Update to 0.6.17Martin Wilke2009-01-173-16/+30
| | | | | | | | | | - Respect NOPORTDOCS PR: 130433 Submitted by: Ports Fury Notes: svn path=/head/; revision=226336
* Reset yinjieh@csie.nctu.edu.tw due to lack of time to work on portsMark Linimon2008-12-252-4/+1
| | | | | | | | | right now, by request. Hat: portmgr Notes: svn path=/head/; revision=224731
* - Update to 0.6.16Li-Wen Hsu2008-09-242-5/+4
| | | | | | | | | PR: ports/127294 Submitted by: Yi-Jheng Lin <yzlin AT cs.nctu.edu.tw> Approved by: Ying-Chieh Chen <yinjieh AT csie.nctu.edu.tw> (maintainer) Notes: svn path=/head/; revision=220719
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=214430
* - Update to 0.6.15Pav Lucistnik2007-05-274-19/+9
| | | | | | | | | - Use ltverhack Approved by: maintainer Notes: svn path=/head/; revision=192042
* - Update to 0.6.14Pav Lucistnik2007-05-253-6/+8
| | | | | | | Approved by: Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw> (maintainer) Notes: svn path=/head/; revision=191774
* - Update to 0.6.13Pav Lucistnik2006-03-295-17/+26
| | | | | | | Approved by: maintainer Notes: svn path=/head/; revision=158366
* Conversion to a single libtool environment.Ade Lovett2006-02-232-2/+3
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154157
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* - fix option WITHOUT_NLSDirk Meyer2005-09-141-2/+2
| | | | | | | | 2005-08-28 maintainer emailed, no response. Approved by: maintainer timeout (2 weeks) Notes: svn path=/head/; revision=142673
* - Fix a braino which leads to crash in GIMP when opening JPEG pictures withPav Lucistnik2005-04-132-0/+12
| | | | | | | | | certain EXIF data, like those from SONY, Nikon or Canon digital cameras. Obtained from: libexif CVS, exif-data.c rev. 1.68 Notes: svn path=/head/; revision=133270
* - update to 6.0.12Cheng-Lung Sung2005-04-044-19/+9
| | | | | | | | | | | - fix remotely exploitable buffer overflows [http://www.freebsd.org/ports/portaudit/624fe633-9006-11d9-a22c-0001020eed82.html] PR: 79158, 79281 Submitted by: Oliver Fromme, maintainer Notes: svn path=/head/; revision=132407
* Update to 0.6.10Kirill Ponomarev2004-10-123-4/+6
| | | | | | | | PR: ports/71944 Submitted by: maintainer Notes: svn path=/head/; revision=118893
* Support WITHOUT_NLSKirill Ponomarev2004-07-102-4/+11
| | | | Notes: svn path=/head/; revision=113344
* Apply a big libtool patch to allow porters to use the libtool installed byJoe Marcus Clarke2004-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet Notes: svn path=/head/; revision=113296
* SIZEify (maintainer timeout)Trevor Johnson2004-03-311-0/+1
| | | | Notes: svn path=/head/; revision=105747
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed. Notes: svn path=/head/; revision=103963
* Add USE_GETTEXT and bump PORTREVISION.Joe Marcus Clarke2004-02-041-3/+2
| | | | | | | | Submitted by: trevor Tested by: bento Notes: svn path=/head/; revision=99914