diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1999-05-14 11:54:55 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1999-05-14 11:54:55 +0000 |
commit | b919b8311bc5d38e5731d40525c88c54816f4530 (patch) | |
tree | 35bbb3a9293cb7a160571b1bceb1ca2a52507a18 /x11-toolkits/gtk20 | |
parent | Despite what I said before, this is the official INDEX file for (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_3_2_0'.release/3.2.0
Diffstat (limited to 'x11-toolkits/gtk20')
-rw-r--r-- | x11-toolkits/gtk20/Makefile | 48 | ||||
-rw-r--r-- | x11-toolkits/gtk20/distinfo | 1 | ||||
-rw-r--r-- | x11-toolkits/gtk20/files/patch-ad | 54 | ||||
-rw-r--r-- | x11-toolkits/gtk20/files/patch-ae | 11 | ||||
-rw-r--r-- | x11-toolkits/gtk20/pkg-comment | 1 | ||||
-rw-r--r-- | x11-toolkits/gtk20/pkg-descr | 17 | ||||
-rw-r--r-- | x11-toolkits/gtk20/pkg-plist | 164 |
7 files changed, 0 insertions, 296 deletions
diff --git a/x11-toolkits/gtk20/Makefile b/x11-toolkits/gtk20/Makefile deleted file mode 100644 index 3f95abd930bd..000000000000 --- a/x11-toolkits/gtk20/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: gtk12 -# Version required: 1.2.2 -# Date Created: 28 Sep 1997 -# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW> -# -# $Id: Makefile,v 1.48 1999/03/27 00:00:16 flathill Exp $ -# - -DISTNAME= gtk+-1.2.2 -PKGNAME= gtk-1.2.2 -CATEGORIES= x11-toolkits -MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.2/ \ - ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.2/ \ - http://www.ameth.org/gimp/gtk/v1.2/ - -MAINTAINER= vanilla@FreeBSD.ORG - -LIB_DEPENDS= glib12.1:${PORTSDIR}/devel/glib12 \ - intl.1:${PORTSDIR}/devel/gettext - -USE_X_PREFIX= yes -USE_PERL5= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --includedir=${PREFIX}/include/gtk12 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" \ - LIBS="-L${LOCALBASE}/lib" - -MAN1= gtk12-config.1 - -pre-build: - ${RM} -rf ${WRKSRC}/docs/gtk.info* - -post-install: - @${MKDIR} ${PREFIX}/share/themes/engines - @if [ ! -f ${PREFIX}/share/info ]; then \ - ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ - fi - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib - @${ECHO} '*********************************************************' - @${ECHO} '* *' - @${ECHO} '* If you want to use autoconf with gtk, *' - @${ECHO} '* Please copy gtk.m4 to /usr/local/share/aclocal *' - @${ECHO} '* by yourself, thanks. *' - @${ECHO} '* *' - @${ECHO} '*********************************************************' - -.include <bsd.port.mk> diff --git a/x11-toolkits/gtk20/distinfo b/x11-toolkits/gtk20/distinfo deleted file mode 100644 index ea2fb1bb49c9..000000000000 --- a/x11-toolkits/gtk20/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (gtk+-1.2.2.tar.gz) = 2776dca7d9f907b7b851ac9a4d4fb304 diff --git a/x11-toolkits/gtk20/files/patch-ad b/x11-toolkits/gtk20/files/patch-ad deleted file mode 100644 index f03d93d683ea..000000000000 --- a/x11-toolkits/gtk20/files/patch-ad +++ /dev/null @@ -1,54 +0,0 @@ ---- gtk/gtkrc.c.orig Wed Apr 14 05:20:09 1999 -+++ gtk/gtkrc.c Sun May 2 13:27:23 1999 -@@ -231,9 +231,9 @@ - - var = getenv("GTK_EXE_PREFIX"); - if (var) -- path = g_strdup_printf("%s%s", var, "/lib/gtk/themes/engines"); -+ path = g_strdup_printf("%s%s", var, "/share/themes/engines"); - else -- path = g_strdup_printf("%s%s", GTK_EXE_PREFIX, "/lib/gtk/themes/engines"); -+ path = g_strdup_printf("%s%s", GTK_EXE_PREFIX, "/share/themes/engines"); - - return path; - } -@@ -246,9 +246,9 @@ - - var = getenv("GTK_DATA_PREFIX"); - if (var) -- path = g_strdup_printf("%s%s", var, "/share/gtk/themes"); -+ path = g_strdup_printf("%s%s", var, "/share/themes"); - else -- path = g_strdup_printf("%s%s", GTK_DATA_PREFIX, "/share/gtk/themes"); -+ path = g_strdup_printf("%s%s", GTK_DATA_PREFIX, "/share/themes"); - - for (n = 0; pixmap_path[n]; n++) ; - if (n >= GTK_RC_MAX_PIXMAP_PATHS - 1) -@@ -282,15 +282,15 @@ - - var = getenv("GTK_EXE_PREFIX"); - if (var) -- path = g_strdup_printf("%s%s", var, "/lib/gtk/themes/engines"); -+ path = g_strdup_printf("%s%s", var, "/share/themes/engines"); - else -- path = g_strdup_printf("%s%s", GTK_EXE_PREFIX, "/lib/gtk/themes/engines"); -+ path = g_strdup_printf("%s%s", GTK_EXE_PREFIX, "/share/themes/engines"); - module_path[n++] = g_strdup(path); - g_free(path); - - var = g_get_home_dir (); - if (var) -- path = g_strdup_printf("%s%s", var, ".gtk/lib/themes/engines"); -+ path = g_strdup_printf("%s%s", var, ".gtk/themes/engines"); - module_path[n++] = g_strdup(path); - module_path[n] = NULL; - g_free(path); -@@ -324,7 +324,7 @@ - } - else - { -- str = g_strdup_printf ("%s%s", GTK_SYSCONFDIR, "/gtk/gtkrc"); -+ str = g_strdup_printf ("%s%s", GTK_SYSCONFDIR, "/gtkrc"); - gtk_rc_add_default_file (str); - g_free (str); - diff --git a/x11-toolkits/gtk20/files/patch-ae b/x11-toolkits/gtk20/files/patch-ae deleted file mode 100644 index 854b0d4e5cc3..000000000000 --- a/x11-toolkits/gtk20/files/patch-ae +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Thu Feb 25 13:02:28 1999 -+++ configure Tue Mar 2 11:11:14 1999 -@@ -3977,7 +3977,7 @@ - cat conftest.$ac_ext >&5 - rm -rf conftest* - CATOBJEXT=.mo -- DATADIRNAME=lib -+ DATADIRNAME=share - fi - rm -f conftest* - INSTOBJEXT=.mo diff --git a/x11-toolkits/gtk20/pkg-comment b/x11-toolkits/gtk20/pkg-comment deleted file mode 100644 index f4cdc774e29b..000000000000 --- a/x11-toolkits/gtk20/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -General Toolkit for X11 GUI. diff --git a/x11-toolkits/gtk20/pkg-descr b/x11-toolkits/gtk20/pkg-descr deleted file mode 100644 index 75f50206dbe7..000000000000 --- a/x11-toolkits/gtk20/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ - GTK is a library for creating graphical user interfaces similar to -the Motif "look and feel". It is designed to be small and efficient, but -still flexible enough to allow the programmer freedom in the interfaces -created. GTK allows the programmer to use a variety of standard user -interface widgets such as push, radio and check buttons, menus, lists -and frames. It also provides several "container" widgets which can be -used to control the layout of the user interface elements. - - GTK provides some unique features. (At least, I know of no other -widget library which provides them). For example, a button does not -contain a label, it contains a child widget, which in most instances -will be a label. However, the child widget can also be a pixmap, image -or any combination possible the programmer desires. This flexibility is -adhered to throughout the library. - -- Vanilla -vanilla@MinJe.com.TW diff --git a/x11-toolkits/gtk20/pkg-plist b/x11-toolkits/gtk20/pkg-plist deleted file mode 100644 index eaa533417e51..000000000000 --- a/x11-toolkits/gtk20/pkg-plist +++ /dev/null @@ -1,164 +0,0 @@ -bin/gtk12-config -include/gtk12/gdk/gdk.h -include/gtk12/gdk/gdkcursors.h -include/gtk12/gdk/gdki18n.h -include/gtk12/gdk/gdkkeysyms.h -include/gtk12/gdk/gdkprivate.h -include/gtk12/gdk/gdkrgb.h -include/gtk12/gdk/gdktypes.h -include/gtk12/gdk/gdkx.h -include/gtk12/gtk/gtk.h -include/gtk12/gtk/gtkaccelgroup.h -include/gtk12/gtk/gtkaccellabel.h -include/gtk12/gtk/gtkadjustment.h -include/gtk12/gtk/gtkalignment.h -include/gtk12/gtk/gtkarg.h -include/gtk12/gtk/gtkarrow.h -include/gtk12/gtk/gtkaspectframe.h -include/gtk12/gtk/gtkbbox.h -include/gtk12/gtk/gtkbin.h -include/gtk12/gtk/gtkbindings.h -include/gtk12/gtk/gtkbox.h -include/gtk12/gtk/gtkbutton.h -include/gtk12/gtk/gtkcalendar.h -include/gtk12/gtk/gtkcheckbutton.h -include/gtk12/gtk/gtkcheckmenuitem.h -include/gtk12/gtk/gtkclist.h -include/gtk12/gtk/gtkcolorsel.h -include/gtk12/gtk/gtkcombo.h -include/gtk12/gtk/gtkcompat.h -include/gtk12/gtk/gtkcontainer.h -include/gtk12/gtk/gtkctree.h -include/gtk12/gtk/gtkcurve.h -include/gtk12/gtk/gtkdata.h -include/gtk12/gtk/gtkdebug.h -include/gtk12/gtk/gtkdialog.h -include/gtk12/gtk/gtkdnd.h -include/gtk12/gtk/gtkdrawingarea.h -include/gtk12/gtk/gtkeditable.h -include/gtk12/gtk/gtkentry.h -include/gtk12/gtk/gtkenums.h -include/gtk12/gtk/gtkeventbox.h -include/gtk12/gtk/gtkfeatures.h -include/gtk12/gtk/gtkfilesel.h -include/gtk12/gtk/gtkfixed.h -include/gtk12/gtk/gtkfontsel.h -include/gtk12/gtk/gtkframe.h -include/gtk12/gtk/gtkgamma.h -include/gtk12/gtk/gtkgc.h -include/gtk12/gtk/gtkhandlebox.h -include/gtk12/gtk/gtkhbbox.h -include/gtk12/gtk/gtkhbox.h -include/gtk12/gtk/gtkhpaned.h -include/gtk12/gtk/gtkhruler.h -include/gtk12/gtk/gtkhscale.h -include/gtk12/gtk/gtkhscrollbar.h -include/gtk12/gtk/gtkhseparator.h -include/gtk12/gtk/gtkimage.h -include/gtk12/gtk/gtkinputdialog.h -include/gtk12/gtk/gtkinvisible.h -include/gtk12/gtk/gtkitem.h -include/gtk12/gtk/gtkitemfactory.h -include/gtk12/gtk/gtklabel.h -include/gtk12/gtk/gtklayout.h -include/gtk12/gtk/gtklist.h -include/gtk12/gtk/gtklistitem.h -include/gtk12/gtk/gtkmain.h -include/gtk12/gtk/gtkmarshal.h -include/gtk12/gtk/gtkmenu.h -include/gtk12/gtk/gtkmenubar.h -include/gtk12/gtk/gtkmenufactory.h -include/gtk12/gtk/gtkmenuitem.h -include/gtk12/gtk/gtkmenushell.h -include/gtk12/gtk/gtkmisc.h -include/gtk12/gtk/gtknotebook.h -include/gtk12/gtk/gtkobject.h -include/gtk12/gtk/gtkoptionmenu.h -include/gtk12/gtk/gtkpacker.h -include/gtk12/gtk/gtkpaned.h -include/gtk12/gtk/gtkpixmap.h -include/gtk12/gtk/gtkplug.h -include/gtk12/gtk/gtkpreview.h -include/gtk12/gtk/gtkprivate.h -include/gtk12/gtk/gtkprogress.h -include/gtk12/gtk/gtkprogressbar.h -include/gtk12/gtk/gtkradiobutton.h -include/gtk12/gtk/gtkradiomenuitem.h -include/gtk12/gtk/gtkrange.h -include/gtk12/gtk/gtkrc.h -include/gtk12/gtk/gtkruler.h -include/gtk12/gtk/gtkscale.h -include/gtk12/gtk/gtkscrollbar.h -include/gtk12/gtk/gtkscrolledwindow.h -include/gtk12/gtk/gtkselection.h -include/gtk12/gtk/gtkseparator.h -include/gtk12/gtk/gtksignal.h -include/gtk12/gtk/gtksocket.h -include/gtk12/gtk/gtkspinbutton.h -include/gtk12/gtk/gtkstatusbar.h -include/gtk12/gtk/gtkstyle.h -include/gtk12/gtk/gtktable.h -include/gtk12/gtk/gtktearoffmenuitem.h -include/gtk12/gtk/gtktext.h -include/gtk12/gtk/gtkthemes.h -include/gtk12/gtk/gtktipsquery.h -include/gtk12/gtk/gtktogglebutton.h -include/gtk12/gtk/gtktoolbar.h -include/gtk12/gtk/gtktooltips.h -include/gtk12/gtk/gtktree.h -include/gtk12/gtk/gtktreeitem.h -include/gtk12/gtk/gtktypebuiltins.h -include/gtk12/gtk/gtktypeutils.h -include/gtk12/gtk/gtkvbbox.h -include/gtk12/gtk/gtkvbox.h -include/gtk12/gtk/gtkviewport.h -include/gtk12/gtk/gtkvpaned.h -include/gtk12/gtk/gtkvruler.h -include/gtk12/gtk/gtkvscale.h -include/gtk12/gtk/gtkvscrollbar.h -include/gtk12/gtk/gtkvseparator.h -include/gtk12/gtk/gtkwidget.h -include/gtk12/gtk/gtkwindow.h -@unexec install-info --delete %D/info/gdk.info %D/info/dir -@unexec install-info --delete %D/info/gtk.info %D/info/dir -info/gdk.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/gtk.info %D/info/dir -lib/libgdk12.a -lib/libgdk12.la -lib/libgdk12.so -lib/libgdk12.so.1 -lib/libgtk12.a -lib/libgtk12.la -lib/libgtk12.so -lib/libgtk12.so.1 -@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R -@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B -share/locale/cs/LC_MESSAGES/gtk+.mo -share/locale/de/LC_MESSAGES/gtk+.mo -share/locale/es/LC_MESSAGES/gtk+.mo -share/locale/fr/LC_MESSAGES/gtk+.mo -share/locale/hu/LC_MESSAGES/gtk+.mo -share/locale/it/LC_MESSAGES/gtk+.mo -share/locale/ja/LC_MESSAGES/gtk+.mo -share/locale/ko/LC_MESSAGES/gtk+.mo -share/locale/nl/LC_MESSAGES/gtk+.mo -share/locale/no/LC_MESSAGES/gtk+.mo -share/locale/pl/LC_MESSAGES/gtk+.mo -share/locale/pt/LC_MESSAGES/gtk+.mo -share/locale/ru/LC_MESSAGES/gtk+.mo -share/locale/sv/LC_MESSAGES/gtk+.mo -share/themes/Default/gtk/gtkrc -share/themes/Default/gtk/gtkrc.ja -share/themes/Default/gtk/gtkrc.ko -share/themes/Default/gtk/gtkrc.ru -@exec mkdir -p %D/share/themes/engines -@dirrm share/themes/Default/gtk -@dirrm share/themes/Default -@dirrm share/themes/engines -@dirrm share/themes -@dirrm include/gtk12/gdk -@dirrm include/gtk12/gtk -@dirrm include/gtk12 |