pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

gnome-desktop: Copy x11/gnome-desktop to wip/gnome-desktop2 (candidate for removal)



Module Name:	pkgsrc-wip
Committed By:	Dan Cîrnaț <dan%alt.md@localhost>
Pushed By:	cirnatdan
Date:		Tue Apr 13 21:59:09 2021 +0200
Changeset:	060182233b1177d6b962e1c091e2907d09d8e402

Modified Files:
	desktop-data-model/Makefile
	libslab/Makefile
Added Files:
	gnome-desktop2/DESCR
	gnome-desktop2/Makefile
	gnome-desktop2/PLIST
	gnome-desktop2/buildlink3.mk
	gnome-desktop2/distinfo
	gnome-desktop2/files/netbsd-logo-icon-transparent.png
	gnome-desktop2/files/netbsd-logo-icon.png
	gnome-desktop2/patches/patch-aa

Log Message:
gnome-desktop: Copy x11/gnome-desktop to wip/gnome-desktop2 (candidate for removal)

gnome-desktop 2.x is more than a decade old and the only dependencies reside in
pkgsrc-wip.
I think the package should be deleted but moving it in wip just in case.

See also: https://mail-index.netbsd.org/tech-pkg/2021/04/05/msg024765.html

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=060182233b1177d6b962e1c091e2907d09d8e402

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 desktop-data-model/Makefile                        |   2 +-
 gnome-desktop2/DESCR                               |   9 +
 gnome-desktop2/Makefile                            |  47 +++
 gnome-desktop2/PLIST                               | 334 +++++++++++++++++++++
 gnome-desktop2/buildlink3.mk                       |  17 ++
 gnome-desktop2/distinfo                            |   7 +
 .../files/netbsd-logo-icon-transparent.png         | Bin 0 -> 2163 bytes
 gnome-desktop2/files/netbsd-logo-icon.png          | Bin 0 -> 2218 bytes
 gnome-desktop2/patches/patch-aa                    |  31 ++
 libslab/Makefile                                   |   2 +-
 10 files changed, 447 insertions(+), 2 deletions(-)

diffs:
diff --git a/desktop-data-model/Makefile b/desktop-data-model/Makefile
index 69e78771aa..f1491961e0 100644
--- a/desktop-data-model/Makefile
+++ b/desktop-data-model/Makefile
@@ -31,7 +31,7 @@ BUILDLINK_API_DEPENDS.loudmouth+=	loudmouth>=1.0
 .include "../../devel/pcre/buildlink3.mk"
 .include "../../sysutils/dbus-glib/buildlink3.mk"
 .include "../../sysutils/gnome-vfs/buildlink3.mk"
-.include "../../x11/gnome-desktop/buildlink3.mk"
+.include "../../wip/gnome-desktop2/buildlink3.mk"
 .include "../../x11/gtk2/buildlink3.mk"
 .include "../../x11/libXScrnSaver/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff --git a/gnome-desktop2/DESCR b/gnome-desktop2/DESCR
