Upgrade to 1.8.1 which should shrink my mailbox and the PR system.
This commit is contained in:
parent
cc5988d3c7
commit
6c4d8b3e72
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=26829
9 changed files with 48 additions and 48 deletions
|
@ -1,12 +1,12 @@
|
|||
# New ports collection makefile for: gd
|
||||
# Version required: 1.8
|
||||
# Version required: 1.8.1
|
||||
# Date created: 27 Mar 1998
|
||||
# Whom: jeff@cetlink.net
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= gd-1.8
|
||||
DISTNAME= gd-1.8.1
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.boutell.com/gd/http/ \
|
||||
ftp://ftp.boutell.com/pub/boutell/gd/
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (gd-1.8.tar.gz) = 81eba35290c2d38beb3aa93ce845e9fb
|
||||
MD5 (gd-1.8.1.tar.gz) = 7d3890e728ee5bbde165ef75448d5a3f
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- Makefile.orig Wed Mar 8 14:54:37 2000
|
||||
+++ Makefile Fri Mar 10 21:09:49 2000
|
||||
@@ -3,35 +3,45 @@
|
||||
--- Makefile.orig Mon Mar 13 13:25:57 2000
|
||||
+++ Makefile Mon Mar 13 15:33:49 2000
|
||||
@@ -3,35 +3,44 @@
|
||||
#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).
|
||||
|
@ -19,27 +19,28 @@
|
|||
|
||||
#If you don't have FreeType, libjpeg and/or Xpm installed, including the
|
||||
#header files, uncomment this (default).
|
||||
#CFLAGS=-O
|
||||
-CFLAGS=-O
|
||||
+#CFLAGS=-O
|
||||
#If you do have FreeType, libjpeg 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_JPEG -DHAVE_LIBTTF
|
||||
-
|
||||
-#CFLAGS=-O -DHAVE_XPM -DHAVE_JPEG -DHAVE_LIBTTF
|
||||
+.if defined(WANT_X11)
|
||||
+CFLAGS+=-DHAVE_XPM -DHAVE_JPEG -DHAVE_LIBTTF
|
||||
+.else
|
||||
+CFLAGS+=-DHAVE_JPEG
|
||||
+.endif
|
||||
+
|
||||
|
||||
#If you don't have FreeType and/or Xpm fully installed, uncomment this
|
||||
#(default).
|
||||
-#LIBS=-lm -lgd -lpng -lz
|
||||
-LIBS=-lm -lgd -lpng -lz
|
||||
+LIBS=-lm -lgd -lpng -lz -ljpeg
|
||||
|
||||
#If you do have FreeType, JPEG and/or Xpm fully installed, uncomment a
|
||||
#variation of this and comment out the line above. Note that
|
||||
#Xpm requires X11. See also CFLAGS above.
|
||||
-#LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11
|
||||
+.if defined(WANT_X11)
|
||||
LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11
|
||||
+LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11
|
||||
+.endif
|
||||
|
||||
#Typical install locations for freetype, zlib, xpm, libjpeg and libpng header files.
|
||||
|
@ -49,11 +50,10 @@
|
|||
+.if defined(WANT_X11)
|
||||
+CFLAGS+=-I$(LOCALBASE)/include/freetype -I$(X11BASE)/include -I$(X11BASE)/include/X11
|
||||
+.endif
|
||||
+
|
||||
|
||||
#Typical install locations for freetype, zlib, xpm and libpng libraries.
|
||||
#If yours are somewhere else, other than a standard location
|
||||
@@ -39,16 +49,19 @@
|
||||
@@ -39,16 +48,19 @@
|
||||
#-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.
|
||||
|
@ -77,7 +77,7 @@
|
|||
|
||||
#
|
||||
#
|
||||
@@ -58,34 +71,41 @@
|
||||
@@ -58,34 +70,41 @@
|
||||
|
||||
VERSION=1.7
|
||||
|
||||
|
@ -139,7 +139,7 @@
|
|||
|
||||
gddemo: gddemo.o libgd.a
|
||||
$(CC) gddemo.o -o gddemo $(LIBDIRS) $(LIBS)
|
||||
@@ -120,16 +140,19 @@
|
||||
@@ -120,16 +139,19 @@
|
||||
gdtestttf: gdtestttf.o libgd.a
|
||||
$(CC) gdtestttf.o -o gdtestttf $(LIBDIRS) $(LIBS)
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# New ports collection makefile for: gd
|
||||
# Version required: 1.8
|
||||
# Version required: 1.8.1
|
||||
# Date created: 27 Mar 1998
|
||||
# Whom: jeff@cetlink.net
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= gd-1.8
|
||||
DISTNAME= gd-1.8.1
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.boutell.com/gd/http/ \
|
||||
ftp://ftp.boutell.com/pub/boutell/gd/
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (gd-1.8.tar.gz) = 81eba35290c2d38beb3aa93ce845e9fb
|
||||
MD5 (gd-1.8.1.tar.gz) = 7d3890e728ee5bbde165ef75448d5a3f
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- Makefile.orig Wed Mar 8 14:54:37 2000
|
||||
+++ Makefile Fri Mar 10 21:09:49 2000
|
||||
@@ -3,35 +3,45 @@
|
||||
--- Makefile.orig Mon Mar 13 13:25:57 2000
|
||||
+++ Makefile Mon Mar 13 15:33:49 2000
|
||||
@@ -3,35 +3,44 @@
|
||||
#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).
|
||||
|
@ -19,27 +19,28 @@
|
|||
|
||||
#If you don't have FreeType, libjpeg and/or Xpm installed, including the
|
||||
#header files, uncomment this (default).
|
||||
#CFLAGS=-O
|
||||
-CFLAGS=-O
|
||||
+#CFLAGS=-O
|
||||
#If you do have FreeType, libjpeg 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_JPEG -DHAVE_LIBTTF
|
||||
-
|
||||
-#CFLAGS=-O -DHAVE_XPM -DHAVE_JPEG -DHAVE_LIBTTF
|
||||
+.if defined(WANT_X11)
|
||||
+CFLAGS+=-DHAVE_XPM -DHAVE_JPEG -DHAVE_LIBTTF
|
||||
+.else
|
||||
+CFLAGS+=-DHAVE_JPEG
|
||||
+.endif
|
||||
+
|
||||
|
||||
#If you don't have FreeType and/or Xpm fully installed, uncomment this
|
||||
#(default).
|
||||
-#LIBS=-lm -lgd -lpng -lz
|
||||
-LIBS=-lm -lgd -lpng -lz
|
||||
+LIBS=-lm -lgd -lpng -lz -ljpeg
|
||||
|
||||
#If you do have FreeType, JPEG and/or Xpm fully installed, uncomment a
|
||||
#variation of this and comment out the line above. Note that
|
||||
#Xpm requires X11. See also CFLAGS above.
|
||||
-#LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11
|
||||
+.if defined(WANT_X11)
|
||||
LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11
|
||||
+LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11
|
||||
+.endif
|
||||
|
||||
#Typical install locations for freetype, zlib, xpm, libjpeg and libpng header files.
|
||||
|
@ -49,11 +50,10 @@
|
|||
+.if defined(WANT_X11)
|
||||
+CFLAGS+=-I$(LOCALBASE)/include/freetype -I$(X11BASE)/include -I$(X11BASE)/include/X11
|
||||
+.endif
|
||||
+
|
||||
|
||||
#Typical install locations for freetype, zlib, xpm and libpng libraries.
|
||||
#If yours are somewhere else, other than a standard location
|
||||
@@ -39,16 +49,19 @@
|
||||
@@ -39,16 +48,19 @@
|
||||
#-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.
|
||||
|
@ -77,7 +77,7 @@
|
|||
|
||||
#
|
||||
#
|
||||
@@ -58,34 +71,41 @@
|
||||
@@ -58,34 +70,41 @@
|
||||
|
||||
VERSION=1.7
|
||||
|
||||
|
@ -139,7 +139,7 @@
|
|||
|
||||
gddemo: gddemo.o libgd.a
|
||||
$(CC) gddemo.o -o gddemo $(LIBDIRS) $(LIBS)
|
||||
@@ -120,16 +140,19 @@
|
||||
@@ -120,16 +139,19 @@
|
||||
gdtestttf: gdtestttf.o libgd.a
|
||||
$(CC) gdtestttf.o -o gdtestttf $(LIBDIRS) $(LIBS)
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# New ports collection makefile for: gd
|
||||
# Version required: 1.8
|
||||
# Version required: 1.8.1
|
||||
# Date created: 27 Mar 1998
|
||||
# Whom: jeff@cetlink.net
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= gd-1.8
|
||||
DISTNAME= gd-1.8.1
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.boutell.com/gd/http/ \
|
||||
ftp://ftp.boutell.com/pub/boutell/gd/
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (gd-1.8.tar.gz) = 81eba35290c2d38beb3aa93ce845e9fb
|
||||
MD5 (gd-1.8.1.tar.gz) = 7d3890e728ee5bbde165ef75448d5a3f
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- Makefile.orig Wed Mar 8 14:54:37 2000
|
||||
+++ Makefile Fri Mar 10 21:09:49 2000
|
||||
@@ -3,35 +3,45 @@
|
||||
--- Makefile.orig Mon Mar 13 13:25:57 2000
|
||||
+++ Makefile Mon Mar 13 15:33:49 2000
|
||||
@@ -3,35 +3,44 @@
|
||||
#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).
|
||||
|
@ -19,27 +19,28 @@
|
|||
|
||||
#If you don't have FreeType, libjpeg and/or Xpm installed, including the
|
||||
#header files, uncomment this (default).
|
||||
#CFLAGS=-O
|
||||
-CFLAGS=-O
|
||||
+#CFLAGS=-O
|
||||
#If you do have FreeType, libjpeg 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_JPEG -DHAVE_LIBTTF
|
||||
-
|
||||
-#CFLAGS=-O -DHAVE_XPM -DHAVE_JPEG -DHAVE_LIBTTF
|
||||
+.if defined(WANT_X11)
|
||||
+CFLAGS+=-DHAVE_XPM -DHAVE_JPEG -DHAVE_LIBTTF
|
||||
+.else
|
||||
+CFLAGS+=-DHAVE_JPEG
|
||||
+.endif
|
||||
+
|
||||
|
||||
#If you don't have FreeType and/or Xpm fully installed, uncomment this
|
||||
#(default).
|
||||
-#LIBS=-lm -lgd -lpng -lz
|
||||
-LIBS=-lm -lgd -lpng -lz
|
||||
+LIBS=-lm -lgd -lpng -lz -ljpeg
|
||||
|
||||
#If you do have FreeType, JPEG and/or Xpm fully installed, uncomment a
|
||||
#variation of this and comment out the line above. Note that
|
||||
#Xpm requires X11. See also CFLAGS above.
|
||||
-#LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11
|
||||
+.if defined(WANT_X11)
|
||||
LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11
|
||||
+LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11
|
||||
+.endif
|
||||
|
||||
#Typical install locations for freetype, zlib, xpm, libjpeg and libpng header files.
|
||||
|
@ -49,11 +50,10 @@
|
|||
+.if defined(WANT_X11)
|
||||
+CFLAGS+=-I$(LOCALBASE)/include/freetype -I$(X11BASE)/include -I$(X11BASE)/include/X11
|
||||
+.endif
|
||||
+
|
||||
|
||||
#Typical install locations for freetype, zlib, xpm and libpng libraries.
|
||||
#If yours are somewhere else, other than a standard location
|
||||
@@ -39,16 +49,19 @@
|
||||
@@ -39,16 +48,19 @@
|
||||
#-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.
|
||||
|
@ -77,7 +77,7 @@
|
|||
|
||||
#
|
||||
#
|
||||
@@ -58,34 +71,41 @@
|
||||
@@ -58,34 +70,41 @@
|
||||
|
||||
VERSION=1.7
|
||||
|
||||
|
@ -139,7 +139,7 @@
|
|||
|
||||
gddemo: gddemo.o libgd.a
|
||||
$(CC) gddemo.o -o gddemo $(LIBDIRS) $(LIBS)
|
||||
@@ -120,16 +140,19 @@
|
||||
@@ -120,16 +139,19 @@
|
||||
gdtestttf: gdtestttf.o libgd.a
|
||||
$(CC) gdtestttf.o -o gdtestttf $(LIBDIRS) $(LIBS)
|
||||
|
||||
|
|
Loading…
Reference in a new issue