aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorehaupt <ehaupt@FreeBSD.org>2018-04-03 16:54:58 +0800
committerehaupt <ehaupt@FreeBSD.org>2018-04-03 16:54:58 +0800
commit56eb05dd33f38c920a36fb2835ab6f7a0c03d5ca (patch)
tree1ce8a16e5f44356c5ca0ea4f8f3dc0d313f2d9d7
parentacc209936060cced3c8d76f6e1064bed836142d0 (diff)
downloadfreebsd-ports-gnome-56eb05dd33f38c920a36fb2835ab6f7a0c03d5ca.tar.gz
freebsd-ports-gnome-56eb05dd33f38c920a36fb2835ab6f7a0c03d5ca.tar.zst
freebsd-ports-gnome-56eb05dd33f38c920a36fb2835ab6f7a0c03d5ca.zip
- Update to 0.5
- Add LICENSE
-rw-r--r--graphics/icat/Makefile5
-rw-r--r--graphics/icat/distinfo5
-rw-r--r--graphics/icat/files/patch-Makefile24
3 files changed, 6 insertions, 28 deletions
diff --git a/graphics/icat/Makefile b/graphics/icat/Makefile
index e439e5538924..c86a6802fe85 100644
--- a/graphics/icat/Makefile
+++ b/graphics/icat/Makefile
@@ -2,14 +2,15 @@
# $FreeBSD$
PORTNAME= icat
-PORTVERSION= 0.4
+PORTVERSION= 0.5
DISTVERSIONPREFIX= v
-PORTREVISION= 1
CATEGORIES= graphics
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Displays images in 256-color capable terminals
+LICENSE= BSD2CLAUSE
+
LIB_DEPENDS= libImlib2.so:graphics/imlib2
USES= gmake dos2unix
diff --git a/graphics/icat/distinfo b/graphics/icat/distinfo
index b964fec88bf8..21862e73cd2c 100644
--- a/graphics/icat/distinfo
+++ b/graphics/icat/distinfo
@@ -1,2 +1,3 @@
-SHA256 (atextor-icat-v0.4_GH0.tar.gz) = b286495047cdfa04375cdd788f246fa227725460a66cb151c9a22957bbdb567f
-SIZE (atextor-icat-v0.4_GH0.tar.gz) = 7858
+TIMESTAMP = 1522737831
+SHA256 (atextor-icat-v0.5_GH0.tar.gz) = 1d77f20c7eab29efe22aeebe426301b7dca1f898759c63f32a714c7c9ae1aab4
+SIZE (atextor-icat-v0.5_GH0.tar.gz) = 46232
diff --git a/graphics/icat/files/patch-Makefile b/graphics/icat/files/patch-Makefile
deleted file mode 100644
index 2414cf57e660..000000000000
--- a/graphics/icat/files/patch-Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
---- ./Makefile.orig 2013-04-29 11:51:10.242627983 +0200
-+++ ./Makefile 2013-04-29 11:51:26.370242683 +0200
-@@ -1,16 +1,16 @@
--GCC=gcc
--CCFLAGS=-Wall -pedantic -std=c99 -D_BSD_SOURCE
--LDFLAGS=-lImlib2
-+CC?=gcc
-+CFLAGS+=-Wall -pedantic -std=c99 -D_BSD_SOURCE
-+LDFLAGS+=-lImlib2
- PROG=icat
- MODS=icat.o
-
- all: $(PROG)
-
- %.o: %.c
-- $(GCC) -c $(CCFLAGS) -o $@ $<
-+ $(CC) -c $(CFLAGS) -o $@ $<
-
- $(PROG): $(MODS)
-- $(GCC) -o $@ $< $(LDFLAGS)
-+ $(CC) -o $@ $< $(LDFLAGS)
-
- clean:
- -rm -f $(PROG) $(MODS)