@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--with-pam \
|
||||
--with-systemdsystemunitdir=no")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
#install Pisi Linux default theme
|
||||
# pisitools.insinto("/usr/share/lxdm/themes", "lxdm-pisilinux-theme")
|
||||
#pisitools.remove("/usr/share/lxdm/themes/lxdm-pisilinux-theme/login.png")
|
||||
pisitools.dodoc("COPYING", "AUTHORS", "TODO", "README", "ChangeLog", "NEWS")
|
||||
@@ -0,0 +1,31 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from comar.service import *
|
||||
import os
|
||||
|
||||
serviceType="server"
|
||||
serviceDesc=_({"en": "lxdm Server",
|
||||
"tr": "lxdm Sunucusu"})
|
||||
serviceDefault="on"
|
||||
PIDFILE="/run/lxdm.pid"
|
||||
DAEMON="/usr/sbin/lxdm"
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
startService(command=DAEMON,
|
||||
pidfile=PIDFILE,
|
||||
detach=True,
|
||||
donotify=True)
|
||||
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(pidfile=PIDFILE,
|
||||
donotify=True)
|
||||
|
||||
try:
|
||||
os.unlink(PIDFILE)
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
def status():
|
||||
return isServiceRunning(PIDFILE)
|
||||
@@ -0,0 +1,28 @@
|
||||
diff -Nuar lxdm-0.5.0.orig/data/lxdm.conf.in lxdm-0.5.0/data/lxdm.conf.in
|
||||
--- lxdm-0.5.0.orig/data/lxdm.conf.in 2012-02-27 13:28:25.000000000 +0200
|
||||
+++ lxdm-0.5.0/data/lxdm.conf.in 2014-08-18 14:01:59.955134485 +0300
|
||||
@@ -34,7 +34,7 @@
|
||||
gtk_theme=Clearlooks
|
||||
|
||||
## background of the greeter
|
||||
-bg=/usr/share/backgrounds/default.png
|
||||
+#bg=/usr/share/backgrounds/default.png
|
||||
|
||||
## if show bottom pane
|
||||
bottom_pane=1
|
||||
@@ -46,7 +46,7 @@
|
||||
keyboard=0
|
||||
|
||||
## the theme of greeter
|
||||
-theme=Industrial
|
||||
+theme=Industrial
|
||||
|
||||
[input]
|
||||
|
||||
@@ -58,5 +58,5 @@
|
||||
white=
|
||||
|
||||
## blacklist user
|
||||
-black=
|
||||
+black=ftp
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Exec=/usr/sbin/lxdm
|
||||
Type=Application
|
||||
X-Pardus-PlymouthTransition=true
|
||||
X-Pardus-XCursorTheme=Oxygen_White
|
||||
|
||||
Name=LXDM
|
||||
GenericName=Lxde Login Manager
|
||||
GenericName[tr]=Lxde Giriş Yöneticisi
|
||||
@@ -0,0 +1,5 @@
|
||||
# Preferred display manager
|
||||
DISPLAY_MANAGER="lxdm"
|
||||
|
||||
# Cursor theme
|
||||
#XCURSOR_THEME=""
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxdm</Name>
|
||||
<Homepage>http://lxde.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde.base</PartOf>
|
||||
<Summary>LXDE Display Manager</Summary>
|
||||
<Description>LXDM is the future display manager of LXDE.</Description>
|
||||
<Archive sha1sum="829528672b46fff945a2949161dd74b7410ddb8f" type="tarxz">mirrors://sourceforge/lxdm/lxdm-0.5.1.tar.xz</Archive>
|
||||
|
||||
<!--Archive sha1sum="1934b7f22adc50445a935db817febe4b6ec1a5f2" target="lxdm-0.5.0" type="tarxz">http://source.pisilinux.org/1.0/lxdm-pisilinux-theme.tar.xz</Archive-->
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>iso-codes</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>pam-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>at-spi2-atk-devel</Dependency>
|
||||
<Dependency>at-spi2-core-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">default_config.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lxdm</Name>
|
||||
<Conflicts>
|
||||
<Package>lightdm</Package>
|
||||
<Package>sddm</Package>
|
||||
<Package>mdm</Package>
|
||||
<Package>gdm</Package>
|
||||
<Package>slim</Package>
|
||||
</Conflicts>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>pam</Dependency>
|
||||
<Dependency>iso-codes</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>at-spi2-atk</Dependency>
|
||||
<Dependency>at-spi2-core</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/libexec</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="data">/etc/conf.d/xdm</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/display-managers/lxdm.desktop">lxdm.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-08-23</Date>
|
||||
<Version>0.5.1</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxdm</Name>
|
||||
<Summary xml:lang="tr">LXDE Ekran Yöneticisi</Summary>
|
||||
<Description xml:lang="tr">LXDM, LXDE için bir ekran yöneticisidir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
|
||||
+97355
-97275
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
87fc26fc6fc694aaf9b57e9fb2f5eff138f2ca16
|
||||
5a604f4acd399c6cda9eb45a8eda609577c462c9
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
60f61a95fd9c6f85df847a546bf44f3cc44d4d2e
|
||||
3699eff5d623c52293126d2a43db3c8197794b77
|
||||
Reference in New Issue
Block a user