diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-05-08 00:21:14 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-05-08 00:21:14 +0000 |
commit | 40abe7e22c6e7f7efc015c033eeb1383f2308dcb (patch) | |
tree | 3610b4265416143236b0d1588001ae3136afe893 /graphics | |
parent | b27acbecd7cb5e9a90aeb138e28cb90390e5a9bd (diff) |
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/tumble/Makefile | 2 | ||||
-rw-r--r-- | graphics/tumble/distinfo | 6 | ||||
-rw-r--r-- | graphics/tumble/files/patch-Makefile | 21 |
3 files changed, 25 insertions, 4 deletions
diff --git a/graphics/tumble/Makefile b/graphics/tumble/Makefile index f316e09b7290..82dadd1a269d 100644 --- a/graphics/tumble/Makefile +++ b/graphics/tumble/Makefile @@ -2,7 +2,7 @@ PORTNAME= tumble DISTVERSIONPREFIX= v -DISTVERSION= 0.37 +DISTVERSION= 0.38 CATEGORIES= graphics print MAINTAINER= fuz@fuz.su diff --git a/graphics/tumble/distinfo b/graphics/tumble/distinfo index 7d3b823223ca..e4f55479ec25 100644 --- a/graphics/tumble/distinfo +++ b/graphics/tumble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651231098 -SHA256 (brouhaha-tumble-v0.37_GH0.tar.gz) = 647e269af72f43e67486f6426dbe2575614c212fc4b65b54c99e64ab9d1ce93c -SIZE (brouhaha-tumble-v0.37_GH0.tar.gz) = 52451 +TIMESTAMP = 1651958412 +SHA256 (brouhaha-tumble-v0.38_GH0.tar.gz) = 20015cd9697b8e09b3ba3fbbdda510e50650b18b6de11cea912b8a7efdc2d5b9 +SIZE (brouhaha-tumble-v0.38_GH0.tar.gz) = 52989 diff --git a/graphics/tumble/files/patch-Makefile b/graphics/tumble/files/patch-Makefile new file mode 100644 index 000000000000..9df066d0a801 --- /dev/null +++ b/graphics/tumble/files/patch-Makefile @@ -0,0 +1,21 @@ +--- Makefile.orig 2022-04-29 11:21:31 UTC ++++ Makefile +@@ -33,15 +33,15 @@ + CTL_LANG=1 + + +-CFLAGS = -Wall -Wno-unused-function -Wno-unused-but-set-variable -I/usr/include/netpbm +-LDFLAGS = ++CFLAGS := $(CFLAGS) ++LDFLAGS := $(LDFLAGS) + LDLIBS = -ltiff -ljpeg -lnetpbm -lz -lm + + ifdef DEBUG + CFLAGS := $(CFLAGS) -g + LDFLAGS := $(LDFLAGS) -g + else +-CFLAGS := $(CFLAGS) -O3 ++CFLAGS := $(CFLAGS) + endif + + ifdef EFENCE |