diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /x11-themes/numix-gtk-theme | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'x11-themes/numix-gtk-theme')
4 files changed, 0 insertions, 119 deletions
diff --git a/x11-themes/numix-gtk-theme/Manifest b/x11-themes/numix-gtk-theme/Manifest deleted file mode 100644 index 48a6ba3e61d9..000000000000 --- a/x11-themes/numix-gtk-theme/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST numix-gtk-theme-2.6.7.tar.gz 156607 BLAKE2B 0ba8476ffa6e94b83412a76fd7a7c9b17453e886f4c1168cb663cb780e3b9e8cf238f06c04b979d6847eb932623fc59eb8d8736293735f11d23cad1dbb4017dd SHA512 a034644a08173e70de496b88b40c8749d3c3dc988da0c09a03eca77a5263704b001114678e0492988831b1664593d4054f2d7c0d90d95f5b05dcd05914577a03 diff --git a/x11-themes/numix-gtk-theme/files/numix-gtk-theme-2.6.7-replace-ruby-sassc-with-dev-lang-sassc.patch b/x11-themes/numix-gtk-theme/files/numix-gtk-theme-2.6.7-replace-ruby-sassc-with-dev-lang-sassc.patch deleted file mode 100644 index 85dffd576508..000000000000 --- a/x11-themes/numix-gtk-theme/files/numix-gtk-theme-2.6.7-replace-ruby-sassc-with-dev-lang-sassc.patch +++ /dev/null @@ -1,79 +0,0 @@ -From 08b43b716a44e91f94e66135266cf2ad729a7821 Mon Sep 17 00:00:00 2001 -From: KTB <ktb83@users.noreply.github.com> -Date: Fri, 15 Nov 2019 07:56:27 -0500 -Subject: [PATCH 1/3] Updates Makefile to replace Ruby Sass with SassC - -This commit replaces the use of the Ruby Sass scss command with SassC's sassc command. Due to the more limited functionality of sassc, output directories must be created prior to running the command and only one file may be processed at a time unlike the many-to-many mode functionality of the scss command. ---- - Makefile | 12 ++++++++---- - 1 file changed, 8 insertions(+), 4 deletions(-) - -diff --git a/Makefile b/Makefile -index d2735a91..c580a2a7 100755 ---- a/Makefile -+++ b/Makefile -@@ -1,5 +1,5 @@ --SASS=scss --SASSFLAGS=--sourcemap=none -+SASS=sassc -+SASSFLAGS=-M -t expanded - GLIB_COMPILE_RESOURCES=glib-compile-resources - RES_DIR=src/gtk-3.0 - SCSS_DIR=$(RES_DIR)/scss -@@ -14,8 +14,12 @@ UTILS=scripts/utils.sh - all: clean gresource - - css: -- $(SASS) --update $(SASSFLAGS) $(SCSS_DIR):$(DIST_DIR) -- $(SASS) --update $(SASSFLAGS) $(SCSS_DIR320):$(DIST_DIR320) -+ mkdir $(DIST_DIR) -+ $(SASS) $(SASSFLAGS) $(SCSS_DIR)/gtk.scss $(DIST_DIR)/gtk.css -+ $(SASS) $(SASSFLAGS) $(SCSS_DIR)/gtk-dark.scss $(DIST_DIR)/gtk-dark.css -+ mkdir $(DIST_DIR320) -+ $(SASS) $(SASSFLAGS) $(SCSS_DIR320)/gtk.scss $(DIST_DIR320)/gtk.css -+ $(SASS) $(SASSFLAGS) $(SCSS_DIR320)/gtk-dark.scss $(DIST_DIR320)/gtk-dark.css - - gresource: css - $(GLIB_COMPILE_RESOURCES) --sourcedir=$(RES_DIR) $(RES_DIR)/gtk.gresource.xml - -From 6ba019fae4b8c90ed721dfe2dad279752f454968 Mon Sep 17 00:00:00 2001 -From: KTB <ktb83@users.noreply.github.com> -Date: Fri, 15 Nov 2019 08:19:32 -0500 -Subject: [PATCH 2/3] Makes import directive relative in _gnome-terminal.scss - -This commit changes the "widgets/button" import directive to be relative in the gtk-3.20 _gnome-terminal.scss file which is necessary when using SassC. ---- - src/gtk-3.20/scss/apps/_gnome-terminal.scss | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/gtk-3.20/scss/apps/_gnome-terminal.scss b/src/gtk-3.20/scss/apps/_gnome-terminal.scss -index fd3af1c5..704faf5d 100644 ---- a/src/gtk-3.20/scss/apps/_gnome-terminal.scss -+++ b/src/gtk-3.20/scss/apps/_gnome-terminal.scss -@@ -1,4 +1,4 @@ --@import "widgets/button"; -+@import "../widgets/button"; - - /********************** - ! Genome Terminal * - -From 0d3fd3f2ce5e5e7079b8a87ee3ddbf5d8923c67b Mon Sep 17 00:00:00 2001 -From: KTB <ktb83@users.noreply.github.com> -Date: Thu, 12 Dec 2019 23:46:09 -0500 -Subject: [PATCH 3/3] Removes import directive in _gnome-terminal.scss - -This commit removes the "widgets/button" import directive in the gtk-3.20 _gnome-terminal.scss file which is unnecessary. ---- - src/gtk-3.20/scss/apps/_gnome-terminal.scss | 2 -- - 1 file changed, 2 deletions(-) - -diff --git a/src/gtk-3.20/scss/apps/_gnome-terminal.scss b/src/gtk-3.20/scss/apps/_gnome-terminal.scss -index 704faf5d..6e9ee4e4 100644 ---- a/src/gtk-3.20/scss/apps/_gnome-terminal.scss -+++ b/src/gtk-3.20/scss/apps/_gnome-terminal.scss -@@ -1,5 +1,3 @@ --@import "../widgets/button"; -- - /********************** - ! Genome Terminal * - ***********************/ diff --git a/x11-themes/numix-gtk-theme/metadata.xml b/x11-themes/numix-gtk-theme/metadata.xml deleted file mode 100644 index a1fbf3c0c993..000000000000 --- a/x11-themes/numix-gtk-theme/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>juippis@gentoo.org</email> - <name>Joonas Niilola</name> - </maintainer> -</pkgmetadata> diff --git a/x11-themes/numix-gtk-theme/numix-gtk-theme-2.6.7-r3.ebuild b/x11-themes/numix-gtk-theme/numix-gtk-theme-2.6.7-r3.ebuild deleted file mode 100644 index 824bc5cfa355..000000000000 --- a/x11-themes/numix-gtk-theme/numix-gtk-theme-2.6.7-r3.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A modern flat theme with a combination of light and dark elements" -HOMEPAGE="https://github.com/numixproject/numix-gtk-theme" -SRC_URI="https://github.com/numixproject/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" - -RDEPEND="dev-libs/libxml2:2= - x11-libs/gtk+:3 - x11-themes/gtk-engines-murrine" -DEPEND="${RDEPEND} - dev-libs/glib:2 - x11-libs/gdk-pixbuf:2" -BDEPEND="dev-lang/sassc" - -PATCHES=( "${FILESDIR}/${P}-replace-ruby-sassc-with-dev-lang-sassc.patch" ) - -src_compile() { - emake -j1 -} - -src_install() { - emake -j1 DESTDIR="${D}" install - einstalldocs -} |
