aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-08-17 14:21:13 -0400
committerGitHub <noreply@github.com>2016-08-17 14:21:13 -0400
commit2a486c11e838fee5bf391ed7674d09de5b7cdbb2 (patch)
treeebd115906c7baab6c6c38dad02ffa94685648ee4
parentFix pkg-plist and cleanup Makefile (diff)
parentremove left-over file (diff)
downloadlumina-2a486c11e838fee5bf391ed7674d09de5b7cdbb2.tar.gz
lumina-2a486c11e838fee5bf391ed7674d09de5b7cdbb2.tar.bz2
lumina-2a486c11e838fee5bf391ed7674d09de5b7cdbb2.zip
Merge pull request #247 from Nanolx/master
Update Debian packaging
-rw-r--r--port-files/debian/changelog8
-rw-r--r--port-files/debian/control2
-rw-r--r--port-files/debian/lumina-data.install1
-rwxr-xr-xport-files/debian/lumina-desktop9
4 files changed, 10 insertions, 10 deletions
diff --git a/port-files/debian/changelog b/port-files/debian/changelog
index b1e307c4..ec095007 100644
--- a/port-files/debian/changelog
+++ b/port-files/debian/changelog
@@ -1,3 +1,11 @@
+lumina-desktop (1.0.1~git1638-1nano) unstable; urgency=low
+
+ * New git snapshot
+ * add Recommends for compton
+ * install default compton config into lumina-data package
+
+ -- Christopher Roy Bratusek <nano@jpberlin.de> Tue, 09 Aug 2016 22:11:28 +0200
+
lumina-desktop (1.0.0~beta2+git1581-1nano) unstable; urgency=low
* New git snapshot
diff --git a/port-files/debian/control b/port-files/debian/control
index dfbbd319..f9bc01cb 100644
--- a/port-files/debian/control
+++ b/port-files/debian/control
@@ -22,7 +22,7 @@ Depends: ${misc:Depends}, ${shlibs:Depends}, libluminautils1 (= ${binary:Version
lumina-textedit, fluxbox, numlockx, xbacklight, xscreensaver,
alsa-utils, acpi, gstreamer1.0-plugins-base, procps, sysstat,
phonon4qt5-backend-gstreamer
-Recommends: qt5-configuration-tool, usbmount, xarchiver, pavucontrol
+Recommends: qt5-configuration-tool, usbmount, xarchiver, pavucontrol, compton
Description: Lightweight Qt5-based desktop environment
Metapackage depending on all other lumina packages.
diff --git a/port-files/debian/lumina-data.install b/port-files/debian/lumina-data.install
index dd172b55..c1eff316 100644
--- a/port-files/debian/lumina-data.install
+++ b/port-files/debian/lumina-data.install
@@ -1,5 +1,6 @@
usr/share/applications/lumina-support.desktop
usr/share/pixmaps/Lumina-DE.png
+usr/share/lumina-desktop/compton.conf
usr/share/lumina-desktop/colors/
usr/share/lumina-desktop/themes/
usr/share/lumina-desktop/desktop-background.jpg
diff --git a/port-files/debian/lumina-desktop b/port-files/debian/lumina-desktop
deleted file mode 100755
index 30686145..00000000
--- a/port-files/debian/lumina-desktop
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-. /etc/default/lumina-qt5ct
-
-if test -f /usr/bin/qt5ct && test ${LUMINA_USE_QT5CT} = TRUE; then
- export QT_QPA_PLATFORMTHEME=qt5ct
-fi
-
-/usr/bin/lumina-desktop.real
bgstack15