diff options
Diffstat (limited to 'devel/glib20')
-rw-r--r-- | devel/glib20/Makefile | 41 | ||||
-rw-r--r-- | devel/glib20/distinfo | 1 | ||||
-rw-r--r-- | devel/glib20/files/patch-ae | 81 | ||||
-rw-r--r-- | devel/glib20/files/patch-ag | 23 | ||||
-rw-r--r-- | devel/glib20/files/patch-ah | 11 | ||||
-rw-r--r-- | devel/glib20/files/patch-ltmain.sh | 18 | ||||
-rw-r--r-- | devel/glib20/pkg-comment | 1 | ||||
-rw-r--r-- | devel/glib20/pkg-descr | 14 | ||||
-rw-r--r-- | devel/glib20/pkg-plist | 86 |
9 files changed, 0 insertions, 276 deletions
diff --git a/devel/glib20/Makefile b/devel/glib20/Makefile deleted file mode 100644 index 7dd55b814ef2..000000000000 --- a/devel/glib20/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: glib13 -# Date Created: 28 July 1998 -# Whom: Vanilla I. Shu <vanilla@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= glib -PORTVERSION= 1.3.6 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.gimp.org/pub/%SUBDIR%/ \ - ftp://ftp.cs.umn.edu/pub/gimp/%SUBDIR%/ \ - http://www.ameth.org/gimp/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/gimp/%SUBDIR%,} -MASTER_SITE_SUBDIR= gtk/v${PORTVERSION:R} - -MAINTAINER= gnome@FreeBSD.org - -BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig -LIB_DEPENDS= giconv.2:${PORTSDIR}/converters/libiconv -RUN_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig - -NO_LATEST_LINK= "Unstable, development version." - -GNU_CONFIGURE= yes -INSTALLS_SHLIB= yes -USE_GMAKE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" - -MAN1= glib-genmarshal.1 glib-mkenums.1 - -pre-patch: - @find ${WRKSRC} -type f | xargs ${GREP} -l iconv.h | \ - xargs ${PERL} -pi -e "s|iconv\.h|giconv.h|g" - @find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \ - 's|\$\(libdir\)/pkgconfig|\$\(prefix\)/libdata/pkgconfig|g' - -.include <bsd.port.mk> diff --git a/devel/glib20/distinfo b/devel/glib20/distinfo deleted file mode 100644 index 07b4a299dd12..000000000000 --- a/devel/glib20/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (glib-1.3.6.tar.gz) = fe116d632b3b628d8114ac5a56855722 diff --git a/devel/glib20/files/patch-ae b/devel/glib20/files/patch-ae deleted file mode 100644 index e05693d07459..000000000000 --- a/devel/glib20/files/patch-ae +++ /dev/null @@ -1,81 +0,0 @@ - -$FreeBSD$ - ---- configure.orig Wed Jun 13 19:39:30 2001 -+++ configure Wed Aug 1 19:33:18 2001 -@@ -10018,6 +10018,12 @@ - linux*) - G_MODULE_LDFLAGS='-rdynamic' - ;; -+ freebsd*) -+ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` -+ if test $objformat = "elf"; then -+ G_MODULE_LDFLAGS='-Wl,-E' -+ fi -+ ;; - esac - LIBS_orig="$LIBS" - LDFLAGS_orig="$LDFLAGS" -@@ -10488,8 +10494,8 @@ - G_THREAD_CFLAGS="$G_THREAD_CFLAGS -mthreads" - fi - ;; -- *-freebsd2.2*) -- G_THREAD_CFLAGS="$G_THREAD_CFLAGS -D_THREAD_SAFE" -+ *-freebsd*) -+ G_THREAD_CFLAGS="$G_THREAD_CFLAGS $PTHREAD_CFLAGS" - - # FreeBSD 2.2.x shiped with gcc 2.7.2.x, which doesn't support - # -mthreads flag. -@@ -10569,13 +10575,13 @@ - fi - ;; - *) -- for thread_lib in "" pthread pthread32 pthreads c_r thread dce; do -+ for thread_lib in "$PTHREAD_LIBS" "" pthread pthread32 pthreads c_r thread dce; do - if test x"$thread_lib" = x; then - add_thread_lib="" - IN="" - else -- add_thread_lib="-l$thread_lib" -- IN=" in -l$thread_lib" -+ add_thread_lib="$thread_lib" -+ IN=" in $thread_lib" - fi - if test x"$have_threads" = xposix; then - defattr=0 -@@ -11114,6 +11120,7 @@ - if test "$cross_compiling" = yes; then - { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } - else -+# LIBS="-lgiconv $LIBS" - cat > conftest.$ac_ext <<EOF - #line 11119 "configure" - #include "confdefs.h" -@@ -11481,14 +11488,14 @@ - # - # Check for libiconv - # -- echo $ac_n "checking for libiconv_open in -liconv""... $ac_c" 1>&6 --echo "configure:11486: checking for libiconv_open in -liconv" >&5 -+ echo $ac_n "checking for libiconv_open in -lgiconv""... $ac_c" 1>&6 -+echo "configure:11486: checking for libiconv_open in -lgiconv" >&5 - ac_lib_var=`echo iconv'_'libiconv_open | sed 'y%./+-%__p_%'` - if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" --LIBS="-liconv $LIBS" -+LIBS="-lgiconv $LIBS" - cat > conftest.$ac_ext <<EOF - #line 11494 "configure" - #include "confdefs.h" -@@ -11528,7 +11535,7 @@ - fi - - if test "x$with_libiconv" = "xyes" ; then -- ICONV_LIBS="-liconv" -+ ICONV_LIBS="-lgiconv" - cat >> confdefs.h <<\EOF - #define USE_LIBICONV 1 - EOF diff --git a/devel/glib20/files/patch-ag b/devel/glib20/files/patch-ag deleted file mode 100644 index 6303062bd037..000000000000 --- a/devel/glib20/files/patch-ag +++ /dev/null @@ -1,23 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in.orig Wed Jul 18 15:45:33 2001 -+++ Makefile.in Wed Jul 18 15:47:24 2001 -@@ -136,7 +136,7 @@ - - AUTOMAKE_OPTIONS = 1.4 - --SUBDIRS = . m4macros gobject gmodule gthread docs tests build -+SUBDIRS = . m4macros gobject gmodule gthread docs build - - INCLUDES = -DG_LOG_DOMAIN=g_log_domain_glib @GLIB_DEBUG_FLAGS@ -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION - -@@ -160,7 +160,7 @@ - glibinclude_HEADERS = galloca.h garray.h gasyncqueue.h gbacktrace.h gcache.h gcompletion.h gconvert.h gdataset.h gdate.h gerror.h gfileutils.h ghash.h ghook.h giochannel.h glib.h glib-object.h glist.h gmacros.h gmain.h gmarkup.h gmem.h gmessages.h gnode.h gpattern.h gprimes.h gqsort.h gquark.h gqueue.h grand.h grel.h gscanner.h gshell.h gslist.h gspawn.h gstrfuncs.h gstring.h gthread.h gthreadpool.h gtimer.h gtree.h gtypes.h gunicode.h gutils.h gwin32.h - - --configexecincludedir = $(libdir)/glib-2.0/include -+configexecincludedir = $(glibincludedir) - - CONFIGURE_DEPENDENCIES = acglib.m4 - BUILT_SOURCES = glib-config-2.0 diff --git a/devel/glib20/files/patch-ah b/devel/glib20/files/patch-ah deleted file mode 100644 index afb4544d268b..000000000000 --- a/devel/glib20/files/patch-ah +++ /dev/null @@ -1,11 +0,0 @@ ---- docs/reference/Makefile.in 2000/11/20 09:49:25 1.1 -+++ docs/reference/Makefile.in 2000/11/20 09:50:55 -@@ -106,7 +106,7 @@ - STRIP_END = @STRIP_END@ - VERSION = @VERSION@ - --SUBDIRS = glib gobject -+SUBDIRS = #glib gobject - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = ../../config.h - CONFIG_CLEAN_FILES = diff --git a/devel/glib20/files/patch-ltmain.sh b/devel/glib20/files/patch-ltmain.sh deleted file mode 100644 index 00114387c76f..000000000000 --- a/devel/glib20/files/patch-ltmain.sh +++ /dev/null @@ -1,18 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh 2001/07/18 13:00:49 1.1 -+++ ltmain.sh 2001/07/18 13:01:07 -@@ -4175,10 +4175,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/devel/glib20/pkg-comment b/devel/glib20/pkg-comment deleted file mode 100644 index f4d4fb490fc7..000000000000 --- a/devel/glib20/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Some useful routines of C programming (unstable development version) diff --git a/devel/glib20/pkg-descr b/devel/glib20/pkg-descr deleted file mode 100644 index 96c22d548faf..000000000000 --- a/devel/glib20/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -This is GLib version 1.3. GLib, is a library which includes support -routines for C such as lists, trees, hashes, memory allocation, and -many other things. - -WWW: http://www.gtk.org/ -ftp://ftp.gtk.org/pub/gtk - -A mailing list is located at gtk-list@redhat.com for discussion. - -Warning: this library is unstable development version, incompatible with -version 1.2, so it could not be used as a replacement for the older one. - -- Vanilla -vanilla@FreeBSD.ORG diff --git a/devel/glib20/pkg-plist b/devel/glib20/pkg-plist deleted file mode 100644 index 39abd777f072..000000000000 --- a/devel/glib20/pkg-plist +++ /dev/null @@ -1,86 +0,0 @@ -bin/glib-config-2.0 -bin/glib-genmarshal -bin/glib-mkenums -bin/gobject-query -include/glib-2.0/galloca.h -include/glib-2.0/garray.h -include/glib-2.0/gasyncqueue.h -include/glib-2.0/gbacktrace.h -include/glib-2.0/gcache.h -include/glib-2.0/gcompletion.h -include/glib-2.0/gconvert.h -include/glib-2.0/gdataset.h -include/glib-2.0/gdate.h -include/glib-2.0/gerror.h -include/glib-2.0/gfileutils.h -include/glib-2.0/ghash.h -include/glib-2.0/ghook.h -include/glib-2.0/giochannel.h -include/glib-2.0/glib-object.h -include/glib-2.0/glib.h -include/glib-2.0/glibconfig.h -include/glib-2.0/glist.h -include/glib-2.0/gmacros.h -include/glib-2.0/gmain.h -include/glib-2.0/gmarkup.h -include/glib-2.0/gmem.h -include/glib-2.0/gmessages.h -include/glib-2.0/gmodule.h -include/glib-2.0/gnode.h -include/glib-2.0/gobject/gboxed.h -include/glib-2.0/gobject/gbsearcharray.h -include/glib-2.0/gobject/gclosure.h -include/glib-2.0/gobject/genums.h -include/glib-2.0/gobject/gmarshal.h -include/glib-2.0/gobject/gobject.h -include/glib-2.0/gobject/gparam.h -include/glib-2.0/gobject/gparamspecs.h -include/glib-2.0/gobject/gsignal.h -include/glib-2.0/gobject/gtype.h -include/glib-2.0/gobject/gtypemodule.h -include/glib-2.0/gobject/gtypeplugin.h -include/glib-2.0/gobject/gvalue.h -include/glib-2.0/gobject/gvaluearray.h -include/glib-2.0/gobject/gvaluecollector.h -include/glib-2.0/gobject/gvaluetypes.h -include/glib-2.0/gpattern.h -include/glib-2.0/gprimes.h -include/glib-2.0/gqsort.h -include/glib-2.0/gquark.h -include/glib-2.0/gqueue.h -include/glib-2.0/grand.h -include/glib-2.0/grel.h -include/glib-2.0/gscanner.h -include/glib-2.0/gshell.h -include/glib-2.0/gslist.h -include/glib-2.0/gspawn.h -include/glib-2.0/gstrfuncs.h -include/glib-2.0/gstring.h -include/glib-2.0/gthread.h -include/glib-2.0/gthreadpool.h -include/glib-2.0/gtimer.h -include/glib-2.0/gtree.h -include/glib-2.0/gtypes.h -include/glib-2.0/gunicode.h -include/glib-2.0/gutils.h -include/glib-2.0/gwin32.h -lib/libglib-1.3.a -lib/libglib-1.3.so -lib/libglib-1.3.so.6 -lib/libgmodule-1.3.a -lib/libgmodule-1.3.so -lib/libgmodule-1.3.so.6 -lib/libgobject-1.3.a -lib/libgobject-1.3.so -lib/libgobject-1.3.so.6 -lib/libgthread-1.3.a -lib/libgthread-1.3.so -lib/libgthread-1.3.so.6 -libdata/pkgconfig/glib-2.0.pc -libdata/pkgconfig/gmodule-2.0.pc -libdata/pkgconfig/gobject-2.0.pc -libdata/pkgconfig/gthread-2.0.pc -share/aclocal/glib-2.0.m4 -share/aclocal/glib-gettext.m4 -@dirrm include/glib-2.0/gobject -@dirrm include/glib-2.0 |