aboutsummaryrefslogtreecommitdiff
path: root/graphics/icat
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2018-04-03 08:54:58 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2018-04-03 08:54:58 +0000
commitfcf203a2e787ce129ca38bef38011119cc8be827 (patch)
tree1ce8a16e5f44356c5ca0ea4f8f3dc0d313f2d9d7 /graphics/icat
parent32f79bef3c95eac1ca0210325f4370e158a44d5c (diff)
downloadports-fcf203a2e787ce129ca38bef38011119cc8be827.tar.gz
ports-fcf203a2e787ce129ca38bef38011119cc8be827.zip
- Update to 0.5
- Add LICENSE
Notes
Notes: svn path=/head/; revision=466288
Diffstat (limited to 'graphics/icat')
-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)