summaryrefslogtreecommitdiff
path: root/graphics/ophoto/files/patch-ab
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 08:56:41 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 08:56:41 +0000
commit9be9c4c1dafe17e16a81322515a375b6574e2bb7 (patch)
tree9ae73276b422d1766d18a0fdeeb964c5f2073690 /graphics/ophoto/files/patch-ab
parentIsolate from src.conf settings such as WITHOUT_PROFILE. (diff)
Remove unmaintained expired ports from graphics
2011-05-01 graphics/cqcam: Upstream disapear and distfile is no more available 2011-05-01 graphics/dc3play: Upstream disapear and distfile is no more available 2011-05-01 graphics/dore: Upstream disapear and distfile is no more available 2011-05-01 graphics/fig2pstricks: Upstream disapear and distfile is no more available 2011-05-01 graphics/geist: Upstream disapear and distfile is no more available 2011-05-01 graphics/gfont: Upstream disapear and distfile is no more available 2011-05-01 graphics/gimp-greycstoration: Superseded by graphics/gimp-gmic-plugin 2011-05-01 graphics/glean: Upstream disapear and distfile is no more available 2011-05-01 graphics/gltk: Upstream disapear and distfile is no more available 2011-05-01 graphics/gridpix: Upstream disapear and distfile is no more available 2011-05-01 graphics/gtkfig: Upstream disapear and distfile is no more available 2011-05-01 graphics/gview: Upstream disapear and distfile is no more available 2011-05-01 graphics/icod: Upstream disapear and distfile is no more available 2011-05-01 graphics/isreal: Upstream disapear and distfile is no more available 2011-05-01 graphics/oglext: Upstream disapear and distfile is no more available 2011-05-01 graphics/ophoto: Upstream disapear and distfile is no more available 2011-05-01 graphics/py-gdchart: Upstream disapear and distfile is no more available 2011-05-01 graphics/py-gdchart2: Upstream disapear and distfile is no more available 2011-05-01 graphics/qglviewer: Upstream disapear and distfile is no more available 2011-05-01 graphics/robot: Upstream disapear and distfile is no more available 2011-05-01 graphics/s3switch: Upstream disapear and distfile is no more available 2011-05-01 graphics/sced: Upstream disapear and distfile is no more available 2011-05-01 graphics/shim: Upstream disapear and distfile is no more available 2011-05-01 graphics/snx101util: Upstream disapear and distfile is no more available 2011-05-01 graphics/tcm: Upstream disapear and distfile is no more available 2011-05-01 graphics/vertex: Upstream disapear and distfile is no more available 2011-05-01 graphics/vvv: Upstream disapear and distfile is no more available 2011-05-01 graphics/xdl: Upstream disapear and distfile is no more available 2011-05-01 graphics/xmms-goom: Upstream disapear and distfile is no more available 2011-05-01 graphics/xmms-infinity: Upstream disapear and distfile is no more available
Diffstat (limited to '')
-rw-r--r--graphics/ophoto/files/patch-ab47
1 files changed, 0 insertions, 47 deletions
diff --git a/graphics/ophoto/files/patch-ab b/graphics/ophoto/files/patch-ab
deleted file mode 100644
index 45cfb990da96..000000000000
--- a/graphics/ophoto/files/patch-ab
+++ /dev/null
@@ -1,47 +0,0 @@
---- Makefile.orig Sat Dec 18 23:35:16 1999
-+++ Makefile Sun Oct 19 02:47:23 2003
-@@ -6,34 +6,36 @@
- # @(#)$Id: Makefile,v 1.5 1999/08/28 23:32:12 olli Exp $
- #
-
--CFLAGS=-Wall -ansi -pedantic -O -pipe
-+CC?=cc
-+CFLAGS?=-O -pipe
-+CFLAGS+=-Wall -ansi -pedantic
-
- BIN=ophoto
- OBJS=ophoto.o command.o directory.o proto.o utils.o getlopt.o
-
- $(BIN): $(OBJS)
-- cc $(CFLAGS) -o $(BIN) $(OBJS)
-+ $(CC) $(CFLAGS) -o $(BIN) $(OBJS)
-
- ophoto.o: ophoto.h ophoto.c proto.h utils.h getlopt.h
-- cc $(CFLAGS) -c ophoto.c
-+ $(CC) $(CFLAGS) -c ophoto.c
-
- command.o: command.c command.h directory.h ophoto.h proto.h
-- cc $(CFLAGS) -c command.c
-+ $(CC) $(CFLAGS) -c command.c
-
- directory.o: directory.c directory.h proto.h ophoto.h
-- cc $(CFLAGS) -c directory.c
-+ $(CC) $(CFLAGS) -c directory.c
-
- proto.o: proto.c proto.h cmds.h
-- cc $(CFLAGS) -c proto.c
-+ $(CC) $(CFLAGS) -c proto.c
-
- cmds.h: cmds.src
- ./cmds.make cmds.src > cmds.h
-
- utils.o: utils.c utils.h
-- cc $(CFLAGS) -c utils.c
-+ $(CC) $(CFLAGS) -c utils.c
-
- getlopt.o: getlopt.c getlopt.h
-- cc $(CFLAGS) -c getlopt.c
-+ $(CC) $(CFLAGS) -c getlopt.c
-
- install:
- strip $(BIN)