diff options
author | will <will@FreeBSD.org> | 2000-07-12 14:32:47 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-07-12 14:32:47 +0000 |
commit | 426b7907808c421c640ed384c5b13d04c86533ee (patch) | |
tree | 77199200979c5be30d207896a163b310e4eff749 /graphics/jslice/files/patch-aa | |
parent | 8d4342deccd0d178e47c785dbdb8534d46c9625d (diff) | |
download | FreeBSD-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/jslice/files/patch-aa')
-rw-r--r-- | graphics/jslice/files/patch-aa | 15 |
1 files changed, 15 insertions, 0 deletions
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 |