new file mode 100644
index 0000000000..14318805ea
--- /dev/null
+++ b/gnome-desktop2/DESCR
@@ -0,0 +1,9 @@
+This package contains the libgnome-desktop library which contains
+APIs that really belong in libgnome[ui] but have not seen enough
+testing or development to be considered stable.
+Use at your own risk.
+
+Also contained here are documents installed as part of the core
+GNOME distribution, e.g. the GPL, GNOME's .desktop files, the
+gnome-about program, some manpages and GNOME's core graphics
+files and icons.
diff --git a/gnome-desktop2/Makefile b/gnome-desktop2/Makefile
new file mode 100644
index 0000000000..6d8705d562
--- /dev/null
+++ b/gnome-desktop2/Makefile
@@ -0,0 +1,47 @@
+# $NetBSD$
+#
+
+DISTNAME=		gnome-desktop-2.32.1
+PKGNAME=		${DISTNAME:S/desktop/desktop2/}
+CATEGORIES=		x11 gnome
+MASTER_SITES=		${MASTER_SITE_GNOME:=sources/gnome-desktop/2.32/}
+EXTRACT_SUFX=		.tar.bz2
+PREV_PKGPATH=		../../x11/gnome-desktop
+
+MAINTAINER=		pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=		https://www.gnome.org/
+COMMENT=		Common GNOME2 desktop files and libgnome-desktop library
+
+GNU_CONFIGURE=		yes
+USE_PKGLOCALEDIR=	yes
+USE_TOOLS+=		gmake intltool msgfmt perl:run pkg-config
+USE_LIBTOOL=		yes
+
+AUTOCONF_REQD=		2.62
+
+CONFIGURE_ARGS+=	--with-gnome-distributor="The NetBSD Foundation"
+
+BUILD_DEPENDS+=		gettext-m4>=0.14.6:../../devel/gettext-m4
+
+post-install:
+.for f in netbsd-logo-icon.png netbsd-logo-icon-transparent.png
+	${INSTALL_DATA} ${FILESDIR}/${f} ${DESTDIR}${PREFIX}/share/pixmaps/${f}
+.endfor
+
+.include "../../devel/GConf/buildlink3.mk"
+BUILDLINK_API_DEPENDS.glib2+=	glib2>=2.19.1
+.include "../../devel/glib2/buildlink3.mk"
+.include "../../devel/gettext-lib/buildlink3.mk"
+.include "../../textproc/gnome-doc-utils/buildlink3.mk"
+.include "../../mk/omf-scrollkeeper.mk"
+BUILDLINK_API_DEPENDS.gtk2+=	gtk2+>=2.11.3
+.include "../../x11/gtk2/buildlink3.mk"
+BUILDLINK_API_DEPENDS.libXrandr+=	libXrandr>=1.2
+.include "../../x11/libXrandr/buildlink3.mk"
+.include "../../x11/startup-notification/buildlink3.mk"
+# gnome-about needs py-gnome2-desktop at runtime, which needs us, so
+# we have a circular dependency. To work around this, just depend on
+# Python and hope that py-gnome2-desktop gets the same version.
+CONFIGURE_ENV+=	PYTHON=${PYTHONBIN}
+.include "../../lang/python/application.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/gnome-desktop2/PLIST b/gnome-desktop2/PLIST
new file mode 100644
index 0000000000..e3a2260830
--- /dev/null
+++ b/gnome-desktop2/PLIST
@@ -0,0 +1,334 @@
+@comment $NetBSD: PLIST,v 1.42 2010/11/24 20:24:10 drochner Exp $
+bin/gnome-about
+include/gnome-desktop-2.0/libgnome/gnome-desktop-item.h
+include/gnome-desktop-2.0/libgnome/gnome-desktop-utils.h
+include/gnome-desktop-2.0/libgnomeui/gnome-bg-crossfade.h
+include/gnome-desktop-2.0/libgnomeui/gnome-bg.h
+include/gnome-desktop-2.0/libgnomeui/gnome-desktop-thumbnail.h
+include/gnome-desktop-2.0/libgnomeui/gnome-rr-config.h
+include/gnome-desktop-2.0/libgnomeui/gnome-rr-labeler.h
+include/gnome-desktop-2.0/libgnomeui/gnome-rr.h
+lib/libgnome-desktop-2.la
+lib/pkgconfig/gnome-desktop-2.0.pc
+man/man1/gnome-about.1
+share/applications/gnome-about.desktop
+share/gnome-about/contributors.list
+share/gnome-about/foundation-members.list
+share/gnome-about/gnome-64.png
+share/gnome-about/gnome-version.xml
+share/gnome-about/headers/header-bg-ancient01a.png
+share/gnome-about/headers/header-bg-city01.png
+share/gnome-about/headers/header-bg-clouds01.png
+share/gnome-about/headers/header-bg-clouds02.png
+share/gnome-about/headers/header-bg-hills01.png
+share/gnome-about/headers/header-bg-landscape01.png
+share/gnome-about/headers/header-bg-mountains01.png
+share/gnome-about/headers/header-bg-snow01.png
+share/gnome-about/headers/header-bg-sunset01.png
+share/gnome/help/fdl/C/fdl.xml
+share/gnome/help/fdl/ar/fdl.xml
+share/gnome/help/fdl/ca/fdl.xml
+share/gnome/help/fdl/de/fdl.xml
+share/gnome/help/fdl/el/fdl.xml
+share/gnome/help/fdl/es/fdl.xml
+share/gnome/help/fdl/eu/fdl.xml
+share/gnome/help/fdl/fr/fdl.xml
+share/gnome/help/fdl/hu/fdl.xml
+share/gnome/help/fdl/ko/fdl.xml
+share/gnome/help/fdl/oc/fdl.xml
+share/gnome/help/fdl/pl/fdl.xml
+share/gnome/help/fdl/sv/fdl.xml
+share/gnome/help/fdl/uk/fdl.xml
+share/gnome/help/fdl/vi/fdl.xml
+share/gnome/help/gpl/C/gpl.xml
+share/gnome/help/gpl/ar/gpl.xml
+share/gnome/help/gpl/ca/gpl.xml
+share/gnome/help/gpl/cs/gpl.xml
+share/gnome/help/gpl/de/gpl.xml
+share/gnome/help/gpl/el/gpl.xml
+share/gnome/help/gpl/es/gpl.xml
+share/gnome/help/gpl/eu/gpl.xml
+share/gnome/help/gpl/fi/gpl.xml
+share/gnome/help/gpl/fr/gpl.xml
+share/gnome/help/gpl/hu/gpl.xml
+share/gnome/help/gpl/ko/gpl.xml
+share/gnome/help/gpl/nds/gpl.xml
+share/gnome/help/gpl/oc/gpl.xml
+share/gnome/help/gpl/pa/gpl.xml
+share/gnome/help/gpl/sv/gpl.xml
+share/gnome/help/gpl/uk/gpl.xml
+share/gnome/help/gpl/vi/gpl.xml
+share/gnome/help/gpl/zh_CN/gpl.xml
+share/gnome/help/lgpl/C/lgpl.xml
+share/gnome/help/lgpl/ar/lgpl.xml
+share/gnome/help/lgpl/de/lgpl.xml
+share/gnome/help/lgpl/el/lgpl.xml
+share/gnome/help/lgpl/es/lgpl.xml
+share/gnome/help/lgpl/eu/lgpl.xml
+share/gnome/help/lgpl/fi/lgpl.xml
+share/gnome/help/lgpl/fr/lgpl.xml
+share/gnome/help/lgpl/hu/lgpl.xml
+share/gnome/help/lgpl/ko/lgpl.xml
+share/gnome/help/lgpl/oc/lgpl.xml
+share/gnome/help/lgpl/pa/lgpl.xml
+share/gnome/help/lgpl/sv/lgpl.xml
+share/gnome/help/lgpl/uk/lgpl.xml
+share/gnome/help/lgpl/vi/lgpl.xml
+share/gnome/help/lgpl/zh_CN/lgpl.xml
+share/gtk-doc/html/gnome-desktop/GnomeBG.html
+share/gtk-doc/html/gnome-desktop/GnomeDesktopThumbnailFactory.html
+share/gtk-doc/html/gnome-desktop/GnomeRRLabeler.html
+share/gtk-doc/html/gnome-desktop/background.html
+share/gtk-doc/html/gnome-desktop/gnome-desktop-GnomeDesktopItem.html
+share/gtk-doc/html/gnome-desktop/gnome-desktop-Miscellaneous-Functions.html
+share/gtk-doc/html/gnome-desktop/gnome-desktop-Miscellaneous-Thumbnail-Functions.html
+share/gtk-doc/html/gnome-desktop/gnome-desktop-gnome-rr-config.html
+share/gtk-doc/html/gnome-desktop/gnome-desktop-gnome-rr-crtc.html
+share/gtk-doc/html/gnome-desktop/gnome-desktop-gnome-rr-mode.html
+share/gtk-doc/html/gnome-desktop/gnome-desktop-gnome-rr-output.html
+share/gtk-doc/html/gnome-desktop/gnome-desktop-gnome-rr-screen.html
+share/gtk-doc/html/gnome-desktop/gnome-desktop.devhelp
+share/gtk-doc/html/gnome-desktop/gnome-desktop.devhelp2
+share/gtk-doc/html/gnome-desktop/home.png
+share/gtk-doc/html/gnome-desktop/index.html
+share/gtk-doc/html/gnome-desktop/index.sgml
+share/gtk-doc/html/gnome-desktop/intro.html
+share/gtk-doc/html/gnome-desktop/left.png
+share/gtk-doc/html/gnome-desktop/libgnome.html
+share/gtk-doc/html/gnome-desktop/randr.html
+share/gtk-doc/html/gnome-desktop/right.png
+share/gtk-doc/html/gnome-desktop/style.css
+share/gtk-doc/html/gnome-desktop/thumbnail.html
+share/gtk-doc/html/gnome-desktop/up.png
+share/libgnome-desktop/pnp.ids
+share/locale/af/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/am/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/an/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ar/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/as/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ast/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/az/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/be/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/be@latin/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/bg/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/bn/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/bn_IN/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/br/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/bs/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ca/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ca@valencia/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/crh/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/cs/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/cy/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/dz/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/el/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/en@shaw/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/en_CA/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/en_GB/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/eo/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/fa/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/fur/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/gu/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/he/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/hi/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/hr/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/hu/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/hy/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/id/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ig/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/is/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/ka/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/kk/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/kn/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ko/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ku/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ky/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/li/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/lo/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/mai/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/mg/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/mi/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/mk/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ml/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/mn/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/mr/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ms/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/nb/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/nds/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ne/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/nso/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/oc/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/or/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/pa/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/pl/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ps/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/rw/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/si/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/sq/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/sr/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/sr@latin/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/te/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/th/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/tk/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/tr/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ug/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/uk/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/ur/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/uz/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/uz@cyrillic/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/vi/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/wa/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/xh/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/yi/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/yo/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/zh_CN/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/zh_HK/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/zh_TW/LC_MESSAGES/gnome-desktop-2.0.mo
+share/locale/zu/LC_MESSAGES/gnome-desktop-2.0.mo
+share/omf/fdl/fdl-C.omf
+share/omf/fdl/fdl-ar.omf
+share/omf/fdl/fdl-ca.omf
+share/omf/fdl/fdl-de.omf
+share/omf/fdl/fdl-el.omf
+share/omf/fdl/fdl-es.omf
+share/omf/fdl/fdl-eu.omf
+share/omf/fdl/fdl-fr.omf
+share/omf/fdl/fdl-hu.omf
+share/omf/fdl/fdl-ko.omf
+share/omf/fdl/fdl-oc.omf
+share/omf/fdl/fdl-pl.omf
+share/omf/fdl/fdl-sv.omf
+share/omf/fdl/fdl-uk.omf
+share/omf/fdl/fdl-vi.omf
+share/omf/gpl/gpl-C.omf
+share/omf/gpl/gpl-ar.omf
+share/omf/gpl/gpl-ca.omf
+share/omf/gpl/gpl-cs.omf
+share/omf/gpl/gpl-de.omf
+share/omf/gpl/gpl-el.omf
+share/omf/gpl/gpl-es.omf
+share/omf/gpl/gpl-eu.omf
+share/omf/gpl/gpl-fi.omf
+share/omf/gpl/gpl-fr.omf
+share/omf/gpl/gpl-hu.omf
+share/omf/gpl/gpl-ko.omf
+share/omf/gpl/gpl-nds.omf
+share/omf/gpl/gpl-oc.omf
+share/omf/gpl/gpl-pa.omf
+share/omf/gpl/gpl-sv.omf
+share/omf/gpl/gpl-uk.omf
+share/omf/gpl/gpl-vi.omf
+share/omf/gpl/gpl-zh_CN.omf
+share/omf/lgpl/lgpl-C.omf
+share/omf/lgpl/lgpl-ar.omf
+share/omf/lgpl/lgpl-de.omf
+share/omf/lgpl/lgpl-el.omf
+share/omf/lgpl/lgpl-es.omf
+share/omf/lgpl/lgpl-eu.omf
+share/omf/lgpl/lgpl-fi.omf
+share/omf/lgpl/lgpl-fr.omf
+share/omf/lgpl/lgpl-hu.omf
+share/omf/lgpl/lgpl-ko.omf
+share/omf/lgpl/lgpl-oc.omf
+share/omf/lgpl/lgpl-pa.omf
+share/omf/lgpl/lgpl-sv.omf
+share/omf/lgpl/lgpl-uk.omf
+share/omf/lgpl/lgpl-vi.omf
+share/omf/lgpl/lgpl-zh_CN.omf
+share/pixmaps/apple-green.png
+share/pixmaps/apple-red.png
+share/pixmaps/gnome-aorta.png
+share/pixmaps/gnome-applets.png
+share/pixmaps/gnome-background-image.png
+share/pixmaps/gnome-background-pattern.png
+share/pixmaps/gnome-background.png
+share/pixmaps/gnome-calc2.png
+share/pixmaps/gnome-calc3.png
+share/pixmaps/gnome-calendar.png
+share/pixmaps/gnome-ccbackground.png
+share/pixmaps/gnome-ccdesktop.png
+share/pixmaps/gnome-ccdialog.png
+share/pixmaps/gnome-ccmime.png
+share/pixmaps/gnome-ccperiph.png
+share/pixmaps/gnome-ccscreensaver.png
+share/pixmaps/gnome-ccwindowmanager.png
+share/pixmaps/gnome-color-browser.png
+share/pixmaps/gnome-color-xterm.png
+share/pixmaps/gnome-computer.png
+share/pixmaps/gnome-cromagnon.png
+share/pixmaps/gnome-day.png
+share/pixmaps/gnome-debian.png
+share/pixmaps/gnome-diskfree.png
+share/pixmaps/gnome-emacs.png
+share/pixmaps/gnome-eterm.png
+share/pixmaps/gnome-file-c.png
+share/pixmaps/gnome-file-h.png
+share/pixmaps/gnome-folder.png
+share/pixmaps/gnome-gemvt.png
+share/pixmaps/gnome-gimp.png
+share/pixmaps/gnome-gmenu.png
+share/pixmaps/gnome-gmush.png
+share/pixmaps/gnome-gnomoku.png
+share/pixmaps/gnome-home.png
+share/pixmaps/gnome-html.png
+share/pixmaps/gnome-image-gif.png
+share/pixmaps/gnome-image-jpeg.png
+share/pixmaps/gnome-irc.png
+share/pixmaps/gnome-laptop.png
+share/pixmaps/gnome-log.png
+share/pixmaps/gnome-logo-icon-transparent.png
+share/pixmaps/gnome-logo-icon.png
+share/pixmaps/gnome-logo-large.png
+share/pixmaps/gnome-mdi.png
+share/pixmaps/gnome-mnemonic.png
+share/pixmaps/gnome-month.png
+share/pixmaps/gnome-mouse.png
+share/pixmaps/gnome-news.png
+share/pixmaps/gnome-note.png
+share/pixmaps/gnome-qeye.png
+share/pixmaps/gnome-set-time.png
+share/pixmaps/gnome-spider.png
+share/pixmaps/gnome-squeak.png
+share/pixmaps/gnome-suse.png
+share/pixmaps/gnome-talk.png
+share/pixmaps/gnome-term-linux.png
+share/pixmaps/gnome-term-linux2.png
+share/pixmaps/gnome-term-night.png
+share/pixmaps/gnome-term-tiger.png
+share/pixmaps/gnome-term.png
+share/pixmaps/gnome-tigert.png
+share/pixmaps/gnome-touristinfo.png
+share/pixmaps/gnome-user-interface.png
+share/pixmaps/gnome-week.png
+share/pixmaps/gnome-windows.png
+share/pixmaps/gnome-word.png
+share/pixmaps/gnome-xterm.png
+share/pixmaps/gtkvim.png
+share/pixmaps/kterm.xpm
+share/pixmaps/monitor.png
+share/pixmaps/netbsd-logo-icon-transparent.png
+share/pixmaps/netbsd-logo-icon.png
+share/pixmaps/vnterm.xpm
diff --git a/gnome-desktop2/buildlink3.mk b/gnome-desktop2/buildlink3.mk
new file mode 100644
index 0000000000..0dbc4857a1
--- /dev/null
+++ b/gnome-desktop2/buildlink3.mk
@@ -0,0 +1,17 @@
+# $NetBSD: buildlink3.mk,v 1.63 2020/08/17 20:17:49 leot Exp $
+
+BUILDLINK_TREE+=	gnome-desktop2
+
+.if !defined(GNOME_DESKTOP2_BUILDLINK3_MK)
+GNOME_DESKTOP2_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.gnome-desktop2+=	gnome-desktop2>=2.30.0
+BUILDLINK_ABI_DEPENDS.gnome-desktop2+=	gnome-desktop2>=2.32.1nb41
+BUILDLINK_PKGSRCDIR.gnome-desktop2?=	../../wip/gnome-desktop
+
+.include "../../devel/gettext-lib/buildlink3.mk"
+.include "../../x11/gtk2/buildlink3.mk"
+.include "../../x11/startup-notification/buildlink3.mk"
+.endif # GNOME_DESKTOP_BUILDLINK3_MK
+
+BUILDLINK_TREE+=	-gnome-desktop2
diff --git a/gnome-desktop2/distinfo b/gnome-desktop2/distinfo
new file mode 100644
index 0000000000..a8152402ea
--- /dev/null
+++ b/gnome-desktop2/distinfo
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.52 2015/11/04 03:28:30 agc Exp $
+
+SHA1 (gnome-desktop-2.32.1.tar.bz2) = 95767b6696ebc406b4349b383366b9aff32e39f4
+RMD160 (gnome-desktop-2.32.1.tar.bz2) = c7f8ecea70d023cda1fff30253812b9ae5813f85
+SHA512 (gnome-desktop-2.32.1.tar.bz2) = b8084d08366dab661a7ee369cd03ba62beddbdfa9a36b988b7d13d207b33d6916f7fa8691717fba7b6a70d8276779e35360b1dc385e6ec876f30ea7b8b373c28
+Size (gnome-desktop-2.32.1.tar.bz2) = 1633847 bytes
+SHA1 (patch-aa) = ca45f4cb5c1fabdb911034d1f32a823c5d0eb8f2
diff --git a/gnome-desktop2/files/netbsd-logo-icon-transparent.png b/gnome-desktop2/files/netbsd-logo-icon-transparent.png
new file mode 100644
index 0000000000..768ddbf866
Binary files /dev/null and b/gnome-desktop2/files/netbsd-logo-icon-transparent.png differ
diff --git a/gnome-desktop2/files/netbsd-logo-icon.png b/gnome-desktop2/files/netbsd-logo-icon.png
new file mode 100644
index 0000000000..2db48ec14d
Binary files /dev/null and b/gnome-desktop2/files/netbsd-logo-icon.png differ
diff --git a/gnome-desktop2/patches/patch-aa b/gnome-desktop2/patches/patch-aa
new file mode 100644
index 0000000000..4a132440b1
--- /dev/null
+++ b/gnome-desktop2/patches/patch-aa
@@ -0,0 +1,31 @@
+$NetBSD: patch-aa,v 1.5 2009/10/22 17:15:35 drochner Exp $
+
+--- libgnome-desktop/gnome-desktop-thumbnail.c.orig	2009-07-27 13:38:54.000000000 +0200
++++ libgnome-desktop/gnome-desktop-thumbnail.c
+@@ -1049,7 +1049,7 @@ gnome_desktop_thumbnail_factory_save_thu
+     }
+   close (tmp_fd);
+   
+-  g_snprintf (mtime_str, 21, "%ld",  original_mtime);
++  g_snprintf (mtime_str, 21, "%lld",  (long long)original_mtime);
+   width = gdk_pixbuf_get_option (thumbnail, "tEXt::Thumb::Image::Width");
+   height = gdk_pixbuf_get_option (thumbnail, "tEXt::Thumb::Image::Height");
+ 
+@@ -1151,7 +1151,7 @@ gnome_desktop_thumbnail_factory_create_f
+     }
+   close (tmp_fd);
+   
+-  g_snprintf (mtime_str, 21, "%ld",  mtime);
++  g_snprintf (mtime_str, 21, "%lld",  (long long)mtime);
+   pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, 1, 1);
+   saved_ok  = gdk_pixbuf_save (pixbuf,
+ 			       tmp_path,
+@@ -1281,7 +1281,7 @@ gnome_desktop_thumbnail_is_valid (GdkPix
+   thumb_mtime_str = gdk_pixbuf_get_option (pixbuf, "tEXt::Thumb::MTime");
+   if (!thumb_mtime_str)
+     return FALSE;
+-  thumb_mtime = atol (thumb_mtime_str);
++  thumb_mtime = atoll (thumb_mtime_str);
+   if (mtime != thumb_mtime)
+     return FALSE;
+   
diff --git a/libslab/Makefile b/libslab/Makefile
index 5a21666e04..4026bf3814 100644
--- a/libslab/Makefile
+++ b/libslab/Makefile
@@ -24,7 +24,7 @@ BUILDLINK_API_DEPENDS.glib2+=	glib2>=2.18.0
 .include "../../devel/glib2/buildlink3.mk"
 .include "../../graphics/librsvg/buildlink3.mk"
 .include "../../sysutils/gnome-menus/buildlink3.mk"
-.include "../../x11/gnome-desktop/buildlink3.mk"
+.include "../../wip/gnome-desktop2/buildlink3.mk"
 BUILDLINK_API_DEPENDS.gtk2+=	gtk2+>=2.14.0
 .include "../../x11/gtk2/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"


Home | Main Index | Thread Index | Old Index