Upgrade to 1.1.1.

This commit is contained in:
Vanilla I. Shu 1998-08-12 10:38:28 +00:00
parent 88f83d45d8
commit 3ef955049d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=12473
14 changed files with 687 additions and 669 deletions

View File

@ -1,31 +1,24 @@
# New ports collection makefile for: gtk
# Version required: 1.0.5
# Version required: 1.1.1
# Date Created: 28 Sep 1997
# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW>
#
# $Id: Makefile,v 1.21 1998/07/30 05:24:38 vanilla Exp $
# $Id: Makefile,v 1.22 1998/08/07 23:08:38 asami Exp $
#
DISTNAME= gtk+-1.0.5
PKGNAME= gtk-1.0.5
DISTNAME= gtk+-1.1.1
PKGNAME= gtk-1.1.1
CATEGORIES= x11-toolkits
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.0/ \
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.0/ \
http://www.ameth.org/gimp/pub/gtk/v1.0/
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.1/ \
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.1/ \
http://www.ameth.org/gimp/pub/gtk/v1.1/
MAINTAINER= vanilla@FreeBSD.ORG
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ENV= INSTALL='$${INSTALL} -c'
MAN1= gtk-config.1
pre-install:
@if [ ! -f ${PREFIX}/info/dir ]; then \
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
fi
CONFIGURE_ARGS= --includedir=${PREFIX}/include/gtk11
post-install:
${LDCONFIG} -m ${PREFIX}/lib

View File

@ -1 +1 @@
MD5 (gtk+-1.0.5.tar.gz) = 948121b18c4b4f1c49e8876927569dcf
MD5 (gtk+-1.1.1.tar.gz) = 9725821ec86dbe570f45fc81b8457202

View File

@ -1,96 +1,58 @@
--- docs/Makefile.in.orig Sat May 16 13:15:18 1998
+++ docs/Makefile.in Sun May 17 02:25:40 1998
@@ -121,7 +121,7 @@
--- Makefile.in.orig Wed Aug 5 13:06:11 1998
+++ Makefile.in Wed Aug 12 17:58:02 1998
@@ -91,9 +91,9 @@
xinput_progs = @xinput_progs@
TAR = tar
GZIP = --best
-all: Makefile $(INFO_DEPS) $(MANS)
+all: Makefile clean $(INFO_DEPS) $(MANS)
SRC_SUBDIRS = gdk gtk
-SUBDIRS = $(SRC_SUBDIRS) docs
+SUBDIRS = $(SRC_SUBDIRS)
.SUFFIXES:
.SUFFIXES: .dvi .info .ps .texi .texinfo .txi
@@ -150,7 +150,7 @@
.texi.info:
@cd $(srcdir) && rm -f $@ $@-[0-9] $@-[0-9][0-9]
cd $(srcdir) \
- && $(MAKEINFO) `echo $< | sed 's,.*/,,'`
+ && $(MAKEINFO) --no-split `echo $< | sed 's,.*/,,'`
-bin_SCRIPTS = gtk-config
+bin_SCRIPTS = gtk11-config
.texi.dvi:
TEXINPUTS=$(srcdir):$$TEXINPUTS \
@@ -349,7 +349,7 @@
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
mostlyclean: mostlyclean-aminfo mostlyclean-generic
EXTRA_DIST = \
HACKING \
@@ -169,12 +169,12 @@
examples/wheelbarrow/wheelbarrow.c \
examples/find-examples.sh
-clean: clean-aminfo clean-generic mostlyclean
+clean: clean-aminfo clean-generic mostlyclean maintainer-clean-aminfo
-m4datadir = $(datadir)/aclocal
-m4data_DATA = gtk.m4
+m4datadir = $(PREFIX)/share/aclocal
+m4data_DATA = gtk11.m4
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = config.h
-CONFIG_CLEAN_FILES = gtk-config
+CONFIG_CLEAN_FILES = gtk11-config
SCRIPTS = $(bin_SCRIPTS)
distclean: distclean-aminfo distclean-generic clean
-rm -f config.status
--- gtk/Makefile.in.orig Tue Apr 14 11:22:14 1998
+++ gtk/Makefile.in Fri Apr 24 03:59:06 1998
@@ -397,7 +397,7 @@
SOURCES = $(libgtk_la_SOURCES) testgtk.c testinput.c testselection.c simple.c
OBJECTS = $(libgtk_la_OBJECTS) testgtk.o testinput.o testselection.o simple.o
DATA = $(m4data_DATA)
@@ -227,8 +227,14 @@
-rm -f config.h
maintainer-clean-hdr:
-gtk-config: $(top_builddir)/config.status gtk-config.in
- cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
+gtk11.m4: gtk.m4
+ cp gtk.m4 gtk11.m4
+
+gtk11-config.in: gtk-config.in
+ cp gtk-config.in gtk11-config.in
+
+gtk11-config: $(top_builddir)/config.status gtk11-config.in
+ cd $(top_builddir) && CONFIG_FILES=gtk11-config CONFIG_HEADERS= ./config.status
install-binSCRIPTS: $(bin_SCRIPTS)
@$(NORMAL_INSTALL)
--- gtk/Makefile.in.orig Wed Aug 5 13:06:16 1998
+++ gtk/Makefile.in Wed Aug 12 17:47:57 1998
@@ -433,7 +433,7 @@
SOURCES = $(libgtk_1_1_la_SOURCES) testgtk.c testinput.c testselection.c testthreads.c simple.c
OBJECTS = $(libgtk_1_1_la_OBJECTS) testgtk.o testinput.o testselection.o testthreads.o simple.o
-all: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS)
+all: Makefile $(LTLIBRARIES) $(HEADERS)
.SUFFIXES:
.SUFFIXES: .S .c .lo .o .s
--- glib/Makefile.am.orig Sat Mar 28 00:50:30 1998
+++ glib/Makefile.am Sat Apr 4 16:18:47 1998
@@ -1,7 +1,5 @@
## Process this file with automake to produce Makefile.in
-configincludedir = $(pkglibdir)/include
-
lib_LTLIBRARIES = libglib.la
libglib_la_SOURCES = \
@@ -20,10 +18,7 @@
gutils.c
include_HEADERS = \
- glib.h
-
-configinclude_DATA = \
- glibconfig.h
+ glib.h glibconfig.h
libglib_la_LDFLAGS = -version-info 1:0:0
--- glib/Makefile.in.orig Sat Mar 28 09:02:29 1998
+++ glib/Makefile.in Sat Apr 4 16:19:26 1998
@@ -68,8 +68,6 @@
RANLIB = @RANLIB@
VERSION = @VERSION@
-configincludedir = $(pkglibdir)/include
-
lib_LTLIBRARIES = libglib.la
libglib_la_SOURCES = \
@@ -88,10 +86,7 @@
gutils.c
include_HEADERS = \
- glib.h
-
-configinclude_DATA = \
- glibconfig.h
+ glib.h glibconfig.h
libglib_la_LDFLAGS = -version-info 1:0:0
--- Makefile.in.orig Sun May 17 04:54:59 1998
+++ Makefile.in Sun May 17 04:56:17 1998
@@ -149,7 +149,7 @@
examples/wheelbarrow/wheelbarrow.c \
examples/find-examples.sh
-m4datadir = $(datadir)/aclocal
+m4datadir = $(LOCALBASE)/share/aclocal
m4data_DATA = gtk.m4
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs

View File

