aboutsummaryrefslogtreecommitdiff
path: root/graphics/gd2
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-12-17 08:18:04 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-12-17 08:18:04 +0000
commitc9725fb85b442f5229246e7b4e1c53e913dbbb90 (patch)
treee00c7b9a13c8748065f79c57e9e81d9a1239e743 /graphics/gd2
parentee7f9aa44a92849ab34d5b387a3d79f974023b65 (diff)
downloadports-c9725fb85b442f5229246e7b4e1c53e913dbbb90.tar.gz
ports-c9725fb85b442f5229246e7b4e1c53e913dbbb90.zip
This commit was manufactured by cvs2svn to create tag 'RELEASE_3_4_0'.release/3.4.0
Notes
Notes: svn path=/head/; revision=23787 svn path=/tags/RELEASE_3_4_0/; revision=23788; tag=release/3.4.0
Diffstat (limited to 'graphics/gd2')
-rw-r--r--graphics/gd2/Makefile21
-rw-r--r--graphics/gd2/distinfo1
-rw-r--r--graphics/gd2/files/patch-ac108
-rw-r--r--graphics/gd2/pkg-comment1
-rw-r--r--graphics/gd2/pkg-descr23
-rw-r--r--graphics/gd2/pkg-plist18
6 files changed, 0 insertions, 172 deletions
diff --git a/graphics/gd2/Makefile b/graphics/gd2/Makefile
deleted file mode 100644
index 72da6ffc7b60..000000000000
--- a/graphics/gd2/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# New ports collection makefile for: gd
-# Version required: 1.7.3
-# Date created: 27 Mar 1998
-# Whom: jeff@cetlink.net
-#
-# $FreeBSD$
-#
-
-DISTNAME= gd-1.7.3
-CATEGORIES= graphics
-MASTER_SITES= http://www.boutell.com/gd/http/ \
- ftp://ftp.boutell.com/pub/boutell/gd/
-
-MAINTAINER= ports@FreeBSD.org
-
-LIB_DEPENDS= png.3:${PORTSDIR}/graphics/png
-
-pre-install:
- ${MKDIR} ${PREFIX}/include/gd
-
-.include <bsd.port.mk>
diff --git a/graphics/gd2/distinfo b/graphics/gd2/distinfo
deleted file mode 100644
index f7c74e8d71d7..000000000000
--- a/graphics/gd2/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (gd-1.7.3.tar.gz) = c3690ae8c2cc0710e1777c697b876297
diff --git a/graphics/gd2/files/patch-ac b/graphics/gd2/files/patch-ac
deleted file mode 100644
index 522766f1de33..000000000000
--- a/graphics/gd2/files/patch-ac
+++ /dev/null
@@ -1,108 +0,0 @@
---- Makefile.orig Wed Oct 13 16:20:11 1999
-+++ Makefile Mon Oct 25 10:43:21 1999
-@@ -3,19 +3,19 @@
- #If you do not have gcc, change the setting for COMPILER, but you must
- #use an ANSI standard C compiler (NOT the old SunOS 4.1.3 cc
- #compiler; get gcc if you are still using it).
--COMPILER=gcc
-+#COMPILER=gcc
-
- #If the ar command fails on your system, consult the ar manpage
- #for your system.
--AR=ar
-+#AR=ar
-
- #If the install command is not in your path, provide
- #an explicit path for it here, or install manually.
--INSTALL=install
-+#INSTALL=install
-
- #If you don't have FreeType and/or Xpm installed, including the
- #header files, uncomment this (default).
--CFLAGS=-O
-+#CFLAGS=-O
- #If you do have FreeType and/or Xpm fully installed, uncomment a
- #variation of this and comment out the line above. See also LIBS below.
- #CFLAGS=-O -DHAVE_XPM -DHAVE_LIBTTF
-@@ -31,7 +31,7 @@
-
- #Typical install locations for freetype, zlib, xpm and libpng header files.
- #If yours are somewhere else, change this.
--INCLUDEDIRS=-I/usr/local/include -I/usr/include/X11 -I/usr/X11R6/include/X11
-+CFLAGS+=-I$(LOCALBASE)/include
-
- #Typical install locations for freetype, zlib, xpm and libpng libraries.
- #If yours are somewhere else, other than a standard location
-@@ -39,16 +39,16 @@
- #-L. as this allows the gd library itself to be found.
- #Put -L. first so that old versions of the gd library elsewhere
- #on your system can't cause conflicts while building a new one.
--LIBDIRS=-L. -L/usr/local/lib -L/usr/lib/X11 -L/usr/X11R6/lib
-+LIBDIRS=-L. -L$(LOCALBASE)/lib
-
- #Location where libgd.a should be installed by "make install".
--INSTALL_LIB=/usr/local/lib
-+INSTALL_LIB=$(PREFIX)/lib
-
- #Location where .h files should be installed by "make install".
--INSTALL_INCLUDE=/usr/local/include
-+INSTALL_INCLUDE=$(PREFIX)/include/gd
-
- #Location where useful non-test programs should be installed by "make install".
--INSTALL_BIN=/usr/local/bin
-+INSTALL_BIN=$(PREFIX)/bin
-
- #
- #
-@@ -58,8 +58,8 @@
-
- VERSION=1.7
-
--CC=$(COMPILER) $(INCLUDEDIRS)
--LINK=$(CC) $(LIBDIRS) $(LIBS)
-+#CC=$(COMPILER) $(INCLUDEDIRS)
-+#LINK=$(CC) $(LIBDIRS) $(LIBS)
-
- PROGRAMS=$(BIN_PROGRAMS) $(TEST_PROGRAMS)
-
-@@ -69,23 +69,23 @@
- all: libgd.a $(PROGRAMS)
-
- install: libgd.a $(BIN_PROGRAMS)
-- $(INSTALL) -m 644 libgd.a $(INSTALL_LIB)/libgd.a
-- $(INSTALL) -m 755 pngtogd $(INSTALL_BIN)/pngtogd
-- $(INSTALL) -m 755 pngtogd2 $(INSTALL_BIN)/pngtogd2
-- $(INSTALL) -m 755 gdtopng $(INSTALL_BIN)/gdtopng
-- $(INSTALL) -m 755 gd2topng $(INSTALL_BIN)/gd2topng
-- $(INSTALL) -m 755 gd2copypal $(INSTALL_BIN)/gd2copypal
-- $(INSTALL) -m 755 gdparttopng $(INSTALL_BIN)/gdparttopng
-- $(INSTALL) -m 755 webpng $(INSTALL_BIN)/webpng
-- $(INSTALL) -m 755 bdftogd $(INSTALL_BIN)/bdftogd
-- $(INSTALL) -m 644 gd.h $(INSTALL_INCLUDE)/gd.h
-- $(INSTALL) -m 644 gdcache.h $(INSTALL_INCLUDE)/gdcache.h
-- $(INSTALL) -m 644 gd_io.h $(INSTALL_INCLUDE)/gd_io.h
-- $(INSTALL) -m 644 gdfontg.h $(INSTALL_INCLUDE)/gdfontg.h
-- $(INSTALL) -m 644 gdfontl.h $(INSTALL_INCLUDE)/gdfontl.h
-- $(INSTALL) -m 644 gdfontmb.h $(INSTALL_INCLUDE)/gdfontmb.h
-- $(INSTALL) -m 644 gdfonts.h $(INSTALL_INCLUDE)/gdfonts.h
-- $(INSTALL) -m 644 gdfontt.h $(INSTALL_INCLUDE)/gdfontt.h
-+ $(INSTALL) -c -m 644 libgd.a $(INSTALL_LIB)/libgd.a
-+ $(INSTALL) -c -m 755 pngtogd $(INSTALL_BIN)/pngtogd
-+ $(INSTALL) -c -m 755 pngtogd2 $(INSTALL_BIN)/pngtogd2
-+ $(INSTALL) -c -m 755 gdtopng $(INSTALL_BIN)/gdtopng
-+ $(INSTALL) -c -m 755 gd2topng $(INSTALL_BIN)/gd2topng
-+ $(INSTALL) -c -m 755 gd2copypal $(INSTALL_BIN)/gd2copypal
-+ $(INSTALL) -c -m 755 gdparttopng $(INSTALL_BIN)/gdparttopng
-+ $(INSTALL) -c -m 755 webpng $(INSTALL_BIN)/webpng
-+ $(INSTALL) -c -m 755 bdftogd $(INSTALL_BIN)/bdftogd
-+ $(INSTALL) -c -m 644 gd.h $(INSTALL_INCLUDE)/gd.h
-+ $(INSTALL) -c -m 644 gdcache.h $(INSTALL_INCLUDE)/gdcache.h
-+ $(INSTALL) -c -m 644 gd_io.h $(INSTALL_INCLUDE)/gd_io.h
-+ $(INSTALL) -c -m 644 gdfontg.h $(INSTALL_INCLUDE)/gdfontg.h
-+ $(INSTALL) -c -m 644 gdfontl.h $(INSTALL_INCLUDE)/gdfontl.h
-+ $(INSTALL) -c -m 644 gdfontmb.h $(INSTALL_INCLUDE)/gdfontmb.h
-+ $(INSTALL) -c -m 644 gdfonts.h $(INSTALL_INCLUDE)/gdfonts.h
-+ $(INSTALL) -c -m 644 gdfontt.h $(INSTALL_INCLUDE)/gdfontt.h
-
- gddemo: gddemo.o libgd.a
- $(CC) gddemo.o -o gddemo $(LIBDIRS) $(LIBS)
diff --git a/graphics/gd2/pkg-comment b/graphics/gd2/pkg-comment
deleted file mode 100644
index e59d31d35dcd..000000000000
--- a/graphics/gd2/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-A graphics library for fast PNG creation
diff --git a/graphics/gd2/pkg-descr b/graphics/gd2/pkg-descr
deleted file mode 100644
index f6ec333a65c6..000000000000
--- a/graphics/gd2/pkg-descr
+++ /dev/null
@@ -1,23 +0,0 @@
-DESCRIPTION
-
- gd is a graphics library. It allows your code to quickly draw images
- complete with lines, arcs, text, multiple colors, cut and paste from
- other images, and flood fills, and write out the result as a .PNG file.
- This is particularly useful in World Wide Web applications, where .PNG
- is the format used for inline images.
-
- gd is not a paint program. If you are looking for a paint program, you
- are looking in the wrong place. If you are not a programmer, you are
- looking in the wrong place.
-
- gd does not provide for every possible desirable graphics operation.
- It is not necessary or desirable for gd to become a kitchen-sink
- graphics package, but version 1.7.3 incorporates most of the commonly
- requested features for an 8-bit 2D package. Support for truecolor
- images, JPEG and truecolor PNG is planned for version 2.0.
-
-AUTHOR
- gd was written by Thomas Boutell and is currently distributed by
- boutell.com, Inc.
-
-WWW: http://www.boutell.com/gd/
diff --git a/graphics/gd2/pkg-plist b/graphics/gd2/pkg-plist
deleted file mode 100644
index 16438b063528..000000000000
--- a/graphics/gd2/pkg-plist
+++ /dev/null
@@ -1,18 +0,0 @@
-bin/bdftogd
-bin/pngtogd
-bin/pngtogd2
-bin/gdtopng
-bin/gd2topng
-bin/gd2copypal
-bin/gdparttopng
-bin/webpng
-include/gd/gd.h
-include/gd/gd_io.h
-include/gd/gdcache.h
-include/gd/gdfontg.h
-include/gd/gdfontl.h
-include/gd/gdfontmb.h
-include/gd/gdfonts.h
-include/gd/gdfontt.h
-lib/libgd.a
-@dirrm include/gd