summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorwill <will@FreeBSD.org>2000-07-12 14:32:47 +0000
committerwill <will@FreeBSD.org>2000-07-12 14:32:47 +0000
commit426b7907808c421c640ed384c5b13d04c86533ee (patch)
tree77199200979c5be30d207896a163b310e4eff749 /graphics
parent8d4342deccd0d178e47c785dbdb8534d46c9625d (diff)
downloadFreeBSD-ports-426b7907808c421c640ed384c5b13d04c86533ee.zip
FreeBSD-ports-426b7907808c421c640ed384c5b13d04c86533ee.tar.gz
Add jslice, a graphics utility which breaks up a JPEG image into slices
and provides HTML code referring the slices.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/Makefile1
-rw-r--r--graphics/jslice/Makefile20
-rw-r--r--graphics/jslice/distinfo1
-rw-r--r--graphics/jslice/files/patch-aa15
-rw-r--r--graphics/jslice/pkg-comment1
-rw-r--r--graphics/jslice/pkg-descr6
-rw-r--r--graphics/jslice/pkg-plist1
7 files changed, 45 insertions, 0 deletions
diff --git a/graphics/Makefile b/graphics/Makefile
index b58083b..c4eb5a4 100644
--- a/graphics/Makefile
+++ b/graphics/Makefile
@@ -79,6 +79,7 @@
SUBDIR += jgraph
SUBDIR += jgv
SUBDIR += jpeg
+ SUBDIR += jslice
SUBDIR += juno-2
SUBDIR += kdc2tiff
SUBDIR += kdegraphics11
diff --git a/graphics/jslice/Makefile b/graphics/jslice/Makefile
new file mode 100644
index 0000000..bb87553
--- /dev/null
+++ b/graphics/jslice/Makefile
@@ -0,0 +1,20 @@
+# New ports collection makefile for: insert
+# Date created: Wed 12 Jul 2000
+# Whom: will
+#
+# $FreeBSD$
+#
+
+PORTNAME= jslice
+PORTVERSION= 1.0.0
+CATEGORIES= graphics
+MASTER_SITES= http://www.pldaniels.com/jslice/
+
+MAINTAINER= ports@FreeBSD.org
+
+LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/jslice ${PREFIX}/bin
+
+.include <bsd.port.mk>
diff --git a/graphics/jslice/distinfo b/graphics/jslice/distinfo
new file mode 100644
index 0000000..c12a859
--- /dev/null
+++ b/graphics/jslice/distinfo
@@ -0,0 +1 @@
+MD5 (jslice-1.0.0.tar.gz) = 90dad1b811fdf23af5e6f7e2fed1ac3a
diff --git a/graphics/jslice/files/patch-aa b/graphics/jslice/files/patch-aa
new file mode 100644
index 0000000..82d7a63
--- /dev/null
+++ b/graphics/jslice/files/patch-aa
@@ -0,0 +1,15 @@
+--- Makefile Wed May 31 12:39:28 2000
++++ Makefile.new Wed Jul 12 10:23:42 2000
+@@ -1,5 +1,11 @@
++LOCALBASE ?= /usr/local
++CC ?= cc
++INC ?= -I$(LOCALBASE)/include
++LIB ?= -L$(LOCALBASE)/lib
++CFLAGS ?= -O -pipe
++
+ all:
+- gcc jslice.c -o jslice -Wall -ljpeg
++ $(CC) $(CFLAGS) $(INC) $(LIB) jslice.c -o jslice -Wall -ljpeg
+
+ install:
+ cp jslice /usr/local/bin
diff --git a/graphics/jslice/pkg-comment b/graphics/jslice/pkg-comment
new file mode 100644
index 0000000..68e7a57
--- /dev/null
+++ b/graphics/jslice/pkg-comment
@@ -0,0 +1 @@
+Graphics tool to split up a JPEG image and provide HTML for the slices
diff --git a/graphics/jslice/pkg-descr b/graphics/jslice/pkg-descr
new file mode 100644
index 0000000..50daf3d
--- /dev/null
+++ b/graphics/jslice/pkg-descr
@@ -0,0 +1,6 @@
+Jslice takes a single JPEG picture and slices it up into a
+table to facilitate the activation of various portions of
+the original picture in an HTML document.
+
+WWW: http://www.pldaniels.com/jslice/
+Author: Paul L. Daniels <pldaniels@pldaniels.com>
diff --git a/graphics/jslice/pkg-plist b/graphics/jslice/pkg-plist
new file mode 100644
index 0000000..f522fdc
--- /dev/null
+++ b/graphics/jslice/pkg-plist
@@ -0,0 +1 @@
+bin/jslice
OpenPOWER on IntegriCloud