diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-12-27 22:02:40 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-12-27 22:02:40 +0000 |
commit | 43ed7c6717d9be68e9376f612f3bfe6f3d970f75 (patch) | |
tree | 885f6c5adeb944d8eba0f56430cd91016aa607ce /x11-fonts | |
parent | 7b98db21dd8794d80f422ebd0323f75c90efa7f8 (diff) | |
download | ports-43ed7c6717d9be68e9376f612f3bfe6f3d970f75.tar.gz ports-43ed7c6717d9be68e9376f612f3bfe6f3d970f75.zip |
Notes
Diffstat (limited to 'x11-fonts')
-rw-r--r-- | x11-fonts/Makefile | 1 | ||||
-rw-r--r-- | x11-fonts/gfe/Makefile | 21 | ||||
-rw-r--r-- | x11-fonts/gfe/distinfo | 1 | ||||
-rw-r--r-- | x11-fonts/gfe/files/patch-src:auxil.c | 111 | ||||
-rw-r--r-- | x11-fonts/gfe/pkg-comment | 1 | ||||
-rw-r--r-- | x11-fonts/gfe/pkg-descr | 12 | ||||
-rw-r--r-- | x11-fonts/gfe/pkg-plist | 1 |
7 files changed, 148 insertions, 0 deletions
diff --git a/x11-fonts/Makefile b/x11-fonts/Makefile index 8e451438e440..1bf55e6500a0 100644 --- a/x11-fonts/Makefile +++ b/x11-fonts/Makefile @@ -14,6 +14,7 @@ SUBDIR += freefonts SUBDIR += geminifonts SUBDIR += getbdf + SUBDIR += gfe SUBDIR += intlfonts SUBDIR += jmk-x11-fonts SUBDIR += mkfontalias diff --git a/x11-fonts/gfe/Makefile b/x11-fonts/gfe/Makefile new file mode 100644 index 000000000000..ebdaf8975274 --- /dev/null +++ b/x11-fonts/gfe/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: gfe +# Date created: 26 December 2001 +# Whom: Bruce M Simpson <bms@spc.org> +# +# $FreeBSD$ +# + +PORTNAME= gfe +PORTVERSION= 0.0.4 +CATEGORIES= x11-fonts +MASTER_SITES= ftp://alpha.gnu.org/gnu/gfe/ + +MAINTAINER= bms@spc.org + +GNU_CONFIGURE= yes +USE_GTK= yes +USE_XPM= yes + +NO_MAN= + +.include <bsd.port.mk> diff --git a/x11-fonts/gfe/distinfo b/x11-fonts/gfe/distinfo new file mode 100644 index 000000000000..a91a7440f300 --- /dev/null +++ b/x11-fonts/gfe/distinfo @@ -0,0 +1 @@ +MD5 (gfe-0.0.4.tar.gz) = a683d7930a8f68401aa9ee15b73a8a5d diff --git a/x11-fonts/gfe/files/patch-src:auxil.c b/x11-fonts/gfe/files/patch-src:auxil.c new file mode 100644 index 000000000000..92095db87660 --- /dev/null +++ b/x11-fonts/gfe/files/patch-src:auxil.c @@ -0,0 +1,111 @@ +Only in src.dist: about_dialog.o +diff -u src.dist/auxil.c src/auxil.c +--- src.dist/auxil.c Thu Dec 27 06:00:20 2001 ++++ src/auxil.c Thu Dec 27 06:01:59 2001 +@@ -16,7 +16,7 @@ + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include <ctype.h> +-#include <malloc.h> ++#include <stdlib.h> + #include <gtk/gtk.h> + + #include "auxil.h" +Only in src.dist: auxil.o +diff -u src.dist/bdf.c src/bdf.c +--- src.dist/bdf.c Thu Dec 27 06:00:20 2001 ++++ src/bdf.c Thu Dec 27 06:01:59 2001 +@@ -18,7 +18,7 @@ + #include <gtk/gtk.h> + + #include <ctype.h> +-#include <malloc.h> ++#include <stdlib.h> + + #include "auxil.h" + #include "bdf.h" +diff -u src.dist/bitmap.c src/bitmap.c +--- src.dist/bitmap.c Thu Dec 27 06:00:20 2001 ++++ src/bitmap.c Thu Dec 27 06:01:59 2001 +@@ -16,7 +16,7 @@ + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include <gtk/gtk.h> +-#include <malloc.h> ++#include <stdlib.h> + + #include "bitmap.h" + +diff -u src.dist/file.c src/file.c +--- src.dist/file.c Thu Dec 27 06:00:20 2001 ++++ src/file.c Thu Dec 27 06:01:59 2001 +@@ -16,7 +16,7 @@ + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include <gtk/gtk.h> +-#include <malloc.h> ++#include <stdlib.h> + + #include "auxil.h" + #include "bdf.h" +diff -u src.dist/font.c src/font.c +--- src.dist/font.c Thu Dec 27 06:00:20 2001 ++++ src/font.c Thu Dec 27 06:01:59 2001 +@@ -16,7 +16,7 @@ + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include <gtk/gtk.h> +-#include <malloc.h> ++#include <stdlib.h> + + #include "auxil.h" + #include "font.h" +diff -u src.dist/glyph.c src/glyph.c +--- src.dist/glyph.c Thu Dec 27 06:00:20 2001 ++++ src/glyph.c Thu Dec 27 06:01:59 2001 +@@ -16,7 +16,7 @@ + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include <gtk/gtk.h> +-#include <malloc.h> ++#include <stdlib.h> + + #include "auxil.h" + #include "glyph.h" +diff -u src.dist/gui.c src/gui.c +--- src.dist/gui.c Thu Dec 27 06:00:20 2001 ++++ src/gui.c Thu Dec 27 06:01:59 2001 +@@ -16,7 +16,7 @@ + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include <gtk/gtk.h> +-#include <malloc.h> ++#include <stdlib.h> + + #include "auxil.h" + #include "character.h" +Common subdirectories: src.dist/pixmaps and src/pixmaps +diff -u src.dist/raster_font.c src/raster_font.c +--- src.dist/raster_font.c Thu Dec 27 06:00:20 2001 ++++ src/raster_font.c Thu Dec 27 06:01:59 2001 +@@ -15,7 +15,7 @@ + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ +-#include <malloc.h> ++#include <stdlib.h> + + #include "auxil.h" + #include "bitmap.h" +diff -u src.dist/raster_glyph.c src/raster_glyph.c +--- src.dist/raster_glyph.c Thu Dec 27 06:00:20 2001 ++++ src/raster_glyph.c Thu Dec 27 06:01:59 2001 +@@ -17,7 +17,7 @@ + */ + #include <gtk/gtk.h> + +-#include <malloc.h> ++#include <stdlib.h> + + #include "bitmap.h" + #include "font.h" diff --git a/x11-fonts/gfe/pkg-comment b/x11-fonts/gfe/pkg-comment new file mode 100644 index 000000000000..a63d3a4ddd8c --- /dev/null +++ b/x11-fonts/gfe/pkg-comment @@ -0,0 +1 @@ +GTK+-based .bdf font editor for X diff --git a/x11-fonts/gfe/pkg-descr b/x11-fonts/gfe/pkg-descr new file mode 100644 index 000000000000..2cfb89c5ede9 --- /dev/null +++ b/x11-fonts/gfe/pkg-descr @@ -0,0 +1,12 @@ +From the GNU website: + +GNU Font Editor (GFE) is a graphical font editor based on the GIMP +Toolkit. It is easy to use and will eventually support many font +types. Currently it supports only BDF font files, that can be +converted to many other formats easily. + +Author: Anuradha Ratnaweera +WWW: http://www.gnu.org/software/gfe/gfe.html + +Bruce +bms@spc.org diff --git a/x11-fonts/gfe/pkg-plist b/x11-fonts/gfe/pkg-plist new file mode 100644 index 000000000000..cc0454db9291 --- /dev/null +++ b/x11-fonts/gfe/pkg-plist @@ -0,0 +1 @@ +bin/gfe |