summaryrefslogtreecommitdiff
path: root/x11/gnomedesktop
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2002-04-24 16:07:53 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2002-04-24 16:07:53 +0000
commit7923a9dc9b5e6908a1b794543dfd2167a93b30fa (patch)
treef63f0dabb8d7e0d8fd89799970379fc0aa9291de /x11/gnomedesktop
parentAdd libwnck, an GNOME 2.0 API for building pagers and tasklists. (diff)
Add gnomedesktop, part of the GNOME 2.0 Desktop API.
Reviewed by: sobomax Approved by: sobomax
Notes
Notes: svn path=/head/; revision=58069
Diffstat (limited to 'x11/gnomedesktop')
-rw-r--r--x11/gnomedesktop/Makefile42
-rw-r--r--x11/gnomedesktop/distinfo1
-rw-r--r--x11/gnomedesktop/files/patch-ltmain.sh45
-rw-r--r--x11/gnomedesktop/pkg-comment1
-rw-r--r--x11/gnomedesktop/pkg-descr4
-rw-r--r--x11/gnomedesktop/pkg-plist208
6 files changed, 301 insertions, 0 deletions
diff --git a/x11/gnomedesktop/Makefile b/x11/gnomedesktop/Makefile
new file mode 100644
index 000000000000..7ce5a3db6be4
--- /dev/null
+++ b/x11/gnomedesktop/Makefile
@@ -0,0 +1,42 @@
+# New ports collection makefile for: gnomedesktop
+# Date created: 13 April 2002
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gnomedesktop
+PORTVERSION= 1.5.14
+CATEGORIES= x11 gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= pre-gnome2/releases/gnome-2.0-desktop-beta3
+DISTNAME= gnome-desktop-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+
+LIB_DEPENDS= gnomeui-2.0:${PORTSDIR}/x11-toolkits/libgnomeui
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_XPM= yes
+USE_GMAKE= yes
+USE_BISON= yes
+INSTALLS_SHLIB= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome2 \
+ --datadir=${PREFIX}/share/gnome2
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LIBS="-L${LOCALBASE}/lib"
+CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
+
+MAN1= gnome-about.1
+
+pre-patch:
+ @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \
+ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
+ @find ${WRKSRC} -name "Makefile.in*" | xargs ${PERL} -pi -e \
+ 's|\$\(libdir\)/pkgconfig|\$\(prefix\)/libdata/pkgconfig|g ; \
+ s|\$\(datadir\)/gnome|\$\(datadir\)|g'
+
+.include <bsd.port.mk>
diff --git a/x11/gnomedesktop/distinfo b/x11/gnomedesktop/distinfo
new file mode 100644
index 000000000000..a24482ec300b
--- /dev/null
+++ b/x11/gnomedesktop/distinfo
@@ -0,0 +1 @@
+MD5 (gnome2/gnome-desktop-1.5.14.tar.bz2) = 4731bdb0df5178d1a63b8e1c3b65c64c
diff --git a/x11/gnomedesktop/files/patch-ltmain.sh b/x11/gnomedesktop/files/patch-ltmain.sh
new file mode 100644
index 000000000000..91713d2306f8
--- /dev/null
+++ b/x11/gnomedesktop/files/patch-ltmain.sh
@@ -0,0 +1,45 @@
+
+$FreeBSD$
+
+--- ltmain.sh.orig Wed Jan 23 11:38:40 2002
++++ ltmain.sh Sun Feb 3 01:44:17 2002
+@@ -1037,8 +1037,16 @@
+ continue
+ ;;
+
++ -pthread)
++ compile_command="$compile_command -pthread"
++ finalize_command="$finalize_command -pthread"
++ compiler_flags="$compiler_flags -pthread"
++ continue
++ ;;
++
+ -module)
+ module=yes
++ build_old_libs=no
+ continue
+ ;;
+
+@@ -2412,6 +2420,9 @@
+ *-*-netbsd*)
+ # Don't link with libc until the a.out ld.so is fixed.
+ ;;
++ *-*-freebsd*)
++ # FreeBSD doesn't need this...
++ ;;
+ *)
+ # Add libc to deplibs on all other systems if necessary.
+ if test "$build_libtool_need_lc" = "yes"; then
+@@ -4179,10 +4190,12 @@
+ fi
+
+ # Install the pseudo-library for information purposes.
++ if /usr/bin/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/x11/gnomedesktop/pkg-comment b/x11/gnomedesktop/pkg-comment
new file mode 100644
index 000000000000..98a49b89d936
--- /dev/null
+++ b/x11/gnomedesktop/pkg-comment
@@ -0,0 +1 @@
+Additional UI API for GNOME 2.0
diff --git a/x11/gnomedesktop/pkg-descr b/x11/gnomedesktop/pkg-descr
new file mode 100644
index 000000000000..500857a54f14
--- /dev/null
+++ b/x11/gnomedesktop/pkg-descr
@@ -0,0 +1,4 @@
+This is a collection of APIs not included in libgnomeui as they have
+not undergone sufficient testing.
+
+WWW: http://www.gnome.org/
diff --git a/x11/gnomedesktop/pkg-plist b/x11/gnomedesktop/pkg-plist
new file mode 100644
index 000000000000..0fd85ad825fe
--- /dev/null
+++ b/x11/gnomedesktop/pkg-plist
@@ -0,0 +1,208 @@
+bin/gnome-about
+include/gnome-desktop-2.0/libgnome/gnome-desktop-item.h
+include/gnome-desktop-2.0/libgnomeui/gnome-ditem-edit.h
+include/gnome-desktop-2.0/libgnomeui/gnome-hint.h
+lib/libgnome-desktop-2.a
+lib/libgnome-desktop-2.so
+lib/libgnome-desktop-2.so.0
+libdata/pkgconfig/gnome-desktop-2.0.pc
+share/gnome2/gnome-about/contributors.dat
+share/gnome2/gnome-about/gnome-version
+share/gnome2/help/fdl/C/fdl.xml
+share/gnome2/help/gpl/C/gpl.xml
+share/gnome2/help/lgpl/C/lgpl.xml
+share/gnome2/vfolders/Accessories.directory
+share/gnome2/vfolders/Applications.directory
+share/gnome2/vfolders/Development.directory
+share/gnome2/vfolders/Games.directory
+share/gnome2/vfolders/Graphics.directory
+share/gnome2/vfolders/Home.directory
+share/gnome2/vfolders/Internet.directory
+share/gnome2/vfolders/Multimedia.directory
+share/gnome2/vfolders/Office.directory
+share/gnome2/vfolders/Root.directory
+share/gnome2/vfolders/Root.order
+share/gnome2/vfolders/Settings.directory
+share/gnome2/vfolders/Settings.order
+share/gnome2/vfolders/System.directory
+share/gnome2/pixmaps/apple-green.png
+share/gnome2/pixmaps/apple-red.png
+share/gnome2/pixmaps/gnome-amusements.png
+share/gnome2/pixmaps/gnome-aorta.png
+share/gnome2/pixmaps/gnome-applets.png
+share/gnome2/pixmaps/gnome-applications.png
+share/gnome2/pixmaps/gnome-audio2.png
+share/gnome2/pixmaps/gnome-background.png
+share/gnome2/pixmaps/gnome-calc2.png
+share/gnome2/pixmaps/gnome-calendar.png
+share/gnome2/pixmaps/gnome-cardgame.png
+share/gnome2/pixmaps/gnome-ccbackground.png
+share/gnome2/pixmaps/gnome-ccdesktop.png
+share/gnome2/pixmaps/gnome-ccdialog.png
+share/gnome2/pixmaps/gnome-cckeyboard-bell.png
+share/gnome2/pixmaps/gnome-cckeyboard.png
+share/gnome2/pixmaps/gnome-ccmime.png
+share/gnome2/pixmaps/gnome-ccperiph.png
+share/gnome2/pixmaps/gnome-ccscreensaver.png
+share/gnome2/pixmaps/gnome-ccthemes.png
+share/gnome2/pixmaps/gnome-ccwindowmanager.png
+share/gnome2/pixmaps/gnome-clock.png
+share/gnome2/pixmaps/gnome-color-browser.png
+share/gnome2/pixmaps/gnome-color-xterm.png
+share/gnome2/pixmaps/gnome-computer.png
+share/gnome2/pixmaps/gnome-cromagnon.png
+share/gnome2/pixmaps/gnome-day.png
+share/gnome2/pixmaps/gnome-debian.png
+share/gnome2/pixmaps/gnome-devel.png
+share/gnome2/pixmaps/gnome-die1.png
+share/gnome2/pixmaps/gnome-die2.png
+share/gnome2/pixmaps/gnome-die3.png
+share/gnome2/pixmaps/gnome-die4.png
+share/gnome2/pixmaps/gnome-die5.png
+share/gnome2/pixmaps/gnome-die6.png
+share/gnome2/pixmaps/gnome-diskfree.png
+share/gnome2/pixmaps/gnome-emacs.png
+share/gnome2/pixmaps/gnome-eterm.png
+share/gnome2/pixmaps/gnome-favorites.png
+share/gnome2/pixmaps/gnome-file-c.png
+share/gnome2/pixmaps/gnome-file-h.png
+share/gnome2/pixmaps/gnome-folder.png
+share/gnome2/pixmaps/gnome-gegl.png
+share/gnome2/pixmaps/gnome-gegl2-2.png
+share/gnome2/pixmaps/gnome-gegl2.png
+share/gnome2/pixmaps/gnome-gemvt.png
+share/gnome2/pixmaps/gnome-gimp.png
+share/gnome2/pixmaps/gnome-globe.png
+share/gnome2/pixmaps/gnome-gmenu.png
+share/gnome2/pixmaps/gnome-gmush.png
+share/gnome2/pixmaps/gnome-gnomine.png
+share/gnome2/pixmaps/gnome-gnomoku.png
+share/gnome2/pixmaps/gnome-graphics.png
+share/gnome2/pixmaps/gnome-gsame.png
+share/gnome2/pixmaps/gnome-help.png
+share/gnome2/pixmaps/gnome-home.png
+share/gnome2/pixmaps/gnome-html.png
+share/gnome2/pixmaps/gnome-image-gif.png
+share/gnome2/pixmaps/gnome-image-jpeg.png
+share/gnome2/pixmaps/gnome-irc.png
+share/gnome2/pixmaps/gnome-joystick.png
+share/gnome2/pixmaps/gnome-laptop.png
+share/gnome2/pixmaps/gnome-lockscreen.png
+share/gnome2/pixmaps/gnome-log.png
+share/gnome2/pixmaps/gnome-logo-icon-transparent.png
+share/gnome2/pixmaps/gnome-logo-icon.png
+share/gnome2/pixmaps/gnome-logo-large.png
+share/gnome2/pixmaps/gnome-mailcheck.png
+share/gnome2/pixmaps/gnome-mdi.png
+share/gnome2/pixmaps/gnome-mnemonic.png
+share/gnome2/pixmaps/gnome-modem.png
+share/gnome2/pixmaps/gnome-money.png
+share/gnome2/pixmaps/gnome-monitor.png
+share/gnome2/pixmaps/gnome-month.png
+share/gnome2/pixmaps/gnome-mouse.png
+share/gnome2/pixmaps/gnome-multimedia.png
+share/gnome2/pixmaps/gnome-networktool.png
+share/gnome2/pixmaps/gnome-news.png
+share/gnome2/pixmaps/gnome-note.png
+share/gnome2/pixmaps/gnome-panel-type-corner.png
+share/gnome2/pixmaps/gnome-panel-type-edge.png
+share/gnome2/pixmaps/gnome-panel-type-floating.png
+share/gnome2/pixmaps/gnome-panel-type-menu.png
+share/gnome2/pixmaps/gnome-panel-type-sliding.png
+share/gnome2/pixmaps/gnome-panel.png
+share/gnome2/pixmaps/gnome-qeye.png
+share/gnome2/pixmaps/gnome-run.png
+share/gnome2/pixmaps/gnome-session.png
+share/gnome2/pixmaps/gnome-set-time.png
+share/gnome2/pixmaps/gnome-settings.png
+share/gnome2/pixmaps/gnome-spider.png
+share/gnome2/pixmaps/gnome-squeak.png
+share/gnome2/pixmaps/gnome-suse.png
+share/gnome2/pixmaps/gnome-system.png
+share/gnome2/pixmaps/gnome-talk.png
+share/gnome2/pixmaps/gnome-term-linux.png
+share/gnome2/pixmaps/gnome-term-linux2.png
+share/gnome2/pixmaps/gnome-term-night.png
+share/gnome2/pixmaps/gnome-term-tiger.png
+share/gnome2/pixmaps/gnome-term.png
+share/gnome2/pixmaps/gnome-tigert.png
+share/gnome2/pixmaps/gnome-touristinfo.png
+share/gnome2/pixmaps/gnome-unknown.png
+share/gnome2/pixmaps/gnome-user-interface.png
+share/gnome2/pixmaps/gnome-util.png
+share/gnome2/pixmaps/gnome-week.png
+share/gnome2/pixmaps/gnome-windows.png
+share/gnome2/pixmaps/gnome-word.png
+share/gnome2/pixmaps/gnome-workspace.png
+share/gnome2/pixmaps/gnome-xterm.png
+share/gnome2/pixmaps/gtkvim.png
+share/gnome2/pixmaps/kterm.xpm
+share/gnome2/pixmaps/launcher-program.png
+share/gnome2/pixmaps/monitor.png
+share/gnome2/pixmaps/panel-arrow-down.png
+share/gnome2/pixmaps/panel-arrow-left.png
+share/gnome2/pixmaps/panel-arrow-right.png
+share/gnome2/pixmaps/panel-arrow-up.png
+share/gnome2/pixmaps/panel-corner-left.png
+share/gnome2/pixmaps/panel-corner-right.png
+share/gnome2/pixmaps/panel-drawer.png
+share/gnome2/pixmaps/panel-folder.png
+share/gnome2/pixmaps/panel-knob.png
+share/gnome2/pixmaps/panel-menu-main.png
+share/gnome2/pixmaps/vnterm.xpm
+share/locale/az/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/bg/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ca/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/cs/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/da/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/de/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/el/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/en_GB/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/es/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/et/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/eu/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/fi/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/fr/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ga/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/gl/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/hu/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/it/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ja/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ko/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/lt/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/lv/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ms/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/nl/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/nn/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/no/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/pl/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/pt/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/pt_BR/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ro/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ru/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/sk/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/sl/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/sp/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/sr/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/sv/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ta/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/tr/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/uk/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/wa/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/zh_CN/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/zh_TW/LC_MESSAGES/gnome-desktop-2.0.mo
+@dirrm share/gnome2/vfolders
+@dirrm share/gnome2/help/lgpl/C/figures
+@dirrm share/gnome2/help/lgpl/C
+@dirrm share/gnome2/help/lgpl
+@dirrm share/gnome2/help/gpl/C/figures
+@dirrm share/gnome2/help/gpl/C
+@dirrm share/gnome2/help/gpl
+@dirrm share/gnome2/help/fdl/C/figures
+@dirrm share/gnome2/help/fdl/C
+@dirrm share/gnome2/help/fdl
+@dirrm share/gnome2/help
+@dirrm share/gnome2/gnome-about
+@dirrm include/gnome-desktop-2.0/libgnomeui
+@dirrm include/gnome-desktop-2.0/libgnome
+@dirrm include/gnome-desktop-2.0