@ -0,0 +1,108 @@
--- gtk-config.in.orig Wed Aug 12 18:24:01 1998
+++ gtk-config.in Wed Aug 12 18:24:15 1998
@@ -8,7 +8,7 @@
exec_prefix_set=no
usage="\
-Usage: gtk-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
+Usage: gtk11-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
if test $# -eq 0; then
echo "${usage}" 1>&2
--- gtk.m4.orig Wed Aug 12 18:24:19 1998
+++ gtk.m4 Wed Aug 12 18:24:59 1998
@@ -6,7 +6,7 @@
dnl
AC_DEFUN(AM_PATH_GTK,
[dnl
-dnl Get the cflags and libraries from the gtk-config script
+dnl Get the cflags and libraries from the gtk11-config script
dnl
AC_ARG_WITH(gtk-prefix,[ --with-gtk-prefix=PFX Prefix where GTK is installed (optional)],
gtk_config_prefix="$withval", gtk_config_prefix="")
@@ -18,17 +18,17 @@
if test x$gtk_config_exec_prefix != x ; then
gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix"
if test x${GTK_CONFIG+set} != xset ; then
- GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config
+ GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk11-config
fi
fi
if test x$gtk_config_prefix != x ; then
gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix"
if test x${GTK_CONFIG+set} != xset ; then
- GTK_CONFIG=$gtk_config_prefix/bin/gtk-config
+ GTK_CONFIG=$gtk_config_prefix/bin/gtk11-config
fi
fi
- AC_PATH_PROG(GTK_CONFIG, gtk-config, no)
+ AC_PATH_PROG(GTK_CONFIG, gtk11-config, no)
min_gtk_version=ifelse([$1], ,0.99.7,$1)
AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
no_gtk=""
@@ -50,7 +50,7 @@
LIBS="$LIBS $GTK_LIBS"
dnl
dnl Now check if the installed GTK is sufficiently new. (Also sanity
-dnl checks the results of gtk-config to some extent
+dnl checks the results of gtk11-config to some extent
dnl
rm -f conf.gtktest
AC_TRY_RUN([
@@ -77,16 +77,16 @@
(gtk_minor_version != $gtk_config_minor_version) ||
(gtk_micro_version != $gtk_config_micro_version))
{
- printf("\n*** 'gtk-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",
+ printf("\n*** 'gtk11-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",
$gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version,
gtk_major_version, gtk_minor_version, gtk_micro_version);
- printf ("*** was found! If gtk-config was correct, then it is best\n");
+ printf ("*** was found! If gtk11-config was correct, then it is best\n");
printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n");
printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
printf("*** required on your system.\n");
- printf("*** If gtk-config was wrong, set the environment variable GTK_CONFIG\n");
- printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n");
+ printf("*** If gtk11-config was wrong, set the environment variable GTK_CONFIG\n");
+ printf("*** to point to the correct copy of gtk11-config, and remove the file config.cache\n");
printf("*** before re-running configure\n");
}
else if ((gtk_major_version != GTK_MAJOR_VERSION) ||
@@ -115,10 +115,10 @@
printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n");
printf("***\n");
printf("*** If you have already installed a sufficiently new version, this error\n");
- printf("*** probably means that the wrong copy of the gtk-config shell script is\n");
+ printf("*** probably means that the wrong copy of the gtk11-config shell script is\n");
printf("*** being found. The easiest way to fix this is to remove the old version\n");
printf("*** of GTK+, but you can also set the GTK_CONFIG environment to point to the\n");
- printf("*** correct copy of gtk-config. (In this case, you will have to\n");
+ printf("*** correct copy of gtk11-config. (In this case, you will have to\n");
printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
printf("*** so that the correct libraries are found at run-time))\n");
}
@@ -136,10 +136,10 @@
else
AC_MSG_RESULT(no)
if test "$GTK_CONFIG" = "no" ; then
- echo "*** The gtk-config script installed by GTK could not be found"
+ echo "*** The gtk11-config script installed by GTK could not be found"
echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in"
echo "*** your path, or set the GTK_CONFIG environment variable to the"
- echo "*** full path to gtk-config."
+ echo "*** full path to gtk11-config."
else
if test -f conf.gtktest ; then
:
@@ -168,7 +168,7 @@
[ echo "*** The test program failed to compile or link. See the file config.log for the"
echo "*** exact error that occured. This usually means GTK was incorrectly installed"
echo "*** or that you have moved GTK since it was installed. In the latter case, you"
- echo "*** may want to edit the gtk-config script: $GTK_CONFIG" ])
+ echo "*** may want to edit the gtk11-config script: $GTK_CONFIG" ])
CFLAGS="$ac_save_CFLAGS"
LIBS="$ac_save_LIBS"
fi

View File

@ -1,132 +1,126 @@
bin/gtk-config
include/gdk/gdk.h
include/gdk/gdkcursors.h
include/gdk/gdki18n.h
include/gdk/gdkkeysyms.h
include/gdk/gdkprivate.h
include/gdk/gdktypes.h
include/gdk/gdkx.h
include/glib.h
include/glibconfig.h
include/gtk/gtk.h
include/gtk/gtkaccelerator.h
include/gtk/gtkadjustment.h
include/gtk/gtkalignment.h
include/gtk/gtkarrow.h
include/gtk/gtkaspectframe.h
include/gtk/gtkbbox.h
include/gtk/gtkbin.h
include/gtk/gtkbox.h
include/gtk/gtkbutton.h
include/gtk/gtkcheckbutton.h
include/gtk/gtkcheckmenuitem.h
include/gtk/gtkclist.h
include/gtk/gtkcolorsel.h
include/gtk/gtkcombo.h
include/gtk/gtkcontainer.h
include/gtk/gtkcurve.h
include/gtk/gtkdata.h
include/gtk/gtkdebug.h
include/gtk/gtkdialog.h
include/gtk/gtkdrawingarea.h
include/gtk/gtkeditable.h
include/gtk/gtkentry.h
include/gtk/gtkenums.h
include/gtk/gtkeventbox.h
include/gtk/gtkfeatures.h
include/gtk/gtkfilesel.h
include/gtk/gtkfixed.h
include/gtk/gtkframe.h
include/gtk/gtkgamma.h
include/gtk/gtkgc.h
include/gtk/gtkhandlebox.h
include/gtk/gtkhbbox.h
include/gtk/gtkhbox.h
include/gtk/gtkhpaned.h
include/gtk/gtkhruler.h
include/gtk/gtkhscale.h
include/gtk/gtkhscrollbar.h
include/gtk/gtkhseparator.h
include/gtk/gtkimage.h
include/gtk/gtkinputdialog.h
include/gtk/gtkitem.h
include/gtk/gtklabel.h
include/gtk/gtklist.h
include/gtk/gtklistitem.h
include/gtk/gtkmain.h
include/gtk/gtkmenu.h
include/gtk/gtkmenubar.h
include/gtk/gtkmenufactory.h
include/gtk/gtkmenuitem.h
include/gtk/gtkmenushell.h
include/gtk/gtkmisc.h
include/gtk/gtknotebook.h
include/gtk/gtkobject.h
include/gtk/gtkoptionmenu.h
include/gtk/gtkpaned.h
include/gtk/gtkpixmap.h
include/gtk/gtkpreview.h
include/gtk/gtkprivate.h
include/gtk/gtkprogressbar.h
include/gtk/gtkradiobutton.h
include/gtk/gtkradiomenuitem.h
include/gtk/gtkrange.h
include/gtk/gtkrc.h
include/gtk/gtkruler.h
include/gtk/gtkscale.h
include/gtk/gtkscrollbar.h
include/gtk/gtkscrolledwindow.h
include/gtk/gtkselection.h
include/gtk/gtkseparator.h
include/gtk/gtksignal.h
include/gtk/gtkspinbutton.h
include/gtk/gtkstatusbar.h
include/gtk/gtkstyle.h
include/gtk/gtktable.h
include/gtk/gtktext.h
include/gtk/gtktipsquery.h
include/gtk/gtktogglebutton.h
include/gtk/gtktoolbar.h
include/gtk/gtktooltips.h
include/gtk/gtktree.h
include/gtk/gtktreeitem.h
include/gtk/gtktypebuiltins.h
include/gtk/gtktypeutils.h
include/gtk/gtkvbbox.h
include/gtk/gtkvbox.h
include/gtk/gtkviewport.h
include/gtk/gtkvpaned.h
include/gtk/gtkvruler.h
include/gtk/gtkvscale.h
include/gtk/gtkvscrollbar.h
include/gtk/gtkvseparator.h
include/gtk/gtkwidget.h
include/gtk/gtkwindow.h
@unexec install-info --delete %D/info/gdk.info %D/info/dir
@unexec install-info --delete %D/info/glib.info %D/info/dir
@unexec install-info --delete %D/info/gtk.info %D/info/dir
info/gdk.info
info/glib.info
info/gtk.info
@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir
@exec install-info %D/info/gdk.info %D/info/dir
@exec install-info %D/info/glib.info %D/info/dir
@exec install-info %D/info/gtk.info %D/info/dir
lib/libgdk.a
lib/libgdk.la
lib/libgdk.so
lib/libgdk.so.1.5
lib/libglib.a
lib/libglib.la
lib/libglib.so
lib/libglib.so.1.5
lib/libgtk.a
lib/libgtk.la
lib/libgtk.so
lib/libgtk.so.1.5
man/man1/gtk-config.1.gz
share/aclocal/gtk.m4
bin/gtk11-config
include/gtk11/gdk/gdk.h
include/gtk11/gdk/gdkcursors.h
include/gtk11/gdk/gdki18n.h
include/gtk11/gdk/gdkkeysyms.h
include/gtk11/gdk/gdkprivate.h
include/gtk11/gdk/gdkrgb.h
include/gtk11/gdk/gdktypes.h
include/gtk11/gdk/gdkx.h
include/gtk11/gtk/gtk.h
include/gtk11/gtk/gtkaccelgroup.h
include/gtk11/gtk/gtkaccellabel.h
include/gtk11/gtk/gtkadjustment.h
include/gtk11/gtk/gtkalignment.h
include/gtk11/gtk/gtkarg.h
include/gtk11/gtk/gtkarrow.h
include/gtk11/gtk/gtkaspectframe.h
include/gtk11/gtk/gtkbbox.h
include/gtk11/gtk/gtkbin.h
include/gtk11/gtk/gtkbindings.h
include/gtk11/gtk/gtkbox.h
include/gtk11/gtk/gtkbutton.h
include/gtk11/gtk/gtkcheckbutton.h
include/gtk11/gtk/gtkcheckmenuitem.h
include/gtk11/gtk/gtkclist.h
include/gtk11/gtk/gtkcolorsel.h
include/gtk11/gtk/gtkcombo.h
include/gtk11/gtk/gtkcontainer.h
include/gtk11/gtk/gtkctree.h
include/gtk11/gtk/gtkcurve.h
include/gtk11/gtk/gtkdata.h
include/gtk11/gtk/gtkdebug.h
include/gtk11/gtk/gtkdialog.h
include/gtk11/gtk/gtkdrawingarea.h
include/gtk11/gtk/gtkeditable.h
include/gtk11/gtk/gtkentry.h
include/gtk11/gtk/gtkenums.h
include/gtk11/gtk/gtkeventbox.h
include/gtk11/gtk/gtkfeatures.h
include/gtk11/gtk/gtkfilesel.h
include/gtk11/gtk/gtkfixed.h
include/gtk11/gtk/gtkfontsel.h
include/gtk11/gtk/gtkframe.h
include/gtk11/gtk/gtkgamma.h
include/gtk11/gtk/gtkgc.h
include/gtk11/gtk/gtkhandlebox.h
include/gtk11/gtk/gtkhbbox.h
include/gtk11/gtk/gtkhbox.h
include/gtk11/gtk/gtkhpaned.h
include/gtk11/gtk/gtkhruler.h
include/gtk11/gtk/gtkhscale.h
include/gtk11/gtk/gtkhscrollbar.h
include/gtk11/gtk/gtkhseparator.h
include/gtk11/gtk/gtkimage.h
include/gtk11/gtk/gtkinputdialog.h
include/gtk11/gtk/gtkitem.h
include/gtk11/gtk/gtkitemfactory.h
include/gtk11/gtk/gtklabel.h
include/gtk11/gtk/gtklist.h
include/gtk11/gtk/gtklistitem.h
include/gtk11/gtk/gtkmain.h
include/gtk11/gtk/gtkmarshal.h
include/gtk11/gtk/gtkmenu.h
include/gtk11/gtk/gtkmenubar.h
include/gtk11/gtk/gtkmenufactory.h
include/gtk11/gtk/gtkmenuitem.h
include/gtk11/gtk/gtkmenushell.h
include/gtk11/gtk/gtkmisc.h
include/gtk11/gtk/gtknotebook.h
include/gtk11/gtk/gtkobject.h
include/gtk11/gtk/gtkoptionmenu.h
include/gtk11/gtk/gtkpacker.h
include/gtk11/gtk/gtkpaned.h
include/gtk11/gtk/gtkpixmap.h
include/gtk11/gtk/gtkpreview.h
include/gtk11/gtk/gtkprivate.h
include/gtk11/gtk/gtkprogress.h
include/gtk11/gtk/gtkprogressbar.h
include/gtk11/gtk/gtkradiobutton.h
include/gtk11/gtk/gtkradiomenuitem.h
include/gtk11/gtk/gtkrange.h
include/gtk11/gtk/gtkrc.h
include/gtk11/gtk/gtkruler.h
include/gtk11/gtk/gtkscale.h
include/gtk11/gtk/gtkscrollbar.h
include/gtk11/gtk/gtkscrolledwindow.h
include/gtk11/gtk/gtkselection.h
include/gtk11/gtk/gtkseparator.h
include/gtk11/gtk/gtksignal.h
include/gtk11/gtk/gtkspinbutton.h
include/gtk11/gtk/gtkstatusbar.h
include/gtk11/gtk/gtkstyle.h
include/gtk11/gtk/gtktable.h
include/gtk11/gtk/gtktext.h
include/gtk11/gtk/gtktipsquery.h
include/gtk11/gtk/gtktogglebutton.h
include/gtk11/gtk/gtktoolbar.h
include/gtk11/gtk/gtktooltips.h
include/gtk11/gtk/gtktree.h
include/gtk11/gtk/gtktreeitem.h
include/gtk11/gtk/gtktypebuiltins.h
include/gtk11/gtk/gtktypeutils.h
include/gtk11/gtk/gtkvbbox.h
include/gtk11/gtk/gtkvbox.h
include/gtk11/gtk/gtkviewport.h
include/gtk11/gtk/gtkvpaned.h
include/gtk11/gtk/gtkvruler.h
include/gtk11/gtk/gtkvscale.h
include/gtk11/gtk/gtkvscrollbar.h
include/gtk11/gtk/gtkvseparator.h
include/gtk11/gtk/gtkwidget.h
include/gtk11/gtk/gtkwindow.h
lib/libgdk-1.1.a
lib/libgdk-1.1.la
lib/libgdk-1.1.so
lib/libgdk-1.1.so.1.0
lib/libgtk-1.1.a
lib/libgtk-1.1.la
lib/libgtk-1.1.so
lib/libgtk-1.1.so.1.0
share/aclocal/gtk11.m4
@unexec /sbin/ldconfig -R
@exec /sbin/ldconfig -m %D/lib
@dirrm include/gdk
@dirrm include/gtk
@dirrm include/gtk11/gdk
@dirrm include/gtk11/gtk
@dirrm include/gtk11

View File

@ -1,31 +1,24 @@
# New ports collection makefile for: gtk
# Version required: 1.0.5
# Version required: 1.1.1
# Date Created: 28 Sep 1997
# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW>
#
# $Id: Makefile,v 1.21 1998/07/30 05:24:38 vanilla Exp $
# $Id: Makefile,v 1.22 1998/08/07 23:08:38 asami Exp $
#
DISTNAME= gtk+-1.0.5
PKGNAME= gtk-1.0.5
DISTNAME= gtk+-1.1.1
PKGNAME= gtk-1.1.1
CATEGORIES= x11-toolkits
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.0/ \
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.0/ \
http://www.ameth.org/gimp/pub/gtk/v1.0/
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.1/ \
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.1/ \
http://www.ameth.org/gimp/pub/gtk/v1.1/
MAINTAINER= vanilla@FreeBSD.ORG
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ENV= INSTALL='$${INSTALL} -c'
MAN1= gtk-config.1
pre-install:
@if [ ! -f ${PREFIX}/info/dir ]; then \
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
fi
CONFIGURE_ARGS= --includedir=${PREFIX}/include/gtk11
post-install:
${LDCONFIG} -m ${PREFIX}/lib

View File

@ -1 +1 @@
MD5 (gtk+-1.0.5.tar.gz) = 948121b18c4b4f1c49e8876927569dcf
MD5 (gtk+-1.1.1.tar.gz) = 9725821ec86dbe570f45fc81b8457202

View File

@ -1,132 +1,126 @@
bin/gtk-config
include/gdk/gdk.h
include/gdk/gdkcursors.h
include/gdk/gdki18n.h
include/gdk/gdkkeysyms.h
include/gdk/gdkprivate.h
include/gdk/gdktypes.h
include/gdk/gdkx.h
include/glib.h
include/glibconfig.h
include/gtk/gtk.h
include/gtk/gtkaccelerator.h
include/gtk/gtkadjustment.h
include/gtk/gtkalignment.h
include/gtk/gtkarrow.h
include/gtk/gtkaspectframe.h
include/gtk/gtkbbox.h
include/gtk/gtkbin.h
include/gtk/gtkbox.h
include/gtk/gtkbutton.h
include/gtk/gtkcheckbutton.h
include/gtk/gtkcheckmenuitem.h
include/gtk/gtkclist.h
include/gtk/gtkcolorsel.h
include/gtk/gtkcombo.h
include/gtk/gtkcontainer.h
include/gtk/gtkcurve.h
include/gtk/gtkdata.h
include/gtk/gtkdebug.h
include/gtk/gtkdialog.h
include/gtk/gtkdrawingarea.h
include/gtk/gtkeditable.h
include/gtk/gtkentry.h
include/gtk/gtkenums.h
include/gtk/gtkeventbox.h
include/gtk/gtkfeatures.h
include/gtk/gtkfilesel.h
include/gtk/gtkfixed.h
include/gtk/gtkframe.h
include/gtk/gtkgamma.h
include/gtk/gtkgc.h
include/gtk/gtkhandlebox.h
include/gtk/gtkhbbox.h
include/gtk/gtkhbox.h
include/gtk/gtkhpaned.h
include/gtk/gtkhruler.h
include/gtk/gtkhscale.h
include/gtk/gtkhscrollbar.h
include/gtk/gtkhseparator.h
include/gtk/gtkimage.h
include/gtk/gtkinputdialog.h
include/gtk/gtkitem.h
include/gtk/gtklabel.h
include/gtk/gtklist.h
include/gtk/gtklistitem.h
include/gtk/gtkmain.h
include/gtk/gtkmenu.h
include/gtk/gtkmenubar.h
include/gtk/gtkmenufactory.h
include/gtk/gtkmenuitem.h
include/gtk/gtkmenushell.h
include/gtk/gtkmisc.h
include/gtk/gtknotebook.h
include/gtk/gtkobject.h
include/gtk/gtkoptionmenu.h
include/gtk/gtkpaned.h
include/gtk/gtkpixmap.h
include/gtk/gtkpreview.h
include/gtk/gtkprivate.h
include/gtk/gtkprogressbar.h
include/gtk/gtkradiobutton.h
include/gtk/gtkradiomenuitem.h
include/gtk/gtkrange.h
include/gtk/gtkrc.h
include/gtk/gtkruler.h
include/gtk/gtkscale.h
include/gtk/gtkscrollbar.h
include/gtk/gtkscrolledwindow.h
include/gtk/gtkselection.h
include/gtk/gtkseparator.h
include/gtk/gtksignal.h
include/gtk/gtkspinbutton.h
include/gtk/gtkstatusbar.h
include/gtk/gtkstyle.h
include/gtk/gtktable.h
include/gtk/gtktext.h
include/gtk/gtktipsquery.h
include/gtk/gtktogglebutton.h
include/gtk/gtktoolbar.h
include/gtk/gtktooltips.h
include/gtk/gtktree.h
include/gtk/gtktreeitem.h
include/gtk/gtktypebuiltins.h
include/gtk/gtktypeutils.h
include/gtk/gtkvbbox.h
include/gtk/gtkvbox.h
include/gtk/gtkviewport.h
include/gtk/gtkvpaned.h
include/gtk/gtkvruler.h
include/gtk/gtkvscale.h
include/gtk/gtkvscrollbar.h
include/gtk/gtkvseparator.h
include/gtk/gtkwidget.h
include/gtk/gtkwindow.h
@unexec install-info --delete %D/info/gdk.info %D/info/dir
@unexec install-info --delete %D/info/glib.info %D/info/dir
@unexec install-info --delete %D/info/gtk.info %D/info/dir
info/gdk.info
info/glib.info
info/gtk.info
@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir
@exec install-info %D/info/gdk.info %D/info/dir
@exec install-info %D/info/glib.info %D/info/dir
@exec install-info %D/info/gtk.info %D/info/dir
lib/libgdk.a
lib/libgdk.la
lib/libgdk.so
lib/libgdk.so.1.5
lib/libglib.a
lib/libglib.la
lib/libglib.so
lib/libglib.so.1.5
lib/libgtk.a
lib/libgtk.la
lib/libgtk.so
lib/libgtk.so.1.5
man/man1/gtk-config.1.gz
share/aclocal/gtk.m4
bin/gtk11-config
include/gtk11/gdk/gdk.h
include/gtk11/gdk/gdkcursors.h
include/gtk11/gdk/gdki18n.h
include/gtk11/gdk/gdkkeysyms.h
include/gtk11/gdk/gdkprivate.h
include/gtk11/gdk/gdkrgb.h
include/gtk11/gdk/gdktypes.h
include/gtk11/gdk/gdkx.h
include/gtk11/gtk/gtk.h
include/gtk11/gtk/gtkaccelgroup.h
include/gtk11/gtk/gtkaccellabel.h
include/gtk11/gtk/gtkadjustment.h
include/gtk11/gtk/gtkalignment.h
include/gtk11/gtk/gtkarg.h
include/gtk11/gtk/gtkarrow.h
include/gtk11/gtk/gtkaspectframe.h
include/gtk11/gtk/gtkbbox.h
include/gtk11/gtk/gtkbin.h
include/gtk11/gtk/gtkbindings.h
include/gtk11/gtk/gtkbox.h
include/gtk11/gtk/gtkbutton.h
include/gtk11/gtk/gtkcheckbutton.h
include/gtk11/gtk/gtkcheckmenuitem.h
include/gtk11/gtk/gtkclist.h
include/gtk11/gtk/gtkcolorsel.h
include/gtk11/gtk/gtkcombo.h
include/gtk11/gtk/gtkcontainer.h
include/gtk11/gtk/gtkctree.h
include/gtk11/gtk/gtkcurve.h
include/gtk11/gtk/gtkdata.h
include/gtk11/gtk/gtkdebug.h
include/gtk11/gtk/gtkdialog.h
include/gtk11/gtk/gtkdrawingarea.h
include/gtk11/gtk/gtkeditable.h
include/gtk11/gtk/gtkentry.h
include/gtk11/gtk/gtkenums.h
include/gtk11/gtk/gtkeventbox.h
include/gtk11/gtk/gtkfeatures.h
include/gtk11/gtk/gtkfilesel.h
include/gtk11/gtk/gtkfixed.h
include/gtk11/gtk/gtkfontsel.h
include/gtk11/gtk/gtkframe.h
include/gtk11/gtk/gtkgamma.h
include/gtk11/gtk/gtkgc.h
include/gtk11/gtk/gtkhandlebox.h
include/gtk11/gtk/gtkhbbox.h
include/gtk11/gtk/gtkhbox.h
include/gtk11/gtk/gtkhpaned.h
include/gtk11/gtk/gtkhruler.h
include/gtk11/gtk/gtkhscale.h
include/gtk11/gtk/gtkhscrollbar.h
include/gtk11/gtk/gtkhseparator.h
include/gtk11/gtk/gtkimage.h
include/gtk11/gtk/gtkinputdialog.h
include/gtk11/gtk/gtkitem.h
include/gtk11/gtk/gtkitemfactory.h
include/gtk11/gtk/gtklabel.h
include/gtk11/gtk/gtklist.h
include/gtk11/gtk/gtklistitem.h
include/gtk11/gtk/gtkmain.h
include/gtk11/gtk/gtkmarshal.h
include/gtk11/gtk/gtkmenu.h
include/gtk11/gtk/gtkmenubar.h
include/gtk11/gtk/gtkmenufactory.h
include/gtk11/gtk/gtkmenuitem.h
include/gtk11/gtk/gtkmenushell.h
include/gtk11/gtk/gtkmisc.h
include/gtk11/gtk/gtknotebook.h
include/gtk11/gtk/gtkobject.h
include/gtk11/gtk/gtkoptionmenu.h
include/gtk11/gtk/gtkpacker.h
include/gtk11/gtk/gtkpaned.h
include/gtk11/gtk/gtkpixmap.h
include/gtk11/gtk/gtkpreview.h
include/gtk11/gtk/gtkprivate.h
include/gtk11/gtk/gtkprogress.h
include/gtk11/gtk/gtkprogressbar.h
include/gtk11/gtk/gtkradiobutton.h
include/gtk11/gtk/gtkradiomenuitem.h
include/gtk11/gtk/gtkrange.h
include/gtk11/gtk/gtkrc.h
include/gtk11/gtk/gtkruler.h
include/gtk11/gtk/gtkscale.h
include/gtk11/gtk/gtkscrollbar.h
include/gtk11/gtk/gtkscrolledwindow.h
include/gtk11/gtk/gtkselection.h
include/gtk11/gtk/gtkseparator.h
include/gtk11/gtk/gtksignal.h
include/gtk11/gtk/gtkspinbutton.h
include/gtk11/gtk/gtkstatusbar.h
include/gtk11/gtk/gtkstyle.h
include/gtk11/gtk/gtktable.h
include/gtk11/gtk/gtktext.h
include/gtk11/gtk/gtktipsquery.h
include/gtk11/gtk/gtktogglebutton.h
include/gtk11/gtk/gtktoolbar.h
include/gtk11/gtk/gtktooltips.h
include/gtk11/gtk/gtktree.h
include/gtk11/gtk/gtktreeitem.h
include/gtk11/gtk/gtktypebuiltins.h
include/gtk11/gtk/gtktypeutils.h
include/gtk11/gtk/gtkvbbox.h
include/gtk11/gtk/gtkvbox.h
include/gtk11/gtk/gtkviewport.h
include/gtk11/gtk/gtkvpaned.h
include/gtk11/gtk/gtkvruler.h
include/gtk11/gtk/gtkvscale.h
include/gtk11/gtk/gtkvscrollbar.h
include/gtk11/gtk/gtkvseparator.h
include/gtk11/gtk/gtkwidget.h
include/gtk11/gtk/gtkwindow.h
lib/libgdk-1.1.a
lib/libgdk-1.1.la
lib/libgdk-1.1.so
lib/libgdk-1.1.so.1.0
lib/libgtk-1.1.a
lib/libgtk-1.1.la
lib/libgtk-1.1.so
lib/libgtk-1.1.so.1.0
share/aclocal/gtk11.m4
@unexec /sbin/ldconfig -R
@exec /sbin/ldconfig -m %D/lib
@dirrm include/gdk
@dirrm include/gtk
@dirrm include/gtk11/gdk
@dirrm include/gtk11/gtk
@dirrm include/gtk11

View File

@ -1,31 +1,24 @@
# New ports collection makefile for: gtk
# Version required: 1.0.5
# Version required: 1.1.1
# Date Created: 28 Sep 1997
# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW>
#
# $Id: Makefile,v 1.21 1998/07/30 05:24:38 vanilla Exp $
# $Id: Makefile,v 1.22 1998/08/07 23:08:38 asami Exp $
#
DISTNAME= gtk+-1.0.5
PKGNAME= gtk-1.0.5
DISTNAME= gtk+-1.1.1
PKGNAME= gtk-1.1.1
CATEGORIES= x11-toolkits
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.0/ \
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.0/ \
http://www.ameth.org/gimp/pub/gtk/v1.0/
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.1/ \
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.1/ \
http://www.ameth.org/gimp/pub/gtk/v1.1/
MAINTAINER= vanilla@FreeBSD.ORG
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ENV= INSTALL='$${INSTALL} -c'
MAN1= gtk-config.1
pre-install:
@if [ ! -f ${PREFIX}/info/dir ]; then \
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
fi
CONFIGURE_ARGS= --includedir=${PREFIX}/include/gtk11
post-install:
${LDCONFIG} -m ${PREFIX}/lib

View File

@ -1 +1 @@
MD5 (gtk+-1.0.5.tar.gz) = 948121b18c4b4f1c49e8876927569dcf
MD5 (gtk+-1.1.1.tar.gz) = 9725821ec86dbe570f45fc81b8457202

View File

@ -1,132 +1,126 @@
bin/gtk-config
include/gdk/gdk.h
include/gdk/gdkcursors.h
include/gdk/gdki18n.h
include/gdk/gdkkeysyms.h
include/gdk/gdkprivate.h
include/gdk/gdktypes.h
include/gdk/gdkx.h
include/glib.h
include/glibconfig.h
include/gtk/gtk.h
include/gtk/gtkaccelerator.h
include/gtk/gtkadjustment.h
include/gtk/gtkalignment.h
include/gtk/gtkarrow.h
include/gtk/gtkaspectframe.h
include/gtk/gtkbbox.h
include/gtk/gtkbin.h
include/gtk/gtkbox.h
include/gtk/gtkbutton.h
include/gtk/gtkcheckbutton.h
include/gtk/gtkcheckmenuitem.h
include/gtk/gtkclist.h
include/gtk/gtkcolorsel.h
include/gtk/gtkcombo.h
include/gtk/gtkcontainer.h
include/gtk/gtkcurve.h
include/gtk/gtkdata.h
include/gtk/gtkdebug.h
include/gtk/gtkdialog.h
include/gtk/gtkdrawingarea.h
include/gtk/gtkeditable.h
include/gtk/gtkentry.h
include/gtk/gtkenums.h
include/gtk/gtkeventbox.h
include/gtk/gtkfeatures.h
include/gtk/gtkfilesel.h
include/gtk/gtkfixed.h
include/gtk/gtkframe.h
include/gtk/gtkgamma.h
include/gtk/gtkgc.h
include/gtk/gtkhandlebox.h
include/gtk/gtkhbbox.h
include/gtk/gtkhbox.h
include/gtk/gtkhpaned.h
include/gtk/gtkhruler.h
include/gtk/gtkhscale.h
include/gtk/gtkhscrollbar.h
include/gtk/gtkhseparator.h
include/gtk/gtkimage.h
include/gtk/gtkinputdialog.h
include/gtk/gtkitem.h
include/gtk/gtklabel.h
include/gtk/gtklist.h
include/gtk/gtklistitem.h
include/gtk/gtkmain.h
include/gtk/gtkmenu.h
include/gtk/gtkmenubar.h
include/gtk/gtkmenufactory.h
include/gtk/gtkmenuitem.h
include/gtk/gtkmenushell.h
include/gtk/gtkmisc.h
include/gtk/gtknotebook.h
include/gtk/gtkobject.h
include/gtk/gtkoptionmenu.h
include/gtk/gtkpaned.h
include/gtk/gtkpixmap.h
include/gtk/gtkpreview.h
include/gtk/gtkprivate.h
include/gtk/gtkprogressbar.h
include/gtk/gtkradiobutton.h
include/gtk/gtkradiomenuitem.h
include/gtk/gtkrange.h
include/gtk/gtkrc.h
include/gtk/gtkruler.h
include/gtk/gtkscale.h
include/gtk/gtkscrollbar.h
include/gtk/gtkscrolledwindow.h
include/gtk/gtkselection.h
include/gtk/gtkseparator.h
include/gtk/gtksignal.h
include/gtk/gtkspinbutton.h
include/gtk/gtkstatusbar.h
include/gtk/gtkstyle.h
include/gtk/gtktable.h
include/gtk/gtktext.h
include/gtk/gtktipsquery.h
include/gtk/gtktogglebutton.h
include/gtk/gtktoolbar.h
include/gtk/gtktooltips.h
include/gtk/gtktree.h
include/gtk/gtktreeitem.h
include/gtk/gtktypebuiltins.h
include/gtk/gtktypeutils.h
include/gtk/gtkvbbox.h
include/gtk/gtkvbox.h
include/gtk/gtkviewport.h
include/gtk/gtkvpaned.h
include/gtk/gtkvruler.h
include/gtk/gtkvscale.h
include/gtk/gtkvscrollbar.h
include/gtk/gtkvseparator.h
include/gtk/gtkwidget.h
include/gtk/gtkwindow.h
@unexec install-info --delete %D/info/gdk.info %D/info/dir
@unexec install-info --delete %D/info/glib.info %D/info/dir
@unexec install-info --delete %D/info/gtk.info %D/info/dir
info/gdk.info
info/glib.info
info/gtk.info
@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir
@exec install-info %D/info/gdk.info %D/info/dir
@exec install-info %D/info/glib.info %D/info/dir
@exec install-info %D/info/gtk.info %D/info/dir
lib/libgdk.a
lib/libgdk.la
lib/libgdk.so
lib/libgdk.so.1.5
lib/libglib.a
lib/libglib.la
lib/libglib.so
lib/libglib.so.1.5
lib/libgtk.a
lib/libgtk.la
lib/libgtk.so
lib/libgtk.so.1.5
man/man1/gtk-config.1.gz
share/aclocal/gtk.m4
bin/gtk11-config
include/gtk11/gdk/gdk.h
include/gtk11/gdk/gdkcursors.h
include/gtk11/gdk/gdki18n.h
include/gtk11/gdk/gdkkeysyms.h
include/gtk11/gdk/gdkprivate.h
include/gtk11/gdk/gdkrgb.h
include/gtk11/gdk/gdktypes.h
include/gtk11/gdk/gdkx.h
include/gtk11/gtk/gtk.h
include/gtk11/gtk/gtkaccelgroup.h
include/gtk11/gtk/gtkaccellabel.h
include/gtk11/gtk/gtkadjustment.h
include/gtk11/gtk/gtkalignment.h
include/gtk11/gtk/gtkarg.h
include/gtk11/gtk/gtkarrow.h
include/gtk11/gtk/gtkaspectframe.h
include/gtk11/gtk/gtkbbox.h
include/gtk11/gtk/gtkbin.h
include/gtk11/gtk/gtkbindings.h
include/gtk11/gtk/gtkbox.h
include/gtk11/gtk/gtkbutton.h
include/gtk11/gtk/gtkcheckbutton.h
include/gtk11/gtk/gtkcheckmenuitem.h
include/gtk11/gtk/gtkclist.h
include/gtk11/gtk/gtkcolorsel.h
include/gtk11/gtk/gtkcombo.h
include/gtk11/gtk/gtkcontainer.h
include/gtk11/gtk/gtkctree.h
include/gtk11/gtk/gtkcurve.h
include/gtk11/gtk/gtkdata.h
include/gtk11/gtk/gtkdebug.h
include/gtk11/gtk/gtkdialog.h
include/gtk11/gtk/gtkdrawingarea.h
include/gtk11/gtk/gtkeditable.h
include/gtk11/gtk/gtkentry.h
include/gtk11/gtk/gtkenums.h
include/gtk11/gtk/gtkeventbox.h
include/gtk11/gtk/gtkfeatures.h
include/gtk11/gtk/gtkfilesel.h
include/gtk11/gtk/gtkfixed.h
include/gtk11/gtk/gtkfontsel.h
include/gtk11/gtk/gtkframe.h
include/gtk11/gtk/gtkgamma.h
include/gtk11/gtk/gtkgc.h
include/gtk11/gtk/gtkhandlebox.h
include/gtk11/gtk/gtkhbbox.h
include/gtk11/gtk/gtkhbox.h
include/gtk11/gtk/gtkhpaned.h
include/gtk11/gtk/gtkhruler.h
include/gtk11/gtk/gtkhscale.h
include/gtk11/gtk/gtkhscrollbar.h
include/gtk11/gtk/gtkhseparator.h
include/gtk11/gtk/gtkimage.h
include/gtk11/gtk/gtkinputdialog.h
include/gtk11/gtk/gtkitem.h
include/gtk11/gtk/gtkitemfactory.h
include/gtk11/gtk/gtklabel.h
include/gtk11/gtk/gtklist.h
include/gtk11/gtk/gtklistitem.h
include/gtk11/gtk/gtkmain.h
include/gtk11/gtk/gtkmarshal.h
include/gtk11/gtk/gtkmenu.h
include/gtk11/gtk/gtkmenubar.h
include/gtk11/gtk/gtkmenufactory.h
include/gtk11/gtk/gtkmenuitem.h
include/gtk11/gtk/gtkmenushell.h
include/gtk11/gtk/gtkmisc.h
include/gtk11/gtk/gtknotebook.h
include/gtk11/gtk/gtkobject.h
include/gtk11/gtk/gtkoptionmenu.h
include/gtk11/gtk/gtkpacker.h
include/gtk11/gtk/gtkpaned.h
include/gtk11/gtk/gtkpixmap.h
include/gtk11/gtk/gtkpreview.h
include/gtk11/gtk/gtkprivate.h
include/gtk11/gtk/gtkprogress.h
include/gtk11/gtk/gtkprogressbar.h
include/gtk11/gtk/gtkradiobutton.h
include/gtk11/gtk/gtkradiomenuitem.h
include/gtk11/gtk/gtkrange.h
include/gtk11/gtk/gtkrc.h
include/gtk11/gtk/gtkruler.h
include/gtk11/gtk/gtkscale.h
include/gtk11/gtk/gtkscrollbar.h
include/gtk11/gtk/gtkscrolledwindow.h
include/gtk11/gtk/gtkselection.h
include/gtk11/gtk/gtkseparator.h
include/gtk11/gtk/gtksignal.h
include/gtk11/gtk/gtkspinbutton.h
include/gtk11/gtk/gtkstatusbar.h
include/gtk11/gtk/gtkstyle.h
include/gtk11/gtk/gtktable.h
include/gtk11/gtk/gtktext.h
include/gtk11/gtk/gtktipsquery.h
include/gtk11/gtk/gtktogglebutton.h
include/gtk11/gtk/gtktoolbar.h
include/gtk11/gtk/gtktooltips.h
include/gtk11/gtk/gtktree.h
include/gtk11/gtk/gtktreeitem.h
include/gtk11/gtk/gtktypebuiltins.h
include/gtk11/gtk/gtktypeutils.h
include/gtk11/gtk/gtkvbbox.h
include/gtk11/gtk/gtkvbox.h
include/gtk11/gtk/gtkviewport.h
include/gtk11/gtk/gtkvpaned.h
include/gtk11/gtk/gtkvruler.h
include/gtk11/gtk/gtkvscale.h
include/gtk11/gtk/gtkvscrollbar.h
include/gtk11/gtk/gtkvseparator.h
include/gtk11/gtk/gtkwidget.h
include/gtk11/gtk/gtkwindow.h
lib/libgdk-1.1.a
lib/libgdk-1.1.la
lib/libgdk-1.1.so
lib/libgdk-1.1.so.1.0
lib/libgtk-1.1.a
lib/libgtk-1.1.la
lib/libgtk-1.1.so
lib/libgtk-1.1.so.1.0
share/aclocal/gtk11.m4
@unexec /sbin/ldconfig -R
@exec /sbin/ldconfig -m %D/lib
@dirrm include/gdk
@dirrm include/gtk
@dirrm include/gtk11/gdk
@dirrm include/gtk11/gtk
@dirrm include/gtk11

View File

@ -1,31 +1,24 @@
# New ports collection makefile for: gtk
# Version required: 1.0.5
# Version required: 1.1.1
# Date Created: 28 Sep 1997
# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW>
#
# $Id: Makefile,v 1.21 1998/07/30 05:24:38 vanilla Exp $
# $Id: Makefile,v 1.22 1998/08/07 23:08:38 asami Exp $
#
DISTNAME= gtk+-1.0.5
PKGNAME= gtk-1.0.5
DISTNAME= gtk+-1.1.1
PKGNAME= gtk-1.1.1
CATEGORIES= x11-toolkits
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.0/ \
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.0/ \
http://www.ameth.org/gimp/pub/gtk/v1.0/
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.1/ \
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.1/ \
http://www.ameth.org/gimp/pub/gtk/v1.1/
MAINTAINER= vanilla@FreeBSD.ORG
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ENV= INSTALL='$${INSTALL} -c'
MAN1= gtk-config.1
pre-install:
@if [ ! -f ${PREFIX}/info/dir ]; then \
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
fi
CONFIGURE_ARGS= --includedir=${PREFIX}/include/gtk11
post-install:
${LDCONFIG} -m ${PREFIX}/lib

View File

@ -1 +1 @@
MD5 (gtk+-1.0.5.tar.gz) = 948121b18c4b4f1c49e8876927569dcf
MD5 (gtk+-1.1.1.tar.gz) = 9725821ec86dbe570f45fc81b8457202

View File

@ -1,132 +1,126 @@
bin/gtk-config
include/gdk/gdk.h
include/gdk/gdkcursors.h
include/gdk/gdki18n.h
include/gdk/gdkkeysyms.h
include/gdk/gdkprivate.h
include/gdk/gdktypes.h
include/gdk/gdkx.h
include/glib.h
include/glibconfig.h
include/gtk/gtk.h
include/gtk/gtkaccelerator.h
include/gtk/gtkadjustment.h
include/gtk/gtkalignment.h
include/gtk/gtkarrow.h
include/gtk/gtkaspectframe.h
include/gtk/gtkbbox.h
include/gtk/gtkbin.h
include/gtk/gtkbox.h
include/gtk/gtkbutton.h
include/gtk/gtkcheckbutton.h
include/gtk/gtkcheckmenuitem.h
include/gtk/gtkclist.h
include/gtk/gtkcolorsel.h
include/gtk/gtkcombo.h
include/gtk/gtkcontainer.h
include/gtk/gtkcurve.h
include/gtk/gtkdata.h
include/gtk/gtkdebug.h
include/gtk/gtkdialog.h
include/gtk/gtkdrawingarea.h
include/gtk/gtkeditable.h
include/gtk/gtkentry.h
include/gtk/gtkenums.h
include/gtk/gtkeventbox.h
include/gtk/gtkfeatures.h
include/gtk/gtkfilesel.h
include/gtk/gtkfixed.h
include/gtk/gtkframe.h
include/gtk/gtkgamma.h
include/gtk/gtkgc.h
include/gtk/gtkhandlebox.h
include/gtk/gtkhbbox.h
include/gtk/gtkhbox.h
include/gtk/gtkhpaned.h
include/gtk/gtkhruler.h
include/gtk/gtkhscale.h
include/gtk/gtkhscrollbar.h
include/gtk/gtkhseparator.h
include/gtk/gtkimage.h
include/gtk/gtkinputdialog.h
include/gtk/gtkitem.h
include/gtk/gtklabel.h
include/gtk/gtklist.h
include/gtk/gtklistitem.h
include/gtk/gtkmain.h
include/gtk/gtkmenu.h
include/gtk/gtkmenubar.h
include/gtk/gtkmenufactory.h
include/gtk/gtkmenuitem.h
include/gtk/gtkmenushell.h
include/gtk/gtkmisc.h
include/gtk/gtknotebook.h
include/gtk/gtkobject.h
include/gtk/gtkoptionmenu.h
include/gtk/gtkpaned.h
include/gtk/gtkpixmap.h
include/gtk/gtkpreview.h
include/gtk/gtkprivate.h
include/gtk/gtkprogressbar.h
include/gtk/gtkradiobutton.h
include/gtk/gtkradiomenuitem.h
include/gtk/gtkrange.h
include/gtk/gtkrc.h
include/gtk/gtkruler.h
include/gtk/gtkscale.h
include/gtk/gtkscrollbar.h
include/gtk/gtkscrolledwindow.h
include/gtk/gtkselection.h
include/gtk/gtkseparator.h
include/gtk/gtksignal.h
include/gtk/gtkspinbutton.h
include/gtk/gtkstatusbar.h
include/gtk/gtkstyle.h
include/gtk/gtktable.h
include/gtk/gtktext.h
include/gtk/gtktipsquery.h
include/gtk/gtktogglebutton.h
include/gtk/gtktoolbar.h
include/gtk/gtktooltips.h
include/gtk/gtktree.h
include/gtk/gtktreeitem.h
include/gtk/gtktypebuiltins.h
include/gtk/gtktypeutils.h
include/gtk/gtkvbbox.h
include/gtk/gtkvbox.h
include/gtk/gtkviewport.h
include/gtk/gtkvpaned.h
include/gtk/gtkvruler.h
include/gtk/gtkvscale.h
include/gtk/gtkvscrollbar.h
include/gtk/gtkvseparator.h
include/gtk/gtkwidget.h
include/gtk/gtkwindow.h
@unexec install-info --delete %D/info/gdk.info %D/info/dir
@unexec install-info --delete %D/info/glib.info %D/info/dir
@unexec install-info --delete %D/info/gtk.info %D/info/dir
info/gdk.info
info/glib.info
info/gtk.info
@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir
@exec install-info %D/info/gdk.info %D/info/dir
@exec install-info %D/info/glib.info %D/info/dir
@exec install-info %D/info/gtk.info %D/info/dir
lib/libgdk.a
lib/libgdk.la
lib/libgdk.so
lib/libgdk.so.1.5
lib/libglib.a
lib/libglib.la
lib/libglib.so
lib/libglib.so.1.5
lib/libgtk.a
lib/libgtk.la
lib/libgtk.so
lib/libgtk.so.1.5
man/man1/gtk-config.1.gz
share/aclocal/gtk.m4
bin/gtk11-config
include/gtk11/gdk/gdk.h
include/gtk11/gdk/gdkcursors.h
include/gtk11/gdk/gdki18n.h
include/gtk11/gdk/gdkkeysyms.h
include/gtk11/gdk/gdkprivate.h
include/gtk11/gdk/gdkrgb.h
include/gtk11/gdk/gdktypes.h
include/gtk11/gdk/gdkx.h
include/gtk11/gtk/gtk.h
include/gtk11/gtk/gtkaccelgroup.h
include/gtk11/gtk/gtkaccellabel.h
include/gtk11/gtk/gtkadjustment.h
include/gtk11/gtk/gtkalignment.h
include/gtk11/gtk/gtkarg.h
include/gtk11/gtk/gtkarrow.h
include/gtk11/gtk/gtkaspectframe.h
include/gtk11/gtk/gtkbbox.h
include/gtk11/gtk/gtkbin.h
include/gtk11/gtk/gtkbindings.h
include/gtk11/gtk/gtkbox.h
include/gtk11/gtk/gtkbutton.h
include/gtk11/gtk/gtkcheckbutton.h
include/gtk11/gtk/gtkcheckmenuitem.h
include/gtk11/gtk/gtkclist.h
include/gtk11/gtk/gtkcolorsel.h
include/gtk11/gtk/gtkcombo.h
include/gtk11/gtk/gtkcontainer.h
include/gtk11/gtk/gtkctree.h
include/gtk11/gtk/gtkcurve.h
include/gtk11/gtk/gtkdata.h
include/gtk11/gtk/gtkdebug.h
include/gtk11/gtk/gtkdialog.h
include/gtk11/gtk/gtkdrawingarea.h
include/gtk11/gtk/gtkeditable.h
include/gtk11/gtk/gtkentry.h
include/gtk11/gtk/gtkenums.h
include/gtk11/gtk/gtkeventbox.h
include/gtk11/gtk/gtkfeatures.h
include/gtk11/gtk/gtkfilesel.h
include/gtk11/gtk/gtkfixed.h
include/gtk11/gtk/gtkfontsel.h
include/gtk11/gtk/gtkframe.h
include/gtk11/gtk/gtkgamma.h
include/gtk11/gtk/gtkgc.h
include/gtk11/gtk/gtkhandlebox.h
include/gtk11/gtk/gtkhbbox.h
include/gtk11/gtk/gtkhbox.h
include/gtk11/gtk/gtkhpaned.h
include/gtk11/gtk/gtkhruler.h
include/gtk11/gtk/gtkhscale.h
include/gtk11/gtk/gtkhscrollbar.h
include/gtk11/gtk/gtkhseparator.h
include/gtk11/gtk/gtkimage.h
include/gtk11/gtk/gtkinputdialog.h
include/gtk11/gtk/gtkitem.h
include/gtk11/gtk/gtkitemfactory.h
include/gtk11/gtk/gtklabel.h
include/gtk11/gtk/gtklist.h
include/gtk11/gtk/gtklistitem.h
include/gtk11/gtk/gtkmain.h
include/gtk11/gtk/gtkmarshal.h
include/gtk11/gtk/gtkmenu.h
include/gtk11/gtk/gtkmenubar.h
include/gtk11/gtk/gtkmenufactory.h
include/gtk11/gtk/gtkmenuitem.h
include/gtk11/gtk/gtkmenushell.h
include/gtk11/gtk/gtkmisc.h
include/gtk11/gtk/gtknotebook.h
include/gtk11/gtk/gtkobject.h
include/gtk11/gtk/gtkoptionmenu.h
include/gtk11/gtk/gtkpacker.h
include/gtk11/gtk/gtkpaned.h
include/gtk11/gtk/gtkpixmap.h
include/gtk11/gtk/gtkpreview.h
include/gtk11/gtk/gtkprivate.h
include/gtk11/gtk/gtkprogress.h
include/gtk11/gtk/gtkprogressbar.h
include/gtk11/gtk/gtkradiobutton.h
include/gtk11/gtk/gtkradiomenuitem.h
include/gtk11/gtk/gtkrange.h
include/gtk11/gtk/gtkrc.h
include/gtk11/gtk/gtkruler.h
include/gtk11/gtk/gtkscale.h
include/gtk11/gtk/gtkscrollbar.h
include/gtk11/gtk/gtkscrolledwindow.h
include/gtk11/gtk/gtkselection.h
include/gtk11/gtk/gtkseparator.h
include/gtk11/gtk/gtksignal.h
include/gtk11/gtk/gtkspinbutton.h
include/gtk11/gtk/gtkstatusbar.h
include/gtk11/gtk/gtkstyle.h
include/gtk11/gtk/gtktable.h
include/gtk11/gtk/gtktext.h
include/gtk11/gtk/gtktipsquery.h
include/gtk11/gtk/gtktogglebutton.h
include/gtk11/gtk/gtktoolbar.h
include/gtk11/gtk/gtktooltips.h
include/gtk11/gtk/gtktree.h
include/gtk11/gtk/gtktreeitem.h
include/gtk11/gtk/gtktypebuiltins.h
include/gtk11/gtk/gtktypeutils.h
include/gtk11/gtk/gtkvbbox.h
include/gtk11/gtk/gtkvbox.h
include/gtk11/gtk/gtkviewport.h
include/gtk11/gtk/gtkvpaned.h
include/gtk11/gtk/gtkvruler.h
include/gtk11/gtk/gtkvscale.h
include/gtk11/gtk/gtkvscrollbar.h
include/gtk11/gtk/gtkvseparator.h
include/gtk11/gtk/gtkwidget.h
include/gtk11/gtk/gtkwindow.h
lib/libgdk-1.1.a
lib/libgdk-1.1.la
lib/libgdk-1.1.so
lib/libgdk-1.1.so.1.0
lib/libgtk-1.1.a
lib/libgtk-1.1.la
lib/libgtk-1.1.so
lib/libgtk-1.1.so.1.0
share/aclocal/gtk11.m4
@unexec /sbin/ldconfig -R
@exec /sbin/ldconfig -m %D/lib
@dirrm include/gdk
@dirrm include/gtk
@dirrm include/gtk11/gdk
@dirrm include/gtk11/gtk
@dirrm include/gtk11