summaryrefslogtreecommitdiff
path: root/newmoon
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-09-16 20:16:42 -0400
committerB Stack <bgstack15@gmail.com>2020-09-16 20:16:42 -0400
commitf003ff9961df2d31730a26c5f0bffc2025b53403 (patch)
tree1696bf12655f5b08c4fcc6704015ec5d54c9e5be /newmoon
parentadd xfce helper to newmoon (diff)
downloadstackrpms-f003ff9961df2d31730a26c5f0bffc2025b53403.tar.gz
stackrpms-f003ff9961df2d31730a26c5f0bffc2025b53403.tar.bz2
stackrpms-f003ff9961df2d31730a26c5f0bffc2025b53403.zip
add bluemoon icons
This prepares newmoon with the ability to be branded bluemoon to further separate it from even the off-brand palemoon brand. Icons provided by Gord N. Squash.
Diffstat (limited to 'newmoon')
-rw-r--r--newmoon/debian/bluemoon-icons.tgzbin0 -> 379306 bytes
-rw-r--r--newmoon/debian/changelog6
-rw-r--r--newmoon/debian/newmoon+devuan.dsc2
-rwxr-xr-xnewmoon/debian/rules7
-rw-r--r--newmoon/debian/source/include-binaries1
5 files changed, 15 insertions, 1 deletions
diff --git a/newmoon/debian/bluemoon-icons.tgz b/newmoon/debian/bluemoon-icons.tgz
new file mode 100644
index 0000000..9449e66
--- /dev/null
+++ b/newmoon/debian/bluemoon-icons.tgz
Binary files differ
diff --git a/newmoon/debian/changelog b/newmoon/debian/changelog
index 1545403..966de18 100644
--- a/newmoon/debian/changelog
+++ b/newmoon/debian/changelog
@@ -1,3 +1,9 @@
+newmoon (28.13.0-5+devuan) obs; urgency=medium
+
+ * Import bluemoon icons from Gord N. Squash
+
+ -- Ben Stack <bgstack15@gmail.com> Wed, 16 Sep 2020 19:16:08 -0400
+
newmoon (28.13.0-4+devuan) obs; urgency=low
* Import xfce-helper/palemoon.desktop from stevep@mxlinux.org release
diff --git a/newmoon/debian/newmoon+devuan.dsc b/newmoon/debian/newmoon+devuan.dsc
index 25123cf..4e09722 100644
--- a/newmoon/debian/newmoon+devuan.dsc
+++ b/newmoon/debian/newmoon+devuan.dsc
@@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: newmoon
Binary: newmoon
Architecture: any
-Version: 28.13.0-4+devuan
+Version: 28.13.0-5+devuan
Maintainer: B Stack <bgstack15@gmail.com>
Homepage: http://www.palemoon.org/
Standards-Version: 3.9.6
diff --git a/newmoon/debian/rules b/newmoon/debian/rules
index 461d685..230114f 100755
--- a/newmoon/debian/rules
+++ b/newmoon/debian/rules
@@ -22,9 +22,16 @@ override_dh_auto_clean:
rm -f mozconfig
dh_auto_clean
find . -name '*.pyc' -delete
+ test -d palemoon/branding/unofficial.unbuilt && { \
+ rm -rf palemoon/branding/unofficial palemoon/branding/*.blue* ; \
+ mv palemoon/branding/unofficial.unbuilt palemoon/branding/unofficial ; \
+ } || :
override_dh_auto_configure:
cp ${MCFILE} mozconfig
+ ! test -d palemoon/branding/unofficial.unbuilt && { \
+ cp -pr palemoon/branding/unofficial palemoon/branding/unofficial.unbuilt && \
+ tar -C palemoon/branding -zxf debian/bluemoon-icons.tgz ; } || :
override_dh_auto_build:
make -f client.mk build ENABLE_STRIP=1
diff --git a/newmoon/debian/source/include-binaries b/newmoon/debian/source/include-binaries
index dd76db8..d745d04 100644
--- a/newmoon/debian/source/include-binaries
+++ b/newmoon/debian/source/include-binaries
@@ -8,3 +8,4 @@ debian/distribution/bundles/statusbar@palemoon.org/components/status4evar.xpt
debian/distribution/bundles/{3ff46564-d77c-491c-bfc5-fc555c87dbc4}/chrome/content/images/stop.png
debian/distribution/bundles/{3ff46564-d77c-491c-bfc5-fc555c87dbc4}/chrome/content/images/statusbar.png
debian/distribution/bundles/{3ff46564-d77c-491c-bfc5-fc555c87dbc4}/chrome/content/images/icon.png
+debian/bluemoon-icons.tgz
bgstack15