diff options
author | yuri <yuri@FreeBSD.org> | 2018-09-06 08:35:56 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-09-06 08:35:56 +0800 |
commit | 4a63a80042a66e722a4aea3bec2c50b974881c18 (patch) | |
tree | aee6b9f138d276c59e5d5765e86dd2b979a7f4e8 /security | |
parent | 3d52517171f5e96e239f936249eab6abf141ffef (diff) | |
download | freebsd-ports-gnome-4a63a80042a66e722a4aea3bec2c50b974881c18.tar.gz freebsd-ports-gnome-4a63a80042a66e722a4aea3bec2c50b974881c18.tar.zst freebsd-ports-gnome-4a63a80042a66e722a4aea3bec2c50b974881c18.zip |
security/titan: Update 1.2 -> 1.3
Reported by: portscout
Diffstat (limited to 'security')
-rw-r--r-- | security/titan/Makefile | 2 | ||||
-rw-r--r-- | security/titan/distinfo | 6 | ||||
-rw-r--r-- | security/titan/files/patch-Makefile | 42 |
3 files changed, 4 insertions, 46 deletions
diff --git a/security/titan/Makefile b/security/titan/Makefile index 062356a2dcc0..ef4485aa1edd 100644 --- a/security/titan/Makefile +++ b/security/titan/Makefile @@ -2,7 +2,7 @@ PORTNAME= titan DISTVERSIONPREFIX= v -DISTVERSION= 1.2 +DISTVERSION= 1.3 CATEGORIES= security MAINTAINER= yuri@FreeBSD.org diff --git a/security/titan/distinfo b/security/titan/distinfo index 11ea5f3f4f9c..6eda4bc91f49 100644 --- a/security/titan/distinfo +++ b/security/titan/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1514242207 -SHA256 (nrosvall-titan-v1.2_GH0.tar.gz) = 1d87fac29da00ebb5c9432d3a2007837818b06c653a8559c43112e322a94823b -SIZE (nrosvall-titan-v1.2_GH0.tar.gz) = 14764 +TIMESTAMP = 1536193675 +SHA256 (nrosvall-titan-v1.3_GH0.tar.gz) = 85425b60ee9f20d88a2d9e87c3f5db39dcfa00025793027f4d8868588f47cc9a +SIZE (nrosvall-titan-v1.3_GH0.tar.gz) = 15156 diff --git a/security/titan/files/patch-Makefile b/security/titan/files/patch-Makefile deleted file mode 100644 index c364262d9805..000000000000 --- a/security/titan/files/patch-Makefile +++ /dev/null @@ -1,42 +0,0 @@ ---- Makefile.orig 2017-11-13 07:48:52 UTC -+++ Makefile -@@ -1,6 +1,8 @@ --CC=gcc --override CFLAGS+=-std=c99 -Wall -g --PREFIX=/usr/ -+CC?=gcc -+CFLAGS?=-std=c99 -Wall -g -+CFLAGS+=-std=c99 -Wall -+PREFIX?=/usr/ -+MANDIR?=$(PREFIX)/share/man - LIBS=-lcrypto -lsqlite3 -lrt - PROG=titan - OBJS=$(patsubst %.c, %.o, $(wildcard *.c)) -@@ -12,20 +14,20 @@ all: $(PROG) - $(CC) $(CFLAGS) -c $< -o $@ - - $(PROG): $(OBJS) -- $(CC) $(OBJS) $(LIBS) -o $@ -+ $(CC) $(OBJS) $(LDFLAGS) $(LIBS) -o $@ - - clean: - rm -f *.o - rm -f $(PROG) - - install: all -- if [ ! -d $(PREFIX)/share/man/man1 ];then \ -- mkdir -p $(PREFIX)/share/man/man1; \ -+ if [ ! -d $(DESTDIR)$(MANDIR)/man1 ];then \ -+ mkdir -p $(DESTDIR)$(MANDIR)/man1; \ - fi -- cp titan.1 $(PREFIX)/share/man/man1/ -- gzip -f $(PREFIX)/share/man/man1/titan.1 -- cp titan $(PREFIX)/bin/ -+ cp titan.1 $(DESTDIR)$(MANDIR)/man1/ -+ gzip -f $(DESTDIR)$(MANDIR)/man1/titan.1 -+ cp titan $(DESTDIR)$(PREFIX)/bin/ - - uninstall: - rm $(PREFIX)/bin/titan -- rm $(PREFIX)/share/man/man1/titan.1.gz -+ rm $(DESTDIR)$(MANDIR)/man1/titan.1.gz |