aboutsummaryrefslogtreecommitdiff
path: root/graphics/lightzone/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* INSTALLS_ICONS: retire the macro and rework the related dependenciesBaptiste Daroussin2021-10-101-1/+0
| | | | | | | While here, make sure gtk-update-icon-cache is only on run dependency where added as a dependency Enforce gtk3 to depend on gtk-update-icon-cache (previously it was inheriting the dependency)
* graphics/lightzone: Mark this port broken on aarch64Mikael Urankar2021-09-131-0/+1
| | | | Approved by: portmgr (blanket)
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Drop dependency on devel/openmpJan Beich2020-03-081-2/+1
| | | | | | | | | | - Drop if devel/llvm* was used as a substitute Approved by: yuri, rene (earlier version) Differential Revision: https://reviews.freebsd.org/D23020 Notes: svn path=/head/; revision=528082
* Clean up after java/openjdk6 and java/openjdk6-jre removalJung-uk Kim2019-11-261-1/+0
| | | | | | | | | | | | | | | java/openjdk6 support was removed from Mk/bsd.java.mk (r512662) and java/openjdk6 and java/openjdk6-jre were removed from the ports tree (r512663). Now this patch completely removes remaining stuff from the ports tree. PR: 241953 (exp-run) Reviewed by: glewis Approved by: portmgr (antoine) Differential Revision: https://reviews.freebsd.org/D22342 Notes: svn path=/head/; revision=518482
* graphics: Add missing USES={gl,gnome,sdl}Tobias Kortkamp2019-11-081-1/+1
| | | | Notes: svn path=/head/; revision=517071
* Add USES=xorg USES=gl, ports categories gNiclas Zeising2019-11-051-1/+1
| | | | | | | | Add USES=xorg and USES=gl to ports in categories starting with 'g'. While here, try to sprinkle other USES (mostly gnome and sdl) as needed. Notes: svn path=/head/; revision=516845
* devel/openmp: update to 9.0.0Jan Beich2019-09-211-1/+1
| | | | | | | | | | | - Connect tests to the framework to help QA remaining patches - Force rebuild all consumers after https://reviews.llvm.org/D59783 Changes: http://llvm.org/viewvc/llvm-project/openmp/tags/RELEASE_900/final/?view=log ABI: https://abi-laboratory.pro/tracker/timeline/llvm_openmp/ Notes: svn path=/head/; revision=512535
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=507372
* graphics/lightzone: Fix build with GCC 9Tobias Kortkamp2019-07-031-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Apply upstream commit 376ec67ddfb1 to update bundled dcraw to 9.28 [...] [exec] -----> Entering dcraw [exec] gcc9 -c -g -march=pentium4 -mtune=generic -march=pentium4 -msse2 -mfpmath=sse -fPIC -O3 -fno-trapping-math -fomit-frame-pointer -fopenmp -Wno-unused-result -DNODEPS -DLIGHTZONE -Dfgetc=getc_unlocked dcraw_lz.c [exec] dcraw_lz.c: In function 'vng_interpolate': [exec] dcraw_lz.c:4543:10: warning: assignment to 'short unsigned int (*)[4]' from incompatible pointer type 'short unsigned int *' [-Wincompatible-pointer-types] [exec] 4543 | rowtmp = (ushort*)malloc(4 * width * 4 * sizeof(ushort)); [exec] | ^ [exec] dcraw_lz.c: In function 'wavelet_denoise': [exec] dcraw_lz.c:4170:32: error: 'noise' not specified in enclosing 'parallel' [exec] 4170 | thold = threshold * noise[lev]; [exec] | ~~~~~^~~~~ [exec] dcraw_lz.c:4149:13: error: enclosing 'parallel' [exec] 4149 | #pragma omp parallel for \ [exec] | ^~~ [exec] dcraw_lz.c: In function 'xtrans_interpolate': [exec] dcraw_lz.c:4846:19: error: 'orth' not specified in enclosing 'parallel' [exec] 4846 | if (fcol(row+orth[d],col+orth[d+2]) == 1) ng=0; else ng++; [exec] | ~~~~^~~ [exec] dcraw_lz.c:4757:31: note: in definition of macro 'fcol' [exec] 4757 | #define fcol(row,col) xtrans[(row+6) % 6][(col+6) % 6] [exec] | ^~~ [exec] dcraw_lz.c:4827:9: error: enclosing 'parallel' [exec] 4827 | #pragma omp parallel default (none) \ [exec] | ^~~ [exec] dcraw_lz.c:4849:25: error: 'patt' not specified in enclosing 'parallel' [exec] 4849 | v = orth[d ]*patt[g][c*2] + orth[d+1]*patt[g][c*2+1]; [exec] | ~~~~~~~^~~~~ [exec] dcraw_lz.c:4827:9: error: enclosing 'parallel' [exec] 4827 | #pragma omp parallel default (none) \ [exec] | ^~~ [exec] dcraw_lz.c:5021:7: error: 'dir' not specified in enclosing 'parallel' [exec] 5021 | f=dir[d & 3]; [exec] | ~~~^~~~~~~ [exec] dcraw_lz.c:4827:9: error: enclosing 'parallel' [exec] 4827 | #pragma omp parallel default (none) \ [exec] | ^~~ http://package18.nyi.freebsd.org/data/120amd64-default-PR238330/2019-06-09_20h26m27s/logs/errors/lightzone-4.1.8.3_3.log PR: 238664 Reported by: antoine (via exp-run in PR 238330) Submitted by: jbeich Approved by: yuri (maintainer timeout, 2 weeks) Notes: svn path=/head/; revision=505744
* devel/openmp: phase outJan Beich2019-05-081-1/+1
| | | | | | | | | | | | - Expire after the last version without /usr/lib/libomp.so - Drop SOVERSION for seamless transition (i.e., avoid conditionals) PR: 236907 Approved by: bapt (maintainer) Differential Revision: https://reviews.freebsd.org/D19767 Notes: svn path=/head/; revision=501030
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. 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, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* graphics/lightzone: Update 4.1.7 -> 4.1.8-3Yuri Victorovich2018-04-141-2/+3
| | | | Notes: svn path=/head/; revision=467340
* Bump PORTREVISIONs of all users of math/mpc that we just updated toGerald Pfeifer2018-03-101-1/+1
| | | | | | | version 1.1.0 (via revision 464079). Notes: svn path=/head/; revision=464084
* Replaced my old rawbw.com maintainer's address with yuri@FreeBSD.orgYuri Victorovich2018-02-251-1/+1
| | | | | | | | | 98 ports are affected. Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=462887
* For ports that are marked BROKEN on armv6, and also fail to build onMark Linimon2017-11-301-0/+1
| | | | | | | | | | | | | armv7, mark them so. This is part two of a multipart commit to bring armv7 ports to parity with armv6. Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com -exp run Notes: svn path=/head/; revision=455167
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. 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, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* Mark some ports failing on armv6, for errors classified as "???".Mark Linimon2017-05-261-0/+2
| | | | | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=441814
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-1/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* Bump PORTREVISIONS for ports depending on the canonical version of GCC andGerald Pfeifer2016-11-201-0/+1
| | | | | | | | | | | | lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms). In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler. Notes: svn path=/head/; revision=426566
* Update to version 4.1.7Pawel Pekala2016-10-021-1/+1
| | | | | | | | PR: 213069 Submitted by: maintainer Notes: svn path=/head/; revision=423109
* - Update to 4.1.6Dmitry Marakasov2016-07-051-3/+3
| | | | | | | | | | - While here, add LICENSE_FILE PR: 210677 Submitted by: yuri@rawbw.com (maintainer) Notes: svn path=/head/; revision=418110
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-8/+8
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* - Add a runtime dependecy on java/javahelpLars Engels2016-01-221-0/+2
| | | | | | | | | | - Bump PORTREVISION Approved by: portmgr blanket (implicit) MFH: 2016Q1 Notes: svn path=/head/; revision=406896
* - Update to 4.1.5Martin Wilke2016-01-121-1/+1
| | | | | | | | PR: 206142 Submitted by: maintainer Notes: svn path=/head/; revision=405848
* Update to upstream version 4.1.4Thomas Zander2015-12-131-3/+2
| | | | | | | | PR: 205121 Submitted by: yuri@rawbw.com (maintainer) Notes: svn path=/head/; revision=403684
* - Update to 4.1.3Dmitry Marakasov2015-11-171-2/+2
| | | | | | | | PR: 204317 Submitted by: yuri@rawbw.com Notes: svn path=/head/; revision=401814
* Update to 4.1.2Carlo Strub2015-09-181-2/+1
| | | | | | | | | | PR: 203034 Submitted by: yuri@rawbw.com (maintainer) MFH: 2015Q3 Security: Fixes 57325ecf-facc-11e4-968f-b888e347c638 Notes: svn path=/head/; revision=397295
* Convert to USES=jpegAntoine Brodin2015-06-251-3/+2
| | | | Notes: svn path=/head/; revision=390585
* 1: remove MASTER_SITES.Vanilla I. Shu2015-06-241-7/+9
| | | | | | | | | 2: rename DATADIR to LIBDIR. Submitted by: mat@ Notes: svn path=/head/; revision=390484
* Add lightzone , professional-level digital darkroom and photo editor.Vanilla I. Shu2015-06-241-0/+58
PR: 201070 Submitted by: Yuri Victorovich <yuri@rawbw.com> Notes: svn path=/head/; revision=390480