diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2013-08-17 16:27:24 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2013-08-17 16:27:24 +0000 |
commit | 41e60477bdfd199f4fa53ac14af9a86349cff50b (patch) | |
tree | c1657d06d35b5f160b90b16620933ca757495766 /graphics/darktable | |
parent | - Reset chinsan's ports (diff) |
Replace USE_GCC=4.6+ and USE_GCC=4.4+ by USE_GCC=yes.
Right now this is a noop in the former case and a noop in the latter
case unless lang/gcc44 has been installed explicitly.
This puts a bit more emphasis on standardizing on a canonical version
"current" GCC and makes it easier to update that canonical version
by changing the default in Mk/bsd.gcc.mk and updating the lang/gcc port.
That is, USE_GCC=yes means "use a decent/modern version of GCC" without
having to worry about details.
Approved by: portmgr (bdrewery)
Notes
Notes:
svn path=/head/; revision=324851
Diffstat (limited to 'graphics/darktable')
-rw-r--r-- | graphics/darktable/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/darktable/Makefile b/graphics/darktable/Makefile index bf6e451f3f32..71df575fdab4 100644 --- a/graphics/darktable/Makefile +++ b/graphics/darktable/Makefile @@ -32,15 +32,15 @@ MAN1= ${PORTNAME}.1 LDFLAGS+= -L${LOCALBASE}/lib -lintl OPTIONS_DEFINE= GPHOTO GEO FLICKR FACEBOOK KWALLET GNOMEKEYRING RAWSPEED \ - OPENJPEG SLIDESHOW NLS GCC46 + OPENJPEG SLIDESHOW NLS GCC GEO_DESC= Geotagging support FACEBOOK_DESC= Support images export to Facebook RAWSPEED_DESC= Compile with rawspeed backend SLIDESHOW_DESC= Build OpenGL/SDL slideshow viewer -GCC46_DESC= Build with GCC 4.6+ (better OpenMP support) +GCC_DESC= Build with a current version of GCC (better OpenMP support) -OPTIONS_DEFAULT= GPHOTO RAWSPEED GCC46 +OPTIONS_DEFAULT= GPHOTO RAWSPEED GCC .include <bsd.port.options.mk> @@ -114,8 +114,8 @@ USES+= gettext CMAKE_ARGS+= -DUSE_NLS:BOOL=OFF .endif -.if ${PORT_OPTIONS:MGCC46} -USE_GCC= 4.6+ +.if ${PORT_OPTIONS:MGCC} +USE_GCC= yes # libdarktable.so has parts written in C++ (built-in rawspeed and libraw) # and is linked to GCC 4.6's libstdc++. However CMake removes RPATH from # this library, and libstdc++ from base (GCC 4.2.1) is pulled at runtime, |