From owner-svn-ports-all@freebsd.org Fri Aug 24 08:59:54 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A330A1084170; Fri, 24 Aug 2018 08:59:54 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 58C977DD11; Fri, 24 Aug 2018 08:59:54 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 36DDC6F27; Fri, 24 Aug 2018 08:59:54 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7O8xsBX026490; Fri, 24 Aug 2018 08:59:54 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7O8xrds026484; Fri, 24 Aug 2018 08:59:53 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201808240859.w7O8xrds026484@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 24 Aug 2018 08:59:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477948 - in head/deskutils: . lookbook lookbook/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/deskutils: . lookbook lookbook/files X-SVN-Commit-Revision: 477948 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2018 08:59:55 -0000 Author: tobik Date: Fri Aug 24 08:59:53 2018 New Revision: 477948 URL: https://svnweb.freebsd.org/changeset/ports/477948 Log: New port: deskutils/lookbook LookBook is a GTK based browser for system icons with search and code sample functionality. WWW: https://github.com/danrabbit/lookbook PR: 229873 Submitted by: Greg V Added: head/deskutils/lookbook/ head/deskutils/lookbook/Makefile (contents, props changed) head/deskutils/lookbook/distinfo (contents, props changed) head/deskutils/lookbook/files/ head/deskutils/lookbook/files/patch-src_CategoryView.vala (contents, props changed) head/deskutils/lookbook/pkg-descr (contents, props changed) head/deskutils/lookbook/pkg-plist (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Fri Aug 24 08:49:11 2018 (r477947) +++ head/deskutils/Makefile Fri Aug 24 08:59:53 2018 (r477948) @@ -162,6 +162,7 @@ SUBDIR += ljclive SUBDIR += ljit SUBDIR += logjam + SUBDIR += lookbook SUBDIR += lumina-archiver SUBDIR += lumina-calculator SUBDIR += lumina-fileinfo Added: head/deskutils/lookbook/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/lookbook/Makefile Fri Aug 24 08:59:53 2018 (r477948) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= lookbook +DISTVERSION= 1.0.0 +CATEGORIES= deskutils + +MAINTAINER= greg@unrelenting.technology +COMMENT= Browse and find system icons + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= valac:lang/vala +LIB_DEPENDS= libgranite.so:x11-toolkits/granite + +USES= gettext-tools gnome meson pkgconfig python:3.5+,build +USE_GITHUB= yes +GH_ACCOUNT= danrabbit +USE_GNOME= glib20 gtk30 gtksourceview3 +GLIB_SCHEMAS= com.github.danrabbit.lookbook.gschema.xml +INSTALLS_ICONS= yes + +BINARY_ALIAS= python3=${PYTHON_CMD} # for meson/post_install.py + +.include Added: head/deskutils/lookbook/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/lookbook/distinfo Fri Aug 24 08:59:53 2018 (r477948) @@ -0,0 +1,3 @@ +TIMESTAMP = 1531936029 +SHA256 (danrabbit-lookbook-1.0.0_GH0.tar.gz) = 1cda918c570ead8ca466de4e2d604311b0aa018ba459bdc4cc13fb3dabb87a99 +SIZE (danrabbit-lookbook-1.0.0_GH0.tar.gz) = 711157 Added: head/deskutils/lookbook/files/patch-src_CategoryView.vala ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/lookbook/files/patch-src_CategoryView.vala Fri Aug 24 08:59:53 2018 (r477948) @@ -0,0 +1,2639 @@ +Fix build with older Vala versions + +../src/CategoryView.vala:75.24-75.30: error: The name `ACTIONS' does not exist in the context of `CategoryView.icons' + category = ACTIONS + ^^^^^^^ +../src/CategoryView.vala:75.13-75.30: error: Invalid type for member `category' + category = ACTIONS + ^^^^^^^^^^^^^^^^^^ + +https://github.com/danrabbit/lookbook/issues/33 + +--- src/CategoryView.vala.orig 2018-08-23 23:19:38 UTC ++++ src/CategoryView.vala +@@ -72,2188 +72,2188 @@ public class CategoryView : Gtk.Paned { + Icon () { + name = "address-book-new", + description = _("Create a new address book"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "align-horizontal-center", + description = _("Align objects to center along the X axis"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "align-horizontal-left", + description = _("Align objects left along the X axis"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "align-horizontal-right", + description = _("Align objects right along the X axis"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "align-vertical-bottom", + description = _("Align objects to bottom along the Y axis"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "align-vertical-center", + description = _("Align objects to center along the Y axis"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "align-vertical-top", + description = _("Align objects to top along the Y axis"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "application-exit", + description = _("Used for exiting an application"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "appointment-new", + description = _("Create a new appointment in a calendaring application"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "bookmark-new", + description = _("Create a new bookmark"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "call-start", + description = _("Initiate or accept a call"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "call-stop", + description = _("Stop the current call"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "changes-allow", + description = _("Allow changes by unlocking such as with a password"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "changes-prevent", + description = _("Prevent changes by locking such as with a password"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "contact-new", + description = _("Create a new contact in an address book application"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-export", + description = _("Export a document"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-import", + description = _("Import a document"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-new", + description = _("Create a new document"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-open", + description = _("Open a document"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-open-recent", + description = _("Open a document that was recently opened"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-page-setup", + description = _("The page setup action of a document editor"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-print", + description = _("Print"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-print-preview", + description = _("The print preview action of an application"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-properties", + description = _("View the properties of a document"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-revert", + description = _("Revert to a previous version of a document"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-save", + description = _("Save"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-save-as", + description = _("Save as"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "document-send", + description = _("Send"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit", + description = _("Edit"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-clear", + description = _("Clear"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-copy", + description = _("Copy"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-cut", + description = _("Cut"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-delete", + description = _("Delete"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-find", + description = _("Find"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-find-replace", + description = _("Find & Replace"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-flag", + description = _("Flag an item, such as a spam email"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-paste", + description = _("Paste"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-redo", + description = _("Redo"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-select-all", + description = _("Select all"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "edit-undo", + description = _("Undo"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "event-new", + description = _("Create a new calendar event"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "folder-copy", + description = _("Copy a folder"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "folder-move", + description = _("Move a folder"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "folder-new", + description = _("Create a new folder"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-indent-less", + description = _("Decrease indent"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-indent-more", + description = _("Increase indent"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-justify-center", + description = _("Center justify text"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-justify-fill", + description = _("Fill justify text"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-justify-left", + description = _("Left justify text"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-justify-right", + description = _("Right justify text"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-text-direction-ltr", + description = _("Format text as left-to-right"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-text-direction-rtl", + description = _("Format text as right-to-left"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-text-bold", + description = _("Format text as bold"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-text-highlight", + description = _("Format text as highlighted"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-text-italic", + description = _("Format text as italic"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-text-underline", + description = _("Format text as underlined"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "format-text-strikethrough", + description = _("Format text as being struck through"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-bottom", + description = _("Go to the bottom, such as in a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-down", + description = _("Go down, such as in a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-first", + description = _("Go to the first item, such as in a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-home", + description = _("Go to the home location"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-jump", + description = _("Jump to a location"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-last", + description = _("Go to the last item, such as in a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-next", + description = _("Go forward to the next item, such as in a list or navigation"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-previous", + description = _("Go back to the previous item, such as in a list or navigation"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-top", + description = _("Go to the top, such as in a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "go-up", + description = _("Go up, such as in a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "help-about", + description = _("Information about an app"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "help-contents", + description = _("Get help"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "help-faq", + description = _("Frequently asked questions"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "image-adjust", + description = _("Make adjustments to an image"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "image-auto-adjust", + description = _("Automatically adjust an image"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "image-crop", + description = _("Crop an image"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "image-red-eye", + description = _("Remove red eye from an image"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "insert-image", + description = _("Insert an image"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "insert-link", + description = _("Insert a link"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "insert-object", + description = _("Insert an object"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "insert-text", + description = _("Insert text"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "list-add", + description = _("Add to a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "list-remove", + description = _("Remove from a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-forward", + description = _("Forward an email"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-mark-important", + description = _("Mark an email as important"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-mark-junk", + description = _("Mark an email as junk or spam"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-mark-notjunk", + description = _("Mark an email as not junk or spam"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-mark-read", + description = _("Mark an email as read"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-mark-unread", + description = _("Mark an email as unread"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-message-new", + description = _("Compose a new email"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-reply-all", + description = _("Reply to all participants of an email"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-reply-sender", + description = _("Reply to the sender of an email"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "mail-send", + description = _("Send an email"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "media-eject", + description = _("Eject removable media"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "media-playback-pause", + description = _("Pause media playback"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "media-playback-start", + description = _("Start playing media"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "media-playback-stop", + description = _("Stop playing media"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "media-record", + description = _("Start recording"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "media-seek-backward", + description = _("Seek backwards or rewind"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "media-seek-forward", + description = _("Seek forwards, or fastforward"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "media-skip-backward", + description = _("Skip backwards, such as to the previous track"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "media-skip-forward", + description = _("Skip forwards, such as to the next track"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "object-flip-horizontal", + description = _("Flip an object horizontally"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "object-flip-vertical", + description = _("Flip an object vertically"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "object-rotate-left", + description = _("Rotate an object to the left or counter-clockwise"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "object-rotate-right", + description = _("Rotate an object to the right or clockwise"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "process-stop", + description = _("Stop an action that may take a while to process, such as web page loading in a browser"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "system-lock-screen", + description = _("Lock the screen or the user's session"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "system-log-out", + description = _("Log out of the user's session"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "system-run", + description = _("Run a system app or command"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "system-search", + description = _("Search the system"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "system-reboot", + description = _("Restart the device"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "system-shutdown", + description = _("Shut the device down"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "tools-check-spelling", + description = _("Check spelling"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "view-fullscreen", + description = _("View fullscreen"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "view-refresh", + description = _("Refresh the current view"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "view-restore", + description = _("Leave fullscreen and return to a normal window"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "view-sort-ascending", + description = _("Sort items in an ascending order, such as in a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "view-sort-descending", + description = _("Sort items in a descending order, such as in a list"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "window-close", + description = _("Close the window"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "window-new", + description = _("Create a new window"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "zoom-fit-best", + description = _("Zoom to the best fit"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "zoom-in", + description = _("Zoom in"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "zoom-original", + description = _("Zoom to the original size"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "zoom-out", + description = _("Zoom out"), +- category = ACTIONS ++ category = Category.ACTIONS + }, + Icon () { + name = "accessories-calculator", + description = _("Calculator"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "accessories-camera", + description = _("Camera or webcam"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "accessories-character-map", + description = _("International and extended text character map"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "accessories-dictionary", + description = _("Dictionary"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "accessories-screenshot", + description = _("Screenshot tool"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "accessories-text-editor", + description = _("Text editor"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "application-default-icon", + description = _("Default or unprovided app icon"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "archive-manager", + description = _("Archive manager"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "internet-chat", + description = _("Internet chat or messaging"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "internet-mail", + description = _("Mail or email"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "internet-news-reader", + description = _("News or feed reader"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "internet-web-browser", + description = _("Web browser"), +- category = APPS ++ category = Category.APPS + }, + + Icon () { + name = "multimedia-audio-player", + description = _("Music or audio player"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "multimedia-photo-manager", + description = _("Photo manager or library"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "multimedia-video-player", + description = _("Video or movie player"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "office-address-book", + description = _("Address book or contacts"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "office-calendar", + description = _("Calendar"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "postscript-viewer", + description = _("Portable document or PDF viewer"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "preferences-desktop", + description = _("System settings"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "system-file-manager", + description = _("Files"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "system-os-installer", + description = _("Install the operating system"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "system-software-install", + description = _("AppCenter or software installer"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "system-software-update", + description = _("Software updater"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "system-users", + description = _("User settings"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "utilities-system-monitor", + description = _("System resource monitor"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "utilities-terminal", + description = _("Terminal"), +- category = APPS ++ category = Category.APPS + }, + Icon () { + name = "applications-accessories", + description = _("Accessory or utility app category"), +- category = CATEGORIES ++ category = Category.CATEGORIES + }, + Icon () { + name = "applications-development", + description = _("Programming, software development, code, or IDE app category"), +- category = CATEGORIES ++ category = Category.CATEGORIES + }, + Icon () { + name = "applications-education", + description = _("Education, learning, or school app category"), +- category = CATEGORIES ++ category = Category.CATEGORIES + }, + Icon () { + name = "applications-engineering", + description = _("Engineering app category"), +- category = CATEGORIES ++ category = Category.CATEGORIES + }, + Icon () { + name = "applications-fonts", + description = _("Font category"), +- category = CATEGORIES ++ category = Category.CATEGORIES + }, + Icon () { + name = "applications-games", + description = _("Games app category"), +- category = CATEGORIES ++ category = Category.CATEGORIES + }, + Icon () { + name = "applications-graphics", + description = _("Graphics, drawing, art, or photo manipulation app category"), +- category = CATEGORIES ++ category = Category.CATEGORIES + }, + Icon () { + name = "applications-internet", + description = _("Internet or web related app category"), +- category = CATEGORIES ++ category = Category.CATEGORIES + }, + Icon () { + name = "applications-multimedia", *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***