1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Add jslice, a graphics utility which breaks up a JPEG image into slices

and provides HTML code referring the slices.
This commit is contained in:
Will Andrews 2000-07-12 14:32:47 +00:00
parent 9edb68a83e
commit e9e43bd953
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=30514
7 changed files with 45 additions and 0 deletions

View File

@ -79,6 +79,7 @@
SUBDIR += jgraph
SUBDIR += jgv
SUBDIR += jpeg
SUBDIR += jslice
SUBDIR += juno-2
SUBDIR += kdc2tiff
SUBDIR += kdegraphics11

20
graphics/jslice/Makefile Normal file
View File

@ -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>

1
graphics/jslice/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (jslice-1.0.0.tar.gz) = 90dad1b811fdf23af5e6f7e2fed1ac3a

View File

@ -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

View File

@ -0,0 +1 @@
Graphics tool to split up a JPEG image and provide HTML for the slices

View File

@ -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>

View File

@ -0,0 +1 @@
bin/jslice