diff options
30 files changed, 0 insertions, 1488 deletions
diff --git a/audio/rhythmbox-devel/Makefile b/audio/rhythmbox-devel/Makefile deleted file mode 100644 index d282a912b..000000000 --- a/audio/rhythmbox-devel/Makefile +++ /dev/null @@ -1,80 +0,0 @@ -# New ports collection makefile for: rhythmbox -# Date created: 17 August 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD: ports/audio/rhythmbox/Makefile,v 1.47 2004/08/20 04:41:45 marcus Exp $ -# - -PORTNAME= rhythmbox -PORTVERSION= 0.8.6 -CATEGORIES= audio gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.8 -DIST_SUBDIR= gnome2 - -MAINTAINER= marcus@freebsd.org -COMMENT= Audio player for the Gnome 2 desktop environment - -LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ - FLAC.5:${PORTSDIR}/audio/flac \ - mad.2:${PORTSDIR}/audio/libmad \ - id3tag.2:${PORTSDIR}/audio/libid3tag - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui -USE_LIBTOOL_VER=15 -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" \ - CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" - -GCONF_SCHEMAS= rhythmbox.schemas -OPTIONS= XINE "Use xine backend instead of GStreamer" off \ - MONKEYMEDIA "Use MonkeyMedia metadata reader" off \ - IPOD "Enable iPod support" off - -.include <bsd.port.pre.mk> - -.ifdef (WITH_XINE) -LIB_DEPENDS+= xine.9:${PORTSDIR}/multimedia/libxine -CONFIGURE_ARGS+= --with-player=xine -WITH_MONKEYMEDIA= yes -.else -CONFIGURE_ARGS+= --with-player=gstreamer -USE_GNOME+= gstreamerplugins -.endif - -.ifdef (WITH_MONKEYMEDIA) -CONFIGURE_ARGS+= --with-metadata=monkeymedia -.else -CONFIGURE_ARGS+= --with-metadata=gstreamer -USE_GNOME+= gstreamerplugins -.endif - -.ifdef (WITH_IPOD) -CONFIGURE_ARGS+= --enable-ipod -.endif - -.if exists(${LOCALBASE}/lib/libvorbis.so) -WITH_VORBIS= yes -.endif - -.ifdef (WITH_VORBIS) -LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis -.else -CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest -.endif - -pre-everything:: -.if !defined(WITH_XINE) - @${ECHO_MSG} - @${ECHO_MSG} "You must have gstreamer-plugins built with MAD support!" - @${ECHO_MSG} -.endif -.if !defined(WITH_VORBIS) - @${ECHO_MSG} - @${ECHO_MSG} "Define WITH_VORBIS to enable Vorbis support" - @${ECHO_MSG} -.endif - -.include <bsd.port.post.mk> diff --git a/audio/rhythmbox-devel/distinfo b/audio/rhythmbox-devel/distinfo deleted file mode 100644 index 7a19ded54..000000000 --- a/audio/rhythmbox-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/rhythmbox-0.8.6.tar.bz2) = 6f745e97a66c56623e1d782e9e4941fd -SIZE (gnome2/rhythmbox-0.8.6.tar.bz2) = 2433982 diff --git a/audio/rhythmbox-devel/files/patch-corba_Makefile.in b/audio/rhythmbox-devel/files/patch-corba_Makefile.in deleted file mode 100644 index 723285dfa..000000000 --- a/audio/rhythmbox-devel/files/patch-corba_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- corba/Makefile.in.orig Wed Aug 27 04:19:40 2003 -+++ corba/Makefile.in Wed Aug 27 04:19:56 2003 -@@ -237,7 +237,7 @@ - - noinst_HEADERS = Rhythmbox.h - --idldir = $(prefix)/share/idl -+idldir = $(datadir)/idl - idl_DATA = Rhythmbox.idl - - CLEAN_FILES = $(rhythmbox_interface_idl_sources) diff --git a/audio/rhythmbox-devel/files/patch-sources_itunesdb.c b/audio/rhythmbox-devel/files/patch-sources_itunesdb.c deleted file mode 100644 index 6270d9f74..000000000 --- a/audio/rhythmbox-devel/files/patch-sources_itunesdb.c +++ /dev/null @@ -1,22 +0,0 @@ ---- sources/itunesdb.c.orig Fri Mar 19 12:20:13 2004 -+++ sources/itunesdb.c Fri Apr 2 21:39:39 2004 -@@ -729,8 +729,9 @@ - gchar data[4]; - guint32 header_length, entry_length, entry_num, i=0; - time_t tt = time (NULL); -+ struct tm *tmt; - -- localtime (&tt); /* set the ext. variable 'timezone' (see below) */ -+ tmt = localtime (&tt); /* set the ext. variable 'timezone' (see below) */ - if (seek_get_n_bytes (plycts, data, 0, 4) != 4) break; - if (cmp_n_bytes (data, "mhdp", 4) == FALSE) break; - header_length = get4int (plycts, 4); -@@ -768,7 +769,7 @@ - * way to do that ? - */ - if (playcount->time_played) -- playcount->time_played += __timezone; -+ playcount->time_played += tmt->tm_gmtoff; - - /* rating only exists if the entry length is at least 0x10 */ - if (entry_length >= 0x10) diff --git a/audio/rhythmbox-devel/files/patch-sources_rb-ipod-source.c b/audio/rhythmbox-devel/files/patch-sources_rb-ipod-source.c deleted file mode 100644 index 5c2552a88..000000000 --- a/audio/rhythmbox-devel/files/patch-sources_rb-ipod-source.c +++ /dev/null @@ -1,11 +0,0 @@ ---- sources/rb-ipod-source.c.orig Thu Sep 16 18:03:09 2004 -+++ sources/rb-ipod-source.c Sun Sep 19 20:00:17 2004 -@@ -238,7 +238,7 @@ - GValue value = {0, }; - g_value_init (&value, G_TYPE_ULONG); - g_value_set_ulong (&value, song->cd_nr); -- rhythmdb_entry_set (RHYTHMDB (db), entry, -+ entry_set_locked (RHYTHMDB (ctxt->db), entry, - RHYTHMDB_PROP_DISC_NUMBER, - &value); - g_value_unset (&value); diff --git a/audio/rhythmbox-devel/pkg-descr b/audio/rhythmbox-devel/pkg-descr deleted file mode 100644 index 39e0558c2..000000000 --- a/audio/rhythmbox-devel/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Rhythmbox is an integrated music management application, originally inspired by -Apple's iTunes. It is free software, designed to work well under the GNOME -Desktop, and based on the powerful GStreamer media framework. - -WWW: http://web.rhythmbox.org/ diff --git a/audio/rhythmbox-devel/pkg-plist b/audio/rhythmbox-devel/pkg-plist deleted file mode 100644 index b76275330..000000000 --- a/audio/rhythmbox-devel/pkg-plist +++ /dev/null @@ -1,185 +0,0 @@ -bin/rhythmbox -lib/bonobo/librb-nautilus-context-menu.so -libdata/bonobo/servers/GNOME_Rhythmbox.server -libdata/bonobo/servers/Rhythmbox_Nautilus_Context_Menu.server -libdata/pkgconfig/rhythmbox.pc -share/gnome/application-registry/rhythmbox.applications -share/gnome/applications/rhythmbox.desktop -share/gnome/gnome-2.0/ui/rhythmbox-ui.xml -share/gnome/help/rhythmbox/C/authors.xml -share/gnome/help/rhythmbox/C/fdl-appendix.xml -share/gnome/help/rhythmbox/C/figures/rb-adv.png -share/gnome/help/rhythmbox/C/figures/rb-asst-finish.png -share/gnome/help/rhythmbox/C/figures/rb-asst-library.png -share/gnome/help/rhythmbox/C/figures/rb-asst-start.png -share/gnome/help/rhythmbox/C/figures/rb-basic.png -share/gnome/help/rhythmbox/C/figures/rb-browser.png -share/gnome/help/rhythmbox/C/figures/rb-context-menu.png -share/gnome/help/rhythmbox/C/figures/rb-empty.png -share/gnome/help/rhythmbox/C/figures/rb-full-play.png -share/gnome/help/rhythmbox/C/figures/rb-group-auto.png -share/gnome/help/rhythmbox/C/figures/rb-group-create.png -share/gnome/help/rhythmbox/C/figures/rb-group.png -share/gnome/help/rhythmbox/C/figures/rb-imported.png -share/gnome/help/rhythmbox/C/figures/rb-iradio-add.png -share/gnome/help/rhythmbox/C/figures/rb-iradio.png -share/gnome/help/rhythmbox/C/figures/rb-nextprev.png -share/gnome/help/rhythmbox/C/figures/rb-nobrowse-play.png -share/gnome/help/rhythmbox/C/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/C/figures/rb-notification-area.png -share/gnome/help/rhythmbox/C/figures/rb-player.png -share/gnome/help/rhythmbox/C/figures/rb-prefs-general.png -share/gnome/help/rhythmbox/C/figures/rb-prefs-ipod.png -share/gnome/help/rhythmbox/C/figures/rb-prefs-library.png -share/gnome/help/rhythmbox/C/figures/rb-prefs.png -share/gnome/help/rhythmbox/C/figures/rb-repeat.png -share/gnome/help/rhythmbox/C/figures/rb-search.png -share/gnome/help/rhythmbox/C/figures/rb-shuffle.png -share/gnome/help/rhythmbox/C/figures/rb-sidebar.png -share/gnome/help/rhythmbox/C/figures/rb-stats.png -share/gnome/help/rhythmbox/C/figures/rb-statusbar.png -share/gnome/help/rhythmbox/C/figures/rb-toolbar-editor.png -share/gnome/help/rhythmbox/C/figures/rb-toolbar.png -share/gnome/help/rhythmbox/C/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/C/figures/rb-volume-mute.png -share/gnome/help/rhythmbox/C/figures/rb-window-small.png -share/gnome/help/rhythmbox/C/figures/rb-window.png -share/gnome/help/rhythmbox/C/figures/rhythmbox-group.png -share/gnome/help/rhythmbox/C/figures/rhythmbox-tray-icon.png -share/gnome/help/rhythmbox/C/legal.xml -share/gnome/help/rhythmbox/C/quick-reference.xml -share/gnome/help/rhythmbox/C/rhythmbox.xml -share/gnome/help/rhythmbox/C/user-guide.xml -share/gnome/help/rhythmbox/ja/authors.xml -share/gnome/help/rhythmbox/ja/fdl-appendix.xml -share/gnome/help/rhythmbox/ja/figures/rb-adv.png -share/gnome/help/rhythmbox/ja/figures/rb-basic.png -share/gnome/help/rhythmbox/ja/figures/rb-browser.png -share/gnome/help/rhythmbox/ja/figures/rb-context-menu.png -share/gnome/help/rhythmbox/ja/figures/rb-iradio-add.png -share/gnome/help/rhythmbox/ja/figures/rb-iradio.png -share/gnome/help/rhythmbox/ja/figures/rb-nextprev.png -share/gnome/help/rhythmbox/ja/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/ja/figures/rb-notification-area.png -share/gnome/help/rhythmbox/ja/figures/rb-player.png -share/gnome/help/rhythmbox/ja/figures/rb-prefs-general.png -share/gnome/help/rhythmbox/ja/figures/rb-prefs-library.png -share/gnome/help/rhythmbox/ja/figures/rb-repeat.png -share/gnome/help/rhythmbox/ja/figures/rb-search.png -share/gnome/help/rhythmbox/ja/figures/rb-shuffle.png -share/gnome/help/rhythmbox/ja/figures/rb-sidebar.png -share/gnome/help/rhythmbox/ja/figures/rb-stats.png -share/gnome/help/rhythmbox/ja/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/ja/figures/rb-window.png -share/gnome/help/rhythmbox/ja/legal.xml -share/gnome/help/rhythmbox/ja/quick-reference.xml -share/gnome/help/rhythmbox/ja/rhythmbox.xml -share/gnome/help/rhythmbox/ja/user-guide.xml -share/gnome/idl/Rhythmbox.idl -share/gnome/mime-info/rhythmbox.keys -share/gnome/omf/rhythmbox/rhythmbox-C.omf -@exec scrollkeeper-install -q %D/share/gnome/omf/rhythmbox/rhythmbox-C.omf 2>/dev/null || /usr/bin/true -share/gnome/omf/rhythmbox/rhythmbox-ja.omf -@exec scrollkeeper-install -q %D/share/gnome/omf/rhythmbox/rhythmbox-ja.omf 2>/dev/null || /usr/bin/true -share/gnome/pixmaps/rhythmbox.png -share/gnome/rhythmbox/art/about-logo.png -share/gnome/rhythmbox/art/rhythmbox-album.png -share/gnome/rhythmbox/art/rhythmbox-audiocd.png -share/gnome/rhythmbox/art/rhythmbox-automatic-playlist.png -share/gnome/rhythmbox/art/rhythmbox-dnd.png -share/gnome/rhythmbox/art/rhythmbox-ipod.png -share/gnome/rhythmbox/art/rhythmbox-iradio.png -share/gnome/rhythmbox/art/rhythmbox-library.png -share/gnome/rhythmbox/art/rhythmbox-next.png -share/gnome/rhythmbox/art/rhythmbox-no-star.png -share/gnome/rhythmbox/art/rhythmbox-pause.png -share/gnome/rhythmbox/art/rhythmbox-paused.png -share/gnome/rhythmbox/art/rhythmbox-play.png -share/gnome/rhythmbox/art/rhythmbox-playing.png -share/gnome/rhythmbox/art/rhythmbox-playlist-menu.png -share/gnome/rhythmbox/art/rhythmbox-playlist.png -share/gnome/rhythmbox/art/rhythmbox-previous.png -share/gnome/rhythmbox/art/rhythmbox-repeat.png -share/gnome/rhythmbox/art/rhythmbox-rewind.png -share/gnome/rhythmbox/art/rhythmbox-set-star.png -share/gnome/rhythmbox/art/rhythmbox-shuffle.png -share/gnome/rhythmbox/art/rhythmbox-stop.png -share/gnome/rhythmbox/art/rhythmbox-tray-icon.png -share/gnome/rhythmbox/art/rhythmbox-unset-star.png -share/gnome/rhythmbox/art/rhythmbox-visuals.png -share/gnome/rhythmbox/art/rhythmbox-volume-max.png -share/gnome/rhythmbox/art/rhythmbox-volume-medium.png -share/gnome/rhythmbox/art/rhythmbox-volume-min.png -share/gnome/rhythmbox/art/rhythmbox-volume-mute.png -share/gnome/rhythmbox/art/rhythmbox-volume-zero.png -share/gnome/rhythmbox/glade/create-playlist.glade -share/gnome/rhythmbox/glade/druid.glade -share/gnome/rhythmbox/glade/general-prefs.glade -share/gnome/rhythmbox/glade/library-prefs.glade -share/gnome/rhythmbox/glade/load-failure.glade -share/gnome/rhythmbox/glade/song-info-multiple.glade -share/gnome/rhythmbox/glade/song-info.glade -share/gnome/rhythmbox/glade/station-new.glade -share/gnome/rhythmbox/glade/station-properties.glade -share/gnome/rhythmbox/glade/uri.glade -share/gnome/rhythmbox/iradio-initial.pls -share/locale/am/LC_MESSAGES/rhythmbox.mo -share/locale/ar/LC_MESSAGES/rhythmbox.mo -share/locale/az/LC_MESSAGES/rhythmbox.mo -share/locale/be/LC_MESSAGES/rhythmbox.mo -share/locale/bg/LC_MESSAGES/rhythmbox.mo -share/locale/ca/LC_MESSAGES/rhythmbox.mo -share/locale/cs/LC_MESSAGES/rhythmbox.mo -share/locale/cy/LC_MESSAGES/rhythmbox.mo -share/locale/da/LC_MESSAGES/rhythmbox.mo -share/locale/de/LC_MESSAGES/rhythmbox.mo -share/locale/el/LC_MESSAGES/rhythmbox.mo -share/locale/en_CA/LC_MESSAGES/rhythmbox.mo -share/locale/en_GB/LC_MESSAGES/rhythmbox.mo -share/locale/es/LC_MESSAGES/rhythmbox.mo -share/locale/et/LC_MESSAGES/rhythmbox.mo -share/locale/eu/LC_MESSAGES/rhythmbox.mo -share/locale/fi/LC_MESSAGES/rhythmbox.mo -share/locale/fr/LC_MESSAGES/rhythmbox.mo -share/locale/ga/LC_MESSAGES/rhythmbox.mo -share/locale/he/LC_MESSAGES/rhythmbox.mo -share/locale/hr/LC_MESSAGES/rhythmbox.mo -share/locale/hu/LC_MESSAGES/rhythmbox.mo -share/locale/id/LC_MESSAGES/rhythmbox.mo -share/locale/is/LC_MESSAGES/rhythmbox.mo -share/locale/it/LC_MESSAGES/rhythmbox.mo -share/locale/ja/LC_MESSAGES/rhythmbox.mo -share/locale/ko/LC_MESSAGES/rhythmbox.mo -share/locale/lt/LC_MESSAGES/rhythmbox.mo -share/locale/lv/LC_MESSAGES/rhythmbox.mo -share/locale/mn/LC_MESSAGES/rhythmbox.mo -share/locale/ms/LC_MESSAGES/rhythmbox.mo -share/locale/nb/LC_MESSAGES/rhythmbox.mo -share/locale/nl/LC_MESSAGES/rhythmbox.mo -share/locale/no/LC_MESSAGES/rhythmbox.mo -share/locale/pa/LC_MESSAGES/rhythmbox.mo -share/locale/pl/LC_MESSAGES/rhythmbox.mo -share/locale/pt/LC_MESSAGES/rhythmbox.mo -share/locale/pt_BR/LC_MESSAGES/rhythmbox.mo -share/locale/ro/LC_MESSAGES/rhythmbox.mo -share/locale/ru/LC_MESSAGES/rhythmbox.mo -share/locale/sk/LC_MESSAGES/rhythmbox.mo -share/locale/sr/LC_MESSAGES/rhythmbox.mo -share/locale/sr@Latn/LC_MESSAGES/rhythmbox.mo -share/locale/sv/LC_MESSAGES/rhythmbox.mo -share/locale/tr/LC_MESSAGES/rhythmbox.mo -share/locale/uk/LC_MESSAGES/rhythmbox.mo -share/locale/vi/LC_MESSAGES/rhythmbox.mo -share/locale/zh_CN/LC_MESSAGES/rhythmbox.mo -share/locale/zh_TW/LC_MESSAGES/rhythmbox.mo -@dirrm share/gnome/rhythmbox/glade -@dirrm share/gnome/rhythmbox/art -@dirrm share/gnome/rhythmbox -@dirrm share/gnome/omf/rhythmbox -@dirrm share/gnome/help/rhythmbox/ja/figures -@dirrm share/gnome/help/rhythmbox/ja -@dirrm share/gnome/help/rhythmbox/C/figures -@dirrm share/gnome/help/rhythmbox/C -@dirrm share/gnome/help/rhythmbox -@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/rhythmbox/rhythmbox-C.omf 2>/dev/null || /usr/bin/true -@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/rhythmbox/rhythmbox-ja.omf 2>/dev/null || /usr/bin/true diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile deleted file mode 100644 index d282a912b..000000000 --- a/audio/rhythmbox/Makefile +++ /dev/null @@ -1,80 +0,0 @@ -# New ports collection makefile for: rhythmbox -# Date created: 17 August 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD: ports/audio/rhythmbox/Makefile,v 1.47 2004/08/20 04:41:45 marcus Exp $ -# - -PORTNAME= rhythmbox -PORTVERSION= 0.8.6 -CATEGORIES= audio gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.8 -DIST_SUBDIR= gnome2 - -MAINTAINER= marcus@freebsd.org -COMMENT= Audio player for the Gnome 2 desktop environment - -LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ - FLAC.5:${PORTSDIR}/audio/flac \ - mad.2:${PORTSDIR}/audio/libmad \ - id3tag.2:${PORTSDIR}/audio/libid3tag - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui -USE_LIBTOOL_VER=15 -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" \ - CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" - -GCONF_SCHEMAS= rhythmbox.schemas -OPTIONS= XINE "Use xine backend instead of GStreamer" off \ - MONKEYMEDIA "Use MonkeyMedia metadata reader" off \ - IPOD "Enable iPod support" off - -.include <bsd.port.pre.mk> - -.ifdef (WITH_XINE) -LIB_DEPENDS+= xine.9:${PORTSDIR}/multimedia/libxine -CONFIGURE_ARGS+= --with-player=xine -WITH_MONKEYMEDIA= yes -.else -CONFIGURE_ARGS+= --with-player=gstreamer -USE_GNOME+= gstreamerplugins -.endif - -.ifdef (WITH_MONKEYMEDIA) -CONFIGURE_ARGS+= --with-metadata=monkeymedia -.else -CONFIGURE_ARGS+= --with-metadata=gstreamer -USE_GNOME+= gstreamerplugins -.endif - -.ifdef (WITH_IPOD) -CONFIGURE_ARGS+= --enable-ipod -.endif - -.if exists(${LOCALBASE}/lib/libvorbis.so) -WITH_VORBIS= yes -.endif - -.ifdef (WITH_VORBIS) -LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis -.else -CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest -.endif - -pre-everything:: -.if !defined(WITH_XINE) - @${ECHO_MSG} - @${ECHO_MSG} "You must have gstreamer-plugins built with MAD support!" - @${ECHO_MSG} -.endif -.if !defined(WITH_VORBIS) - @${ECHO_MSG} - @${ECHO_MSG} "Define WITH_VORBIS to enable Vorbis support" - @${ECHO_MSG} -.endif - -.include <bsd.port.post.mk> diff --git a/audio/rhythmbox/distinfo b/audio/rhythmbox/distinfo deleted file mode 100644 index 7a19ded54..000000000 --- a/audio/rhythmbox/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/rhythmbox-0.8.6.tar.bz2) = 6f745e97a66c56623e1d782e9e4941fd -SIZE (gnome2/rhythmbox-0.8.6.tar.bz2) = 2433982 diff --git a/audio/rhythmbox/files/patch-corba_Makefile.in b/audio/rhythmbox/files/patch-corba_Makefile.in deleted file mode 100644 index 723285dfa..000000000 --- a/audio/rhythmbox/files/patch-corba_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- corba/Makefile.in.orig Wed Aug 27 04:19:40 2003 -+++ corba/Makefile.in Wed Aug 27 04:19:56 2003 -@@ -237,7 +237,7 @@ - - noinst_HEADERS = Rhythmbox.h - --idldir = $(prefix)/share/idl -+idldir = $(datadir)/idl - idl_DATA = Rhythmbox.idl - - CLEAN_FILES = $(rhythmbox_interface_idl_sources) diff --git a/audio/rhythmbox/files/patch-sources_itunesdb.c b/audio/rhythmbox/files/patch-sources_itunesdb.c deleted file mode 100644 index 6270d9f74..000000000 --- a/audio/rhythmbox/files/patch-sources_itunesdb.c +++ /dev/null @@ -1,22 +0,0 @@ ---- sources/itunesdb.c.orig Fri Mar 19 12:20:13 2004 -+++ sources/itunesdb.c Fri Apr 2 21:39:39 2004 -@@ -729,8 +729,9 @@ - gchar data[4]; - guint32 header_length, entry_length, entry_num, i=0; - time_t tt = time (NULL); -+ struct tm *tmt; - -- localtime (&tt); /* set the ext. variable 'timezone' (see below) */ -+ tmt = localtime (&tt); /* set the ext. variable 'timezone' (see below) */ - if (seek_get_n_bytes (plycts, data, 0, 4) != 4) break; - if (cmp_n_bytes (data, "mhdp", 4) == FALSE) break; - header_length = get4int (plycts, 4); -@@ -768,7 +769,7 @@ - * way to do that ? - */ - if (playcount->time_played) -- playcount->time_played += __timezone; -+ playcount->time_played += tmt->tm_gmtoff; - - /* rating only exists if the entry length is at least 0x10 */ - if (entry_length >= 0x10) diff --git a/audio/rhythmbox/files/patch-sources_rb-ipod-source.c b/audio/rhythmbox/files/patch-sources_rb-ipod-source.c deleted file mode 100644 index 5c2552a88..000000000 --- a/audio/rhythmbox/files/patch-sources_rb-ipod-source.c +++ /dev/null @@ -1,11 +0,0 @@ ---- sources/rb-ipod-source.c.orig Thu Sep 16 18:03:09 2004 -+++ sources/rb-ipod-source.c Sun Sep 19 20:00:17 2004 -@@ -238,7 +238,7 @@ - GValue value = {0, }; - g_value_init (&value, G_TYPE_ULONG); - g_value_set_ulong (&value, song->cd_nr); -- rhythmdb_entry_set (RHYTHMDB (db), entry, -+ entry_set_locked (RHYTHMDB (ctxt->db), entry, - RHYTHMDB_PROP_DISC_NUMBER, - &value); - g_value_unset (&value); diff --git a/audio/rhythmbox/pkg-descr b/audio/rhythmbox/pkg-descr deleted file mode 100644 index 39e0558c2..000000000 --- a/audio/rhythmbox/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Rhythmbox is an integrated music management application, originally inspired by -Apple's iTunes. It is free software, designed to work well under the GNOME -Desktop, and based on the powerful GStreamer media framework. - -WWW: http://web.rhythmbox.org/ diff --git a/audio/rhythmbox/pkg-plist b/audio/rhythmbox/pkg-plist deleted file mode 100644 index b76275330..000000000 --- a/audio/rhythmbox/pkg-plist +++ /dev/null @@ -1,185 +0,0 @@ -bin/rhythmbox -lib/bonobo/librb-nautilus-context-menu.so -libdata/bonobo/servers/GNOME_Rhythmbox.server -libdata/bonobo/servers/Rhythmbox_Nautilus_Context_Menu.server -libdata/pkgconfig/rhythmbox.pc -share/gnome/application-registry/rhythmbox.applications -share/gnome/applications/rhythmbox.desktop -share/gnome/gnome-2.0/ui/rhythmbox-ui.xml -share/gnome/help/rhythmbox/C/authors.xml -share/gnome/help/rhythmbox/C/fdl-appendix.xml -share/gnome/help/rhythmbox/C/figures/rb-adv.png -share/gnome/help/rhythmbox/C/figures/rb-asst-finish.png -share/gnome/help/rhythmbox/C/figures/rb-asst-library.png -share/gnome/help/rhythmbox/C/figures/rb-asst-start.png -share/gnome/help/rhythmbox/C/figures/rb-basic.png -share/gnome/help/rhythmbox/C/figures/rb-browser.png -share/gnome/help/rhythmbox/C/figures/rb-context-menu.png -share/gnome/help/rhythmbox/C/figures/rb-empty.png -share/gnome/help/rhythmbox/C/figures/rb-full-play.png -share/gnome/help/rhythmbox/C/figures/rb-group-auto.png -share/gnome/help/rhythmbox/C/figures/rb-group-create.png -share/gnome/help/rhythmbox/C/figures/rb-group.png -share/gnome/help/rhythmbox/C/figures/rb-imported.png -share/gnome/help/rhythmbox/C/figures/rb-iradio-add.png -share/gnome/help/rhythmbox/C/figures/rb-iradio.png -share/gnome/help/rhythmbox/C/figures/rb-nextprev.png -share/gnome/help/rhythmbox/C/figures/rb-nobrowse-play.png -share/gnome/help/rhythmbox/C/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/C/figures/rb-notification-area.png -share/gnome/help/rhythmbox/C/figures/rb-player.png -share/gnome/help/rhythmbox/C/figures/rb-prefs-general.png -share/gnome/help/rhythmbox/C/figures/rb-prefs-ipod.png -share/gnome/help/rhythmbox/C/figures/rb-prefs-library.png -share/gnome/help/rhythmbox/C/figures/rb-prefs.png -share/gnome/help/rhythmbox/C/figures/rb-repeat.png -share/gnome/help/rhythmbox/C/figures/rb-search.png -share/gnome/help/rhythmbox/C/figures/rb-shuffle.png -share/gnome/help/rhythmbox/C/figures/rb-sidebar.png -share/gnome/help/rhythmbox/C/figures/rb-stats.png -share/gnome/help/rhythmbox/C/figures/rb-statusbar.png -share/gnome/help/rhythmbox/C/figures/rb-toolbar-editor.png -share/gnome/help/rhythmbox/C/figures/rb-toolbar.png -share/gnome/help/rhythmbox/C/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/C/figures/rb-volume-mute.png -share/gnome/help/rhythmbox/C/figures/rb-window-small.png -share/gnome/help/rhythmbox/C/figures/rb-window.png -share/gnome/help/rhythmbox/C/figures/rhythmbox-group.png -share/gnome/help/rhythmbox/C/figures/rhythmbox-tray-icon.png -share/gnome/help/rhythmbox/C/legal.xml -share/gnome/help/rhythmbox/C/quick-reference.xml -share/gnome/help/rhythmbox/C/rhythmbox.xml -share/gnome/help/rhythmbox/C/user-guide.xml -share/gnome/help/rhythmbox/ja/authors.xml -share/gnome/help/rhythmbox/ja/fdl-appendix.xml -share/gnome/help/rhythmbox/ja/figures/rb-adv.png -share/gnome/help/rhythmbox/ja/figures/rb-basic.png -share/gnome/help/rhythmbox/ja/figures/rb-browser.png -share/gnome/help/rhythmbox/ja/figures/rb-context-menu.png -share/gnome/help/rhythmbox/ja/figures/rb-iradio-add.png -share/gnome/help/rhythmbox/ja/figures/rb-iradio.png -share/gnome/help/rhythmbox/ja/figures/rb-nextprev.png -share/gnome/help/rhythmbox/ja/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/ja/figures/rb-notification-area.png -share/gnome/help/rhythmbox/ja/figures/rb-player.png -share/gnome/help/rhythmbox/ja/figures/rb-prefs-general.png -share/gnome/help/rhythmbox/ja/figures/rb-prefs-library.png -share/gnome/help/rhythmbox/ja/figures/rb-repeat.png -share/gnome/help/rhythmbox/ja/figures/rb-search.png -share/gnome/help/rhythmbox/ja/figures/rb-shuffle.png -share/gnome/help/rhythmbox/ja/figures/rb-sidebar.png -share/gnome/help/rhythmbox/ja/figures/rb-stats.png -share/gnome/help/rhythmbox/ja/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/ja/figures/rb-window.png -share/gnome/help/rhythmbox/ja/legal.xml -share/gnome/help/rhythmbox/ja/quick-reference.xml -share/gnome/help/rhythmbox/ja/rhythmbox.xml -share/gnome/help/rhythmbox/ja/user-guide.xml -share/gnome/idl/Rhythmbox.idl -share/gnome/mime-info/rhythmbox.keys -share/gnome/omf/rhythmbox/rhythmbox-C.omf -@exec scrollkeeper-install -q %D/share/gnome/omf/rhythmbox/rhythmbox-C.omf 2>/dev/null || /usr/bin/true -share/gnome/omf/rhythmbox/rhythmbox-ja.omf -@exec scrollkeeper-install -q %D/share/gnome/omf/rhythmbox/rhythmbox-ja.omf 2>/dev/null || /usr/bin/true -share/gnome/pixmaps/rhythmbox.png -share/gnome/rhythmbox/art/about-logo.png -share/gnome/rhythmbox/art/rhythmbox-album.png -share/gnome/rhythmbox/art/rhythmbox-audiocd.png -share/gnome/rhythmbox/art/rhythmbox-automatic-playlist.png -share/gnome/rhythmbox/art/rhythmbox-dnd.png -share/gnome/rhythmbox/art/rhythmbox-ipod.png -share/gnome/rhythmbox/art/rhythmbox-iradio.png -share/gnome/rhythmbox/art/rhythmbox-library.png -share/gnome/rhythmbox/art/rhythmbox-next.png -share/gnome/rhythmbox/art/rhythmbox-no-star.png -share/gnome/rhythmbox/art/rhythmbox-pause.png -share/gnome/rhythmbox/art/rhythmbox-paused.png -share/gnome/rhythmbox/art/rhythmbox-play.png -share/gnome/rhythmbox/art/rhythmbox-playing.png -share/gnome/rhythmbox/art/rhythmbox-playlist-menu.png -share/gnome/rhythmbox/art/rhythmbox-playlist.png -share/gnome/rhythmbox/art/rhythmbox-previous.png -share/gnome/rhythmbox/art/rhythmbox-repeat.png -share/gnome/rhythmbox/art/rhythmbox-rewind.png -share/gnome/rhythmbox/art/rhythmbox-set-star.png -share/gnome/rhythmbox/art/rhythmbox-shuffle.png -share/gnome/rhythmbox/art/rhythmbox-stop.png -share/gnome/rhythmbox/art/rhythmbox-tray-icon.png -share/gnome/rhythmbox/art/rhythmbox-unset-star.png -share/gnome/rhythmbox/art/rhythmbox-visuals.png -share/gnome/rhythmbox/art/rhythmbox-volume-max.png -share/gnome/rhythmbox/art/rhythmbox-volume-medium.png -share/gnome/rhythmbox/art/rhythmbox-volume-min.png -share/gnome/rhythmbox/art/rhythmbox-volume-mute.png -share/gnome/rhythmbox/art/rhythmbox-volume-zero.png -share/gnome/rhythmbox/glade/create-playlist.glade -share/gnome/rhythmbox/glade/druid.glade -share/gnome/rhythmbox/glade/general-prefs.glade -share/gnome/rhythmbox/glade/library-prefs.glade -share/gnome/rhythmbox/glade/load-failure.glade -share/gnome/rhythmbox/glade/song-info-multiple.glade -share/gnome/rhythmbox/glade/song-info.glade -share/gnome/rhythmbox/glade/station-new.glade -share/gnome/rhythmbox/glade/station-properties.glade -share/gnome/rhythmbox/glade/uri.glade -share/gnome/rhythmbox/iradio-initial.pls -share/locale/am/LC_MESSAGES/rhythmbox.mo -share/locale/ar/LC_MESSAGES/rhythmbox.mo -share/locale/az/LC_MESSAGES/rhythmbox.mo -share/locale/be/LC_MESSAGES/rhythmbox.mo -share/locale/bg/LC_MESSAGES/rhythmbox.mo -share/locale/ca/LC_MESSAGES/rhythmbox.mo -share/locale/cs/LC_MESSAGES/rhythmbox.mo -share/locale/cy/LC_MESSAGES/rhythmbox.mo -share/locale/da/LC_MESSAGES/rhythmbox.mo -share/locale/de/LC_MESSAGES/rhythmbox.mo -share/locale/el/LC_MESSAGES/rhythmbox.mo -share/locale/en_CA/LC_MESSAGES/rhythmbox.mo -share/locale/en_GB/LC_MESSAGES/rhythmbox.mo -share/locale/es/LC_MESSAGES/rhythmbox.mo -share/locale/et/LC_MESSAGES/rhythmbox.mo -share/locale/eu/LC_MESSAGES/rhythmbox.mo -share/locale/fi/LC_MESSAGES/rhythmbox.mo -share/locale/fr/LC_MESSAGES/rhythmbox.mo -share/locale/ga/LC_MESSAGES/rhythmbox.mo -share/locale/he/LC_MESSAGES/rhythmbox.mo -share/locale/hr/LC_MESSAGES/rhythmbox.mo -share/locale/hu/LC_MESSAGES/rhythmbox.mo -share/locale/id/LC_MESSAGES/rhythmbox.mo -share/locale/is/LC_MESSAGES/rhythmbox.mo -share/locale/it/LC_MESSAGES/rhythmbox.mo -share/locale/ja/LC_MESSAGES/rhythmbox.mo -share/locale/ko/LC_MESSAGES/rhythmbox.mo -share/locale/lt/LC_MESSAGES/rhythmbox.mo -share/locale/lv/LC_MESSAGES/rhythmbox.mo -share/locale/mn/LC_MESSAGES/rhythmbox.mo -share/locale/ms/LC_MESSAGES/rhythmbox.mo -share/locale/nb/LC_MESSAGES/rhythmbox.mo -share/locale/nl/LC_MESSAGES/rhythmbox.mo -share/locale/no/LC_MESSAGES/rhythmbox.mo -share/locale/pa/LC_MESSAGES/rhythmbox.mo -share/locale/pl/LC_MESSAGES/rhythmbox.mo -share/locale/pt/LC_MESSAGES/rhythmbox.mo -share/locale/pt_BR/LC_MESSAGES/rhythmbox.mo -share/locale/ro/LC_MESSAGES/rhythmbox.mo -share/locale/ru/LC_MESSAGES/rhythmbox.mo -share/locale/sk/LC_MESSAGES/rhythmbox.mo -share/locale/sr/LC_MESSAGES/rhythmbox.mo -share/locale/sr@Latn/LC_MESSAGES/rhythmbox.mo -share/locale/sv/LC_MESSAGES/rhythmbox.mo -share/locale/tr/LC_MESSAGES/rhythmbox.mo -share/locale/uk/LC_MESSAGES/rhythmbox.mo -share/locale/vi/LC_MESSAGES/rhythmbox.mo -share/locale/zh_CN/LC_MESSAGES/rhythmbox.mo -share/locale/zh_TW/LC_MESSAGES/rhythmbox.mo -@dirrm share/gnome/rhythmbox/glade -@dirrm share/gnome/rhythmbox/art -@dirrm share/gnome/rhythmbox -@dirrm share/gnome/omf/rhythmbox -@dirrm share/gnome/help/rhythmbox/ja/figures -@dirrm share/gnome/help/rhythmbox/ja -@dirrm share/gnome/help/rhythmbox/C/figures -@dirrm share/gnome/help/rhythmbox/C -@dirrm share/gnome/help/rhythmbox -@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/rhythmbox/rhythmbox-C.omf 2>/dev/null || /usr/bin/true -@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/rhythmbox/rhythmbox-ja.omf 2>/dev/null || /usr/bin/true diff --git a/net/gaim/Makefile b/net/gaim/Makefile deleted file mode 100644 index 5d17568da..000000000 --- a/net/gaim/Makefile +++ /dev/null @@ -1,126 +0,0 @@ -# New ports collection makefile for: gaim -# Date created: 26 Mar 1999 -# Whom: Jim Mock <jim@FreeBSD.org> -# $FreeBSD: ports/net/gaim/Makefile,v 1.155 2004/08/30 04:31:46 marcus Exp $ -# - -PORTNAME= gaim -PORTVERSION= 1.0.0 -CATEGORIES?= net -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER?= marcus@FreeBSD.org -COMMENT= Multi-protocol instant messaging client - -LIB_DEPENDS= startup-notification-1.0:${PORTSDIR}/x11/startup-notification - -CONFLICTS?= ja-gaim-* - -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_REINPLACE= yes -USE_GNOME= gnomeprefix gnomehack gtk20 -USE_PERL5= yes -USE_BZIP2= yes -INSTALLS_SHLIB= yes -USE_LIBTOOL_VER=15 -CONFIGURE_ARGS= --enable-static=yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ - LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}" \ - PTHREAD_LIB="${PTHREAD_LIBS}" - -MAN1= gaim.1 gaim-remote.1 - -.include <bsd.port.pre.mk> - -.if exists(${LOCALBASE}/lib/libgnutls.so) && !defined(WITHOUT_GNUTLS) -WITH_GNUTLS= yes -.endif - -.if defined(WITH_GNUTLS) -LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls -.else -CONFIGURE_ARGS+= --disable-gnutls -.endif - -.if defined(WITH_SILC) -LIB_DEPENDS+= silcclient-1.0.3:${PORTSDIR}/devel/silc-toolkit -CONFIGURE_ARGS+= --with-silc-includes=${LOCALBASE}/include/silc -PLIST_SUB+= SILC="" -.else -PLIST_SUB+= SILC="@comment " -.endif - -.if !defined(WITHOUT_NSS) -LIB_DEPENDS+= nss3:${PORTSDIR}/security/nss -CONFIGURE_ARGS+= --with-nspr-includes=${LOCALBASE}/include/nspr \ - --with-nspr-libs=${LOCALBASE}/lib \ - --with-nss-includes=${LOCALBASE}/include/nss/nss \ - --with-nss-libs=${LOCALBASE}/lib -.else -CONFIGURE_ARGS+= --enable-nss=no -.endif - -.if ${PERL_LEVEL} < 500800 -CONFIGURE_ARGS+= --disable-perl -PLIST_SUB+= PERL:="@comment " -.else -CONFIGURE_ARGS+= --with-perl-lib=site -PLIST_SUB+= PERL:="" -.endif - -.ifndef(WITHOUT_GTKSPELL) -LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2 -.else -CONFIGURE_ARGS+= --disable-gtkspell -.endif - -.if defined(TCL_VER) -_TCL_DVER= ${TCL_VER:S/.//} -_TCL_VER= ${_TCL_DVER:C/(.)/\1./} -.if ${_TCL_VER} != 8.3 && ${_TCL_VER} != 8.4 -. error Currently GAIM can only use Tcl/Tk 8.3 or 8.4 -.endif -LIB_DEPENDS+= tk${_TCL_DVER}:${PORTSDIR}/x11-toolkits/tk${_TCL_DVER} -CONFIGURE_ARGS+=--with-tclconfig=${LOCALBASE}/lib/tcl${_TCL_VER} \ - --with-tkconfig=${LOCALBASE}/lib/tk${_TCL_VER} -CFLAGS+= -I${LOCALBASE}/include/tk${_TCL_VER} -I${LOCALBASE}/include/tcl${_TCL_VER} -PLIST_SUB+= TCL:="" -.else -PLIST_SUB+= TCL:="@comment " -.endif - -.ifndef(WITHOUT_AUDIO) -LIB_DEPENDS+= ao.3:${PORTSDIR}/audio/libao \ - audiofile.0:${PORTSDIR}/audio/libaudiofile -.else -CONFIGURE_ARGS+= --disable-audio -.endif - -pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} "Gaim has the following tunable option(s):" - @${ECHO_MSG} " WITH_SILC Build with Secure Internet Live Conferencing (SILC)" - @${ECHO_MSG} " WITHOUT_GTKSPELL Turns off spell checking" - @${ECHO_MSG} " WITHOUT_AUDIO Disable audio support" - @${ECHO_MSG} " WITH_GNUTLS Enable GNUTLS encryption support" - @${ECHO_MSG} " WITHOUT_GNUTLS Disable GNUTLS encryption support" - @${ECHO_MSG} " WITHOUT_NSS Disable Mozilla NSS encryption support" - @${ECHO_MSG} " TCL_VER Use Tcl/Tk (version)" - @${ECHO_MSG} "" -.if !defined(WITH_GNUTLS) && defined(WITHOUT_NSS) - @${ECHO_MSG} "WARNING: In order to use MSN, you must define WITH_GNUTLS and/or WITH_NSS." - @${ECHO_MSG} "" -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|-lpthreads|${PTHREAD_LIBS:S/"//g}|g' \ - -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ - -e 's|-lpthread|${PTHREAD_LIBS:S/"//g}|g' \ - -e 's|-lsilc -lsilcclient ${PTHREAD_LIBS} -ldl|-lsilc -lsilcclient ${PTHREAD_LIBS} -liconv|' \ - -e 's|TCL_VERSION found but 8.3 required|TCL_VERSION found but ${_TCL_VER} required|g' \ - -e 's|TCL_MINOR_VERSION" -ne 3|TCL_MINOR_VERSION" -ne ${_TCL_VER:E}|' \ - ${WRKSRC}/configure - -.include <bsd.port.post.mk> diff --git a/net/gaim/distinfo b/net/gaim/distinfo deleted file mode 100644 index 31db99f8d..000000000 --- a/net/gaim/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gaim-1.0.0.tar.bz2) = 6121484e676e716ab8f3f6416a6f44a9 -SIZE (gaim-1.0.0.tar.bz2) = 4775279 diff --git a/net/gaim/files/patch-configure b/net/gaim/files/patch-configure deleted file mode 100644 index 7ae55f0c9..000000000 --- a/net/gaim/files/patch-configure +++ /dev/null @@ -1,24 +0,0 @@ ---- configure.orig Thu Oct 9 20:05:15 2003 -+++ configure Fri Oct 10 13:22:18 2003 -@@ -16164,7 +16164,7 @@ - - if test "x$prefix" != "xNONE"; then - prefix=`eval echo $prefix` -- PERL_MM_PARAMS="INSTALLDIRS=vendor PREFIX=$prefix" -+ PERL_MM_PARAMS="INSTALLDIRS=vendor PREFIX=%%LOCALBASE%%" - fi - - -@@ -16915,10 +16915,10 @@ - - enable_nss="no" - else -- nsprlibs="-ldl $with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB" -+ nsprlibs="$with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB" - fi - else -- nsprlibs="-ldl -lplc4 -lplds4 -lnspr4 $PTHREAD_LIB" -+ nsprlibs="-lplc4 -lplds4 -lnspr4 $PTHREAD_LIB" - fi - - echo "$as_me:$LINENO: checking for Mozilla nspr libraries" >&5 diff --git a/net/gaim/files/patch-plugins_Makefile.in b/net/gaim/files/patch-plugins_Makefile.in deleted file mode 100644 index 3d74afc3e..000000000 --- a/net/gaim/files/patch-plugins_Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- plugins/Makefile.in.orig Sun May 30 17:53:41 2004 -+++ plugins/Makefile.in Sun May 30 17:54:22 2004 -@@ -285,7 +285,7 @@ - target_cpu = @target_cpu@ - target_os = @target_os@ - target_vendor = @target_vendor@ --DIST_SUBDIRS = docklet gevolution gaim-remote gestures perl ssl tcl ticker -+DIST_SUBDIRS = docklet gaim-remote gestures perl ssl tcl ticker --@BUILD_GEVOLUTION_TRUE@GEVOLUTION_DIR = gevolution -+@BUILD_GEVOLUTION_TRUE@GEVOLUTION_DIR = - @USE_PERL_TRUE@PERL_DIR = perl - diff --git a/net/gaim/files/patch-src_gtkimhtml.c b/net/gaim/files/patch-src_gtkimhtml.c deleted file mode 100644 index 9430baae1..000000000 --- a/net/gaim/files/patch-src_gtkimhtml.c +++ /dev/null @@ -1,22 +0,0 @@ ---- src/gtkimhtml.c.orig Sun May 30 18:17:14 2004 -+++ src/gtkimhtml.c Sun May 30 18:19:47 2004 -@@ -782,7 +782,7 @@ - if (selection_data->length >= 2 && - (*(guint16 *)text == 0xfeff || *(guint16 *)text == 0xfffe)) { - /* This is UCS-2 */ -- char *tmp; -+ /*char *tmp;*/ - char *utf8 = g_convert(text, selection_data->length, "UTF-8", "UCS-2", NULL, NULL, NULL); - g_free(text); - text = utf8; -@@ -790,8 +790,8 @@ - gaim_debug_warning("gtkimhtml", "g_convert from UCS-2 failed in paste_received_cb\n"); - return; - } -- tmp = g_utf8_next_char(text); -- memmove(text, tmp, strlen(tmp) + 1); -+ /*tmp = g_utf8_next_char(text);*/ -+ /*memmove(text, tmp, strlen(tmp) + 1);*/ - } - - if (!(*text) || !g_utf8_validate(text, -1, NULL)) { diff --git a/net/gaim/files/patch-src_protocols_oscar_ft.c b/net/gaim/files/patch-src_protocols_oscar_ft.c deleted file mode 100644 index 926db5f44..000000000 --- a/net/gaim/files/patch-src_protocols_oscar_ft.c +++ /dev/null @@ -1,10 +0,0 @@ ---- src/protocols/oscar/ft.c.orig Sat Jan 10 14:05:46 2004 -+++ src/protocols/oscar/ft.c Sat Jan 10 14:07:58 2004 -@@ -49,6 +49,7 @@ - #ifndef _WIN32 - #include <stdio.h> - #include <netdb.h> -+#include <limits.h> - #include <sys/socket.h> - #include <netinet/in.h> - #include <sys/utsname.h> /* for aim_odc_initiate */ diff --git a/net/gaim/files/patch-src_protocols_oscar_oscar.c b/net/gaim/files/patch-src_protocols_oscar_oscar.c deleted file mode 100644 index 43a291b29..000000000 --- a/net/gaim/files/patch-src_protocols_oscar_oscar.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/protocols/oscar/oscar.c.orig Wed Aug 25 21:29:00 2004 -+++ src/protocols/oscar/oscar.c Thu Aug 26 21:55:32 2004 -@@ -3247,7 +3247,7 @@ - * Note: There *may* be some clients which send messages as HTML formatted - - * they need to be special-cased somehow. - */ -- if (isdigit(gaim_account_get_username(account)[0]) && isdigit(userinfo->sn[0])) { -+ if (isdigit(gaim_account_get_username(account)[0]) && isdigit(userinfo->sn[0]) && g_strncasecmp(tmp, "<HTML>", 6)) { - /* being recevied by ICQ from ICQ - escape HTML so it is displayed as sent */ - gchar *tmp2 = gaim_escape_html(tmp); - g_free(tmp); diff --git a/net/gaim/pkg-descr b/net/gaim/pkg-descr deleted file mode 100644 index d4901fdf0..000000000 --- a/net/gaim/pkg-descr +++ /dev/null @@ -1,21 +0,0 @@ -Gaim is a multi-protocol instant messaging client. It is compatible with AIM -(Oscar and TOC protocols), ICQ, MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu, -and Zephyr networks. - -Gaim users can log in to multiple accounts on multiple IM networks -simultaneously. This means that you can be chatting with friends on AOL -Instant Messenger, talking to a friend on Yahoo Messenger, and sitting in an -IRC channel all at the same time. - -Gaim supports many features of the various networks, such as file transfer -(coming soon), away messages, typing notification, and MSN window closing -notification. It also goes beyond that and provides many unique features. A -few popular features are Buddy Pounces, which give the ability to notify you, -send a message, play a sound, or run a program when a specific buddy goes away, -signs online, or returns from idle; and plugins, consisting of text -replacement, a buddy ticker, extended message notification, iconify on away, -and more. - -(Adapted from the About Gaim page.) - -WWW: http://gaim.sourceforge.net/ diff --git a/net/gaim/pkg-plist b/net/gaim/pkg-plist deleted file mode 100644 index 22d034664..000000000 --- a/net/gaim/pkg-plist +++ /dev/null @@ -1,423 +0,0 @@ -bin/gaim -bin/gaim-remote -include/gaim/account.h -include/gaim/accountopt.h -include/gaim/away.h -include/gaim/blist.h -include/gaim/buddyicon.h -include/gaim/cmds.h -include/gaim/config.h -include/gaim/connection.h -include/gaim/conversation.h -include/gaim/core.h -include/gaim/debug.h -include/gaim/dnd-hints.h -include/gaim/eventloop.h -include/gaim/ft.h -include/gaim/gaim-disclosure.h -include/gaim/gaim.h -include/gaim/gtkaccount.h -include/gaim/gtkblist.h -include/gaim/gtkcellrendererprogress.h -include/gaim/gtkconn.h -include/gaim/gtkconv.h -include/gaim/gtkdebug.h -include/gaim/gtkdialogs.h -include/gaim/gtkeventloop.h -include/gaim/gtkft.h -include/gaim/gtkgaim.h -include/gaim/gtkimhtml.h -include/gaim/gtkimhtmltoolbar.h -include/gaim/gtklog.h -include/gaim/gtknotify.h -include/gaim/gtkplugin.h -include/gaim/gtkpluginpref.h -include/gaim/gtkpounce.h -include/gaim/gtkprefs.h -include/gaim/gtkprivacy.h -include/gaim/gtkrequest.h -include/gaim/gtkroomlist.h -include/gaim/gtksound.h -include/gaim/gtksourceiter.h -include/gaim/gtkutils.h -include/gaim/imgstore.h -include/gaim/internal.h -include/gaim/log.h -include/gaim/md5.h -include/gaim/network.h -include/gaim/notify.h -include/gaim/plugin.h -include/gaim/pluginpref.h -include/gaim/pounce.h -include/gaim/prefs.h -include/gaim/privacy.h -include/gaim/proxy.h -include/gaim/prpl.h -include/gaim/remote-socket.h -include/gaim/remote.h -include/gaim/request.h -include/gaim/roomlist.h -include/gaim/server.h -include/gaim/sha.h -include/gaim/signals.h -include/gaim/sound.h -include/gaim/sslconn.h -include/gaim/status.h -include/gaim/stock.h -include/gaim/stringref.h -include/gaim/util.h -include/gaim/value.h -include/gaim/version.h -include/gaim/xmlnode.h -lib/gaim/autorecon.so -lib/gaim/docklet.so -lib/gaim/extplacement.so -lib/gaim/gaim-remote.so -lib/gaim/gestures.so -lib/gaim/history.so -lib/gaim/iconaway.so -lib/gaim/idle.so -lib/gaim/libgg.so -lib/gaim/libirc.so -lib/gaim/libjabber.so -lib/gaim/libmsn.so -lib/gaim/libnapster.so -lib/gaim/libnovell.so -lib/gaim/liboscar.so -%%SILC%%lib/gaim/libsilcgaim.so -lib/gaim/libyahoo.so -lib/gaim/libzephyr.so -lib/gaim/notify.so -%%PERL:%%lib/gaim/perl.so -lib/gaim/spellchk.so -lib/gaim/relnot.so -lib/gaim/ssl-gnutls.so -lib/gaim/ssl-nss.so -lib/gaim/ssl.so -lib/gaim/statenotify.so -%%TCL:%%lib/gaim/tcl.so -lib/gaim/ticker.so -lib/gaim/timestamp.so -lib/libgaim-remote.a -lib/libgaim-remote.so -lib/libgaim-remote.so.0 -libdata/pkgconfig/gaim.pc -share/gnome/applications/gaim.desktop -share/gnome/pixmaps/gaim.png -share/gnome/pixmaps/gaim/buttons/about_menu.png -share/gnome/pixmaps/gaim/buttons/accounts.png -share/gnome/pixmaps/gaim/buttons/change-bgcolor-small.png -share/gnome/pixmaps/gaim/buttons/change-fgcolor-small.png -share/gnome/pixmaps/gaim/buttons/edit.png -share/gnome/pixmaps/gaim/buttons/insert-image-small.png -share/gnome/pixmaps/gaim/buttons/insert-link-small.png -share/gnome/pixmaps/gaim/buttons/insert-smiley-small.png -share/gnome/pixmaps/gaim/buttons/pause.png -share/gnome/pixmaps/gaim/buttons/send-im.png -share/gnome/pixmaps/gaim/buttons/text_bigger.png -share/gnome/pixmaps/gaim/buttons/text_normal.png -share/gnome/pixmaps/gaim/buttons/text_smaller.png -share/gnome/pixmaps/gaim/dialogs/gaim_auth.png -share/gnome/pixmaps/gaim/dialogs/gaim_cool.png -share/gnome/pixmaps/gaim/dialogs/gaim_error.png -share/gnome/pixmaps/gaim/dialogs/gaim_info.png -share/gnome/pixmaps/gaim/dialogs/gaim_question.png -share/gnome/pixmaps/gaim/dialogs/gaim_warning.png -share/gnome/pixmaps/gaim/icons/away.png -share/gnome/pixmaps/gaim/icons/connect.png -share/gnome/pixmaps/gaim/icons/info.png -share/gnome/pixmaps/gaim/icons/msgpend.png -share/gnome/pixmaps/gaim/icons/msgunread.png -share/gnome/pixmaps/gaim/icons/offline.png -share/gnome/pixmaps/gaim/icons/online.png -share/gnome/pixmaps/gaim/logo.png -share/gnome/pixmaps/gaim/smileys/default/angel.png -share/gnome/pixmaps/gaim/smileys/default/bigsmile.png -share/gnome/pixmaps/gaim/smileys/default/burp.png -share/gnome/pixmaps/gaim/smileys/default/cool.png -share/gnome/pixmaps/gaim/smileys/default/crazy.png -share/gnome/pixmaps/gaim/smileys/default/crossedlips.png -share/gnome/pixmaps/gaim/smileys/default/cry.png -share/gnome/pixmaps/gaim/smileys/default/download.png -share/gnome/pixmaps/gaim/smileys/default/embarrassed.png -share/gnome/pixmaps/gaim/smileys/default/farted.png -share/gnome/pixmaps/gaim/smileys/default/kiss.png -share/gnome/pixmaps/gaim/smileys/default/luke.png -share/gnome/pixmaps/gaim/smileys/default/moneymouth.png -share/gnome/pixmaps/gaim/smileys/default/mrt.png -share/gnome/pixmaps/gaim/smileys/default/msn_angel.png -share/gnome/pixmaps/gaim/smileys/default/msn_angry.png -share/gnome/pixmaps/gaim/smileys/default/msn_away.png -share/gnome/pixmaps/gaim/smileys/default/msn_bat.gif -share/gnome/pixmaps/gaim/smileys/default/msn_beer.png -share/gnome/pixmaps/gaim/smileys/default/msn_bowl.png -share/gnome/pixmaps/gaim/smileys/default/msn_boy.png -share/gnome/pixmaps/gaim/smileys/default/msn_brb.png -share/gnome/pixmaps/gaim/smileys/default/msn_brheart.png -share/gnome/pixmaps/gaim/smileys/default/msn_cake.gif -share/gnome/pixmaps/gaim/smileys/default/msn_car.png -share/gnome/pixmaps/gaim/smileys/default/msn_cat.png -share/gnome/pixmaps/gaim/smileys/default/msn_cellphone.png -share/gnome/pixmaps/gaim/smileys/default/msn_cigarette.gif -share/gnome/pixmaps/gaim/smileys/default/msn_clock.png -share/gnome/pixmaps/gaim/smileys/default/msn_coffee.png -share/gnome/pixmaps/gaim/smileys/default/msn_coins.png -share/gnome/pixmaps/gaim/smileys/default/msn_computer.png -share/gnome/pixmaps/gaim/smileys/default/msn_cry.gif -share/gnome/pixmaps/gaim/smileys/default/msn_deadflower.png -share/gnome/pixmaps/gaim/smileys/default/msn_devil.png -share/gnome/pixmaps/gaim/smileys/default/msn_dog.png -share/gnome/pixmaps/gaim/smileys/default/msn_dontknow.gif -share/gnome/pixmaps/gaim/smileys/default/msn_donttell.png -share/gnome/pixmaps/gaim/smileys/default/msn_drink.png -share/gnome/pixmaps/gaim/smileys/default/msn_email.png -share/gnome/pixmaps/gaim/smileys/default/msn_embarrassed.png -share/gnome/pixmaps/gaim/smileys/default/msn_eyeroll.gif -share/gnome/pixmaps/gaim/smileys/default/msn_film.png -share/gnome/pixmaps/gaim/smileys/default/msn_fingerscrossed.png -share/gnome/pixmaps/gaim/smileys/default/msn_flower.png -share/gnome/pixmaps/gaim/smileys/default/msn_gift.png -share/gnome/pixmaps/gaim/smileys/default/msn_girl.png -share/gnome/pixmaps/gaim/smileys/default/msn_handcuffs.png -share/gnome/pixmaps/gaim/smileys/default/msn_heart.png -share/gnome/pixmaps/gaim/smileys/default/msn_highfive.png -share/gnome/pixmaps/gaim/smileys/default/msn_hot.png -share/gnome/pixmaps/gaim/smileys/default/msn_icon.png -share/gnome/pixmaps/gaim/smileys/default/msn_idea.png -share/gnome/pixmaps/gaim/smileys/default/msn_island.png -share/gnome/pixmaps/gaim/smileys/default/msn_kiss.png -share/gnome/pixmaps/gaim/smileys/default/msn_laugh.png -share/gnome/pixmaps/gaim/smileys/default/msn_lightning.gif -share/gnome/pixmaps/gaim/smileys/default/msn_nerd.png -share/gnome/pixmaps/gaim/smileys/default/msn_neutral.png -share/gnome/pixmaps/gaim/smileys/default/msn_note.png -share/gnome/pixmaps/gaim/smileys/default/msn_occ.png -share/gnome/pixmaps/gaim/smileys/default/msn_online.png -share/gnome/pixmaps/gaim/smileys/default/msn_ooooh.png -share/gnome/pixmaps/gaim/smileys/default/msn_party.gif -share/gnome/pixmaps/gaim/smileys/default/msn_phone.png -share/gnome/pixmaps/gaim/smileys/default/msn_photo.png -share/gnome/pixmaps/gaim/smileys/default/msn_pizza.png -share/gnome/pixmaps/gaim/smileys/default/msn_plane.png -share/gnome/pixmaps/gaim/smileys/default/msn_plate.png -share/gnome/pixmaps/gaim/smileys/default/msn_question.png -share/gnome/pixmaps/gaim/smileys/default/msn_rainbow.png -share/gnome/pixmaps/gaim/smileys/default/msn_run.png -share/gnome/pixmaps/gaim/smileys/default/msn_runback.png -share/gnome/pixmaps/gaim/smileys/default/msn_sad.png -share/gnome/pixmaps/gaim/smileys/default/msn_sarcastic.png -share/gnome/pixmaps/gaim/smileys/default/msn_secret.png -share/gnome/pixmaps/gaim/smileys/default/msn_sheep.png -share/gnome/pixmaps/gaim/smileys/default/msn_sick.png -share/gnome/pixmaps/gaim/smileys/default/msn_sleep.png -share/gnome/pixmaps/gaim/smileys/default/msn_sleepy.gif -share/gnome/pixmaps/gaim/smileys/default/msn_smiley.png -share/gnome/pixmaps/gaim/smileys/default/msn_snail.png -share/gnome/pixmaps/gaim/smileys/default/msn_soccer.png -share/gnome/pixmaps/gaim/smileys/default/msn_star.png -share/gnome/pixmaps/gaim/smileys/default/msn_stormy.png -share/gnome/pixmaps/gaim/smileys/default/msn_sun.png -share/gnome/pixmaps/gaim/smileys/default/msn_sunglasses.png -share/gnome/pixmaps/gaim/smileys/default/msn_teeth.png -share/gnome/pixmaps/gaim/smileys/default/msn_think.gif -share/gnome/pixmaps/gaim/smileys/default/msn_thumbdown.png -share/gnome/pixmaps/gaim/smileys/default/msn_thumbup.png -share/gnome/pixmaps/gaim/smileys/default/msn_tongue.png -share/gnome/pixmaps/gaim/smileys/default/msn_turtle.png -share/gnome/pixmaps/gaim/smileys/default/msn_umbrella.png -share/gnome/pixmaps/gaim/smileys/default/msn_weird.png -share/gnome/pixmaps/gaim/smileys/default/msn_wink.gif -share/gnome/pixmaps/gaim/smileys/default/msn_xbox.png -share/gnome/pixmaps/gaim/smileys/default/oneeye.png -share/gnome/pixmaps/gaim/smileys/default/sad.png -share/gnome/pixmaps/gaim/smileys/default/scream.png -share/gnome/pixmaps/gaim/smileys/default/smile.png -share/gnome/pixmaps/gaim/smileys/default/theme -share/gnome/pixmaps/gaim/smileys/default/think.png -share/gnome/pixmaps/gaim/smileys/default/tongue.png -share/gnome/pixmaps/gaim/smileys/default/wink.png -share/gnome/pixmaps/gaim/smileys/default/yahoo_alien.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_alien2.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_angel.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_angry.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_batting.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_beatup.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_bigsmile.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_blush.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_brokenheart.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_bye.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_chicken.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_clap.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_clown.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_coffee.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_cow.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_cowboy.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_cry.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_dance.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_devil.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_doh.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_drool.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_eyebrow.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_eyeroll.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_femalefighter.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_flag.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_flower.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_frustrated.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_ghost.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_giggle.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_glasses.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_huggs.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_hypnotized.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_idea.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_kiss.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_laughloud.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_liar.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_loser.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_love.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_madtongue.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_malefighter1.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_malefighter2.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_mean.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_moneyeyes.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_monkey.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_nailbiting.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_neutral.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_ooooh.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_party.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_peace.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_pig.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_pray.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_pumpkin.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_question.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_rotfl.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_sad.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_shame.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_shamrock.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_shhhh.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_sick.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_sighing.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_silent.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_silly.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_sleep.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_smiley.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_star.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_sunglas.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_sweating.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_talktohand.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_think.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_tired.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_tongue.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_waiting.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_waving.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_whistling.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_wink.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_worried.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_worship.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_yingyang.gif -share/gnome/pixmaps/gaim/smileys/default/yahoo_youkiddingme.gif -share/gnome/pixmaps/gaim/smileys/default/yell.png -share/gnome/pixmaps/gaim/smileys/none/theme -share/gnome/pixmaps/gaim/status/default/activebuddy.png -share/gnome/pixmaps/gaim/status/default/admin.png -share/gnome/pixmaps/gaim/status/default/aim.png -share/gnome/pixmaps/gaim/status/default/aol.png -share/gnome/pixmaps/gaim/status/default/away.png -share/gnome/pixmaps/gaim/status/default/dnd.png -share/gnome/pixmaps/gaim/status/default/extendedaway.png -share/gnome/pixmaps/gaim/status/default/female.png -share/gnome/pixmaps/gaim/status/default/founder.png -share/gnome/pixmaps/gaim/status/default/freeforchat.png -share/gnome/pixmaps/gaim/status/default/gadu-gadu.png -share/gnome/pixmaps/gaim/status/default/game.png -share/gnome/pixmaps/gaim/status/default/halfop.png -share/gnome/pixmaps/gaim/status/default/hiptop.png -share/gnome/pixmaps/gaim/status/default/icq.png -share/gnome/pixmaps/gaim/status/default/ignored.png -share/gnome/pixmaps/gaim/status/default/invisible.png -share/gnome/pixmaps/gaim/status/default/irc.png -share/gnome/pixmaps/gaim/status/default/jabber.png -share/gnome/pixmaps/gaim/status/default/login.png -share/gnome/pixmaps/gaim/status/default/logout.png -share/gnome/pixmaps/gaim/status/default/male.png -share/gnome/pixmaps/gaim/status/default/msn.png -share/gnome/pixmaps/gaim/status/default/na.png -share/gnome/pixmaps/gaim/status/default/napster.png -share/gnome/pixmaps/gaim/status/default/notauthorized.png -share/gnome/pixmaps/gaim/status/default/novell.png -share/gnome/pixmaps/gaim/status/default/occupied.png -share/gnome/pixmaps/gaim/status/default/offline.png -share/gnome/pixmaps/gaim/status/default/op.png -share/gnome/pixmaps/gaim/status/default/rendezvous.png -share/gnome/pixmaps/gaim/status/default/secure.png -share/gnome/pixmaps/gaim/status/default/silc.png -share/gnome/pixmaps/gaim/status/default/trepia.png -share/gnome/pixmaps/gaim/status/default/voice.png -share/gnome/pixmaps/gaim/status/default/wireless.png -share/gnome/pixmaps/gaim/status/default/yahoo.png -share/gnome/pixmaps/gaim/status/default/zephyr.png -share/gnome/pixmaps/gaim/tb_drag_arrow_down.xpm -share/gnome/pixmaps/gaim/tb_drag_arrow_left.xpm -share/gnome/pixmaps/gaim/tb_drag_arrow_right.xpm -share/gnome/pixmaps/gaim/tb_drag_arrow_up.xpm -share/gnome/pixmaps/gaim/typed.png -share/gnome/pixmaps/gaim/typing.png -share/gnome/sounds/gaim/arrive.wav -share/gnome/sounds/gaim/leave.wav -share/gnome/sounds/gaim/receive.wav -share/gnome/sounds/gaim/redalert.wav -share/gnome/sounds/gaim/send.wav -share/locale/am/LC_MESSAGES/gaim.mo -share/locale/bg/LC_MESSAGES/gaim.mo -share/locale/ca/LC_MESSAGES/gaim.mo -share/locale/cs/LC_MESSAGES/gaim.mo -share/locale/da/LC_MESSAGES/gaim.mo -share/locale/de/LC_MESSAGES/gaim.mo -share/locale/en_AU/LC_MESSAGES/gaim.mo -share/locale/en_CA/LC_MESSAGES/gaim.mo -share/locale/en_GB/LC_MESSAGES/gaim.mo -share/locale/es/LC_MESSAGES/gaim.mo -share/locale/fi/LC_MESSAGES/gaim.mo -share/locale/fr/LC_MESSAGES/gaim.mo -share/locale/he/LC_MESSAGES/gaim.mo -share/locale/hi/LC_MESSAGES/gaim.mo -share/locale/hu/LC_MESSAGES/gaim.mo -share/locale/it/LC_MESSAGES/gaim.mo -share/locale/ja/LC_MESSAGES/gaim.mo -share/locale/ko/LC_MESSAGES/gaim.mo -share/locale/lt/LC_MESSAGES/gaim.mo -share/locale/mk/LC_MESSAGES/gaim.mo -share/locale/nl/LC_MESSAGES/gaim.mo -share/locale/no/LC_MESSAGES/gaim.mo -share/locale/pl/LC_MESSAGES/gaim.mo -share/locale/pt/LC_MESSAGES/gaim.mo -share/locale/pt_BR/LC_MESSAGES/gaim.mo -share/locale/ro/LC_MESSAGES/gaim.mo -share/locale/ru/LC_MESSAGES/gaim.mo -share/locale/sk/LC_MESSAGES/gaim.mo -share/locale/sl/LC_MESSAGES/gaim.mo -share/locale/sr/LC_MESSAGES/gaim.mo -share/locale/sr@Latn/LC_MESSAGES/gaim.mo -share/locale/sv/LC_MESSAGES/gaim.mo -share/locale/vi/LC_MESSAGES/gaim.mo -share/locale/zh_CN/LC_MESSAGES/gaim.mo -share/locale/zh_TW/LC_MESSAGES/gaim.mo -@dirrm share/gnome/sounds/gaim -@dirrm share/gnome/pixmaps/gaim/status/default -@dirrm share/gnome/pixmaps/gaim/status -@dirrm share/gnome/pixmaps/gaim/smileys/none -@dirrm share/gnome/pixmaps/gaim/smileys/default -@dirrm share/gnome/pixmaps/gaim/smileys -@dirrm share/gnome/pixmaps/gaim/icons -@dirrm share/gnome/pixmaps/gaim/dialogs -@dirrm share/gnome/pixmaps/gaim/buttons -@dirrm share/gnome/pixmaps/gaim -@dirrm lib/gaim -@dirrm include/gaim -%%PERL:%%@cwd %%LOCALBASE%% -%%PERL:%%lib/perl5/%%PERL_VER%%/man/man3/Gaim.3 -%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim/autosplit.ix -%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim/Gaim.so -%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim/Gaim.bs -%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim/.packlist -%%PERL:%%%%SITE_PERL%%/%%PERL_ARCH%%/Gaim.pm -%%PERL:%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Gaim diff --git a/textproc/intltool/Makefile b/textproc/intltool/Makefile deleted file mode 100644 index 1162a118d..000000000 --- a/textproc/intltool/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: intltool -# Date created: 19th January 2001 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD: ports/textproc/intltool/Makefile,v 1.39 2004/08/23 01:06:48 marcus Exp $ -# - -PORTNAME= intltool -PORTVERSION= 0.31.3 -CATEGORIES= textproc gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.31 -DIST_SUBDIR= gnome - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Xml internationalization support for GNOME, and others - -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser -RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser - -USE_BZIP2= yes -USE_GMAKE= yes -USE_ICONV= yes -USE_PERL5= yes -USE_GNOME= gnometarget -USE_REINPLACE= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --libdir="${PREFIX}/libdata" - -MAN8= intltool-extract.8 intltool-merge.8 intltool-prepare.8 \ - intltool-update.8 intltoolize.8 - -CONFLICTS= xml-i18n-tools-* - -post-patch: - @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} \ - -E -e '/^mkinstalldirs[[:space:]]*=/s^/\.\.^^g' - -post-install: - ${MKDIR} ${PREFIX}/share/intltool/XML/Parser/Style - ${INSTALL_DATA} ${FILESDIR}/OrigTree.pm \ - ${PREFIX}/share/intltool/XML/Parser/Style - -.include <bsd.port.mk> diff --git a/textproc/intltool/distinfo b/textproc/intltool/distinfo deleted file mode 100644 index cb462e31b..000000000 --- a/textproc/intltool/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome/intltool-0.31.3.tar.bz2) = e1b8789f7a023657d827189f3602aa13 -SIZE (gnome/intltool-0.31.3.tar.bz2) = 125266 diff --git a/textproc/intltool/files/OrigTree.pm b/textproc/intltool/files/OrigTree.pm deleted file mode 100644 index 507f30e56..000000000 --- a/textproc/intltool/files/OrigTree.pm +++ /dev/null @@ -1,91 +0,0 @@ -# $Id: OrigTree.pm,v 1.1 2004-09-29 17:56:10 adamw Exp $ - -package XML::Parser::Style::OrigTree; -$XML::Parser::Built_In_Styles{OrigTree} = 1; - -sub Init { - my $expat = shift; - $expat->{Lists} = []; - $expat->{Curlist} = $expat->{OrigTree} = []; -} - -sub Start { - my $expat = shift; - my $tag = shift; - my $newlist = [ { @_ } ]; - push @{ $expat->{Lists} }, $expat->{Curlist}; - push @{ $expat->{Curlist} }, $tag => $newlist; - $expat->{Curlist} = $newlist; -} - -sub End { - my $expat = shift; - my $tag = shift; - $expat->{Curlist} = pop @{ $expat->{Lists} }; -} - -sub Char { - my $expat = shift; - my $text = shift; - my $clist = $expat->{Curlist}; - my $pos = $#$clist; - - if ($pos > 0 and $clist->[$pos - 1] eq '0') { - $clist->[$pos] .= $expat->original_string(); - } else { - push @$clist, 0 => $expat->original_string(); - } -} - -sub Final { - my $expat = shift; - delete $expat->{Curlist}; - delete $expat->{Lists}; - $expat->{OrigTree}; -} - -1; -__END__ - -=head1 NAME - -XML::Parser::Style::OrigTree - -=head1 SYNOPSIS - - use XML::Parser; - my $p = XML::Parser->new(Style => 'OrigTree'); - my $tree = $p->parsefile('foo.xml'); - -=head1 DESCRIPTION - -This module is a variant of the XML::Parser's Tree style parser. It -uses original_string, so that Entities are not converted. - -When parsing a document, C<parse()> will return a parse tree for the -document. Each node in the tree -takes the form of a tag, content pair. Text nodes are represented with -a pseudo-tag of "0" and the string that is their content. For elements, -the content is an array reference. The first item in the array is a -(possibly empty) hash reference containing attributes. The remainder of -the array is a sequence of tag-content pairs representing the content -of the element. - -So for example the result of parsing: - - <foo><head id="a">Hello <em>there</em></head><bar>Howdy<ref/></bar>do</foo> - -would be: - Tag Content - ================================================================== - [foo, [{}, head, [{id => "a"}, 0, "Hello ", em, [{}, 0, "there"]], - bar, [ {}, 0, "Howdy", ref, [{}]], - 0, "do" - ] - ] - -The root document "foo", has 3 children: a "head" element, a "bar" -element and the text "do". After the empty attribute hash, these are -represented in it's contents by 3 tag-content pairs. - -=cut diff --git a/textproc/intltool/files/patch-configure b/textproc/intltool/files/patch-configure deleted file mode 100644 index 1bc512837..000000000 --- a/textproc/intltool/files/patch-configure +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD: ports/textproc/intltool/files/patch-configure,v 1.3 2002/05/24 07:56:26 sobomax Exp $ - ---- configure.orig Mon May 20 01:34:39 2002 -+++ configure Fri May 24 10:52:12 2002 -@@ -1452,7 +1452,7 @@ - echo "$as_me: error: perl not found" >&2;} - { (exit 1); exit 1; }; } - fi --if test -z "`$PERL -v | fgrep 'v5.' 2> /dev/null`" -a -z "`$PERL -v | fgrep 'version 5.' 2> /dev/null`"; then -+if test -z "`$PERL -v | fgrep '5.' 2> /dev/null`" -a -z "`$PERL -v | fgrep 'version 5.' 2> /dev/null`"; then - { { echo "$as_me:$LINENO: error: perl 5.x required for intltool" >&5 - echo "$as_me: error: perl 5.x required for intltool" >&2;} - { (exit 1); exit 1; }; } diff --git a/textproc/intltool/files/patch-intltool-merge.in.in b/textproc/intltool/files/patch-intltool-merge.in.in deleted file mode 100644 index bd377f740..000000000 --- a/textproc/intltool/files/patch-intltool-merge.in.in +++ /dev/null @@ -1,11 +0,0 @@ ---- intltool-merge.in.in.orig Mon Dec 8 21:27:55 2003 -+++ intltool-merge.in.in Mon Dec 8 21:28:05 2003 -@@ -875,7 +875,7 @@ - if ($MULTIPLE_OUTPUT) { - for my $lang (sort keys %po_files_by_lang) { - if ( ! -e $lang ) { -- mkdir $lang or die "Cannot create subdirectory $lang: $!\n"; -+ mkdir $lang, 0777 or die "Cannot create subdirectory $lang: $!\n"; - } - open OUTPUT, ">$lang/$OUTFILE" or die "Cannot open $lang/$OUTFILE: $!\n"; - my $tree = readXml($FILE); diff --git a/textproc/intltool/pkg-descr b/textproc/intltool/pkg-descr deleted file mode 100644 index b8fb6ebf9..000000000 --- a/textproc/intltool/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -The module contains some utility scripts and assorted auto* magic for -internationalizing various kinds of XML files. - -* Features - -o Extract translatable strings from various source files (.xml.in, - .glade, .desktop.in, .server.in, .oaf.in). - -o Collect the extracted strings together with messages from traditional - source files (.c, .h) in po/$(PACKAGE).pot. - -o Merge back the translations from .po files into .xml, .desktop and - .oaf files. This merge step will happen at build resp. installation - time. - -WWW: http://www.gnome.org/ diff --git a/textproc/intltool/pkg-plist b/textproc/intltool/pkg-plist deleted file mode 100644 index 1f5de4439..000000000 --- a/textproc/intltool/pkg-plist +++ /dev/null @@ -1,27 +0,0 @@ -bin/intltool-extract -bin/intltool-merge -bin/intltool-prepare -bin/intltool-update -bin/intltoolize -bin/xml-i18n-toolize -share/aclocal/intltool.m4 -share/aclocal/xml-i18n-tools.m4 -share/intltool/XML/Parser/Style/OrigTree.pm -share/intltool/intltool-extract.in -share/intltool/intltool-merge.in -share/intltool/intltool-po-Makefile.in.in-patch-1 -share/intltool/intltool-po-Makefile.in.in-patch-2 -share/intltool/intltool-po-Makefile.in.in-patch-3 -share/intltool/intltool-po-Makefile.in.in-patch-4 -share/intltool/intltool-po-Makefile.in.in-patch-5 -share/intltool/intltool-po-Makefile.in.in-patch-6 -share/intltool/intltool-po-Makefile.in.in-patch-7 -share/intltool/intltool-po-Makefile.in.in-patch-8 -share/intltool/intltool-update.in -share/intltool/xml-i18n-po-Makefile.in.in-patch-1 -share/intltool/xml-i18n-po-Makefile.in.in-patch-2 -share/intltool/xml-i18n-po-Makefile.in.in-patch-5 -@dirrm share/intltool/XML/Parser/Style -@dirrm share/intltool/XML/Parser -@dirrm share/intltool/XML -@dirrm share/intltool |