mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
[NEW PORT] x11/slim - a login manager derived from login.app
SLiM is a desktop-independent graphical login manager for X11, derived from Login.app by Per Liden. It aims to be light and simple, although completely configurable through themes and an option file; is suitable for machines on which remote login functionalities are not needed. Author: Simone Rota and Johannes Winkelmann WWW: http://slim.berlios.de/ PR: ports/91511 Submitted by: Tobias Roth <ports@fsck.ch>
This commit is contained in:
parent
a52f6381b2
commit
6ed17593f3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=153098
@ -173,6 +173,7 @@
|
||||
SUBDIR += settitle
|
||||
SUBDIR += silo
|
||||
SUBDIR += sisctrl
|
||||
SUBDIR += slim
|
||||
SUBDIR += startup-notification
|
||||
SUBDIR += sxpc
|
||||
SUBDIR += temperature.app
|
||||
|
51
x11/slim/Makefile
Normal file
51
x11/slim/Makefile
Normal file
@ -0,0 +1,51 @@
|
||||
# New ports collection makefile for: slim
|
||||
# Date created: 8 Jan 2006
|
||||
# Whom: Tobias Roth <ports@fsck.ch>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= slim
|
||||
PORTVERSION= 1.2.3
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= http://download.berlios.de/slim/ \
|
||||
http://depot.fsck.ch/mirror/distfiles/
|
||||
|
||||
MAINTAINER= ports@fsck.ch
|
||||
COMMENT= Graphical login manager for X11, derived from Login.app
|
||||
|
||||
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
||||
png.5:${PORTSDIR}/graphics/png \
|
||||
freetype:${PORTSDIR}/print/freetype2
|
||||
RUN_DEPENDS= ${X11BASE}/bin/X:${X_SERVER_PORT}
|
||||
BUILD_DEPENDS= ${X11BASE}/include/X11/Xft/Xft.h:${PORTSDIR}/x11-fonts/libXft
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_XLIB= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_RC_SUBR= slim.sh
|
||||
|
||||
MAN1= slim.1
|
||||
|
||||
MAKEFILE= Makefile.freebsd
|
||||
|
||||
pre-build:
|
||||
@${REINPLACE_CMD} -e 's|%%X11BASE%%|${X11BASE}|g' \
|
||||
${WRKSRC}/Makefile.freebsd \
|
||||
${WRKSRC}/slim.conf
|
||||
|
||||
do-install:
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${X11BASE}/bin
|
||||
@${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf ${X11BASE}/etc/${PORTNAME}.conf.sample
|
||||
@${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${X11BASE}/man/man1
|
||||
@${MKDIR} ${DATADIR}/themes/default
|
||||
@${INSTALL_DATA} ${WRKSRC}/themes/default/${PORTNAME}.theme ${DATADIR}/themes/default
|
||||
@${INSTALL_DATA} ${WRKSRC}/themes/default/panel.png ${DATADIR}/themes/default
|
||||
@${INSTALL_DATA} ${WRKSRC}/themes/default/background.jpg ${DATADIR}/themes/default
|
||||
|
||||
post-install:
|
||||
@if [ ! -f ${X11BASE}/etc/slim.conf ]; then \
|
||||
${CP} -p ${X11BASE}/etc/slim.conf.sample ${X11BASE}/etc/slim.conf ; \
|
||||
fi
|
||||
|
||||
.include <bsd.port.mk>
|
3
x11/slim/distinfo
Normal file
3
x11/slim/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (slim-1.2.3.tar.gz) = 39cb83307dd501e1d5cc78f820a3f8e6
|
||||
SHA256 (slim-1.2.3.tar.gz) = 9fae9489ae53930dbc7f3511324cb35db1fea122397da8d6bb506709b08d8584
|
||||
SIZE (slim-1.2.3.tar.gz) = 212024
|
26
x11/slim/files/patch-Makefile.freebsd
Normal file
26
x11/slim/files/patch-Makefile.freebsd
Normal file
@ -0,0 +1,26 @@
|
||||
--- Makefile.freebsd.orig Sun Sep 11 18:50:36 2005
|
||||
+++ Makefile.freebsd Sun Jan 8 12:17:45 2006
|
||||
@@ -3,15 +3,15 @@
|
||||
# Edit the following section to adjust the options
|
||||
# to fit into your operating system / distribution
|
||||
#######################################################
|
||||
-CXX=/usr/bin/g++
|
||||
-CC=/usr/bin/gcc
|
||||
-CFLAGS=-I. -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include/freetype2/config -I/usr/local/include/libpng -I/usr/local/include -I/usr/include
|
||||
-CXXLAGS=$(CFLAGS)
|
||||
-LDFLAGS=-L/usr/X11R6/lib -L/usr/local/lib -lXft -lX11 -lfreetype -lXrender -lfontconfig -lpng -lz -lm -lcrypt -lXpm -lXmu -lpng -ljpeg
|
||||
+CXX?=/usr/bin/g++
|
||||
+CC?=/usr/bin/gcc
|
||||
+CFLAGS+=-I%%X11BASE%%/include `freetype-config --cflags` `libpng-config --cflags`
|
||||
+CXXLAGS+=$(CFLAGS)
|
||||
+LDFLAGS=-L%%X11BASE%%/lib `freetype-config --libs` `libpng-config --libs` -lXft -lX11 -lXrender -lfontconfig -lz -lm -lcrypt -lXpm -lXmu -ljpeg
|
||||
CUSTOM=-DNEEDS_BASENAME
|
||||
-PREFIX=/usr
|
||||
-CFGDIR=/etc
|
||||
-MANDIR=/usr/share/man
|
||||
+PREFIX=%%X11BASE%%
|
||||
+CFGDIR=%%X11BASE%%/etc
|
||||
+MANDIR=%%X11BASE%%/man
|
||||
DESTDIR=
|
||||
#######################################################
|
||||
|
10
x11/slim/files/patch-panel.cpp
Normal file
10
x11/slim/files/patch-panel.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
--- panel.cpp.orig Thu May 19 22:46:22 2005
|
||||
+++ panel.cpp Thu May 19 22:47:12 2005
|
||||
@@ -10,6 +10,7 @@
|
||||
*/
|
||||
|
||||
#include <sstream>
|
||||
+#include <libgen.h>
|
||||
#include "panel.h"
|
||||
|
||||
using namespace std;
|
51
x11/slim/files/patch-slim.conf
Normal file
51
x11/slim/files/patch-slim.conf
Normal file
@ -0,0 +1,51 @@
|
||||
--- slim.conf.orig Sun Sep 11 18:50:36 2005
|
||||
+++ slim.conf Sun Jan 8 14:32:02 2006
|
||||
@@ -1,13 +1,15 @@
|
||||
# Path, X server and arguments (if needed)
|
||||
default_path ./:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
|
||||
default_xserver /usr/X11R6/bin/X
|
||||
-#xserver_arguments -dpi 75
|
||||
+# The X server needs to be started on an unused virtual terminal,
|
||||
+# for FreeBSD in a default configuration, the first one of those is #09
|
||||
+xserver_arguments vt09
|
||||
|
||||
# Commands for halt, login, etc.
|
||||
-halt_cmd /sbin/shutdown -h now
|
||||
+halt_cmd /sbin/shutdown -p now
|
||||
reboot_cmd /sbin/shutdown -r now
|
||||
-console_cmd /usr/X11R6/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
|
||||
-#suspend_cmd /usr/sbin/suspend
|
||||
+console_cmd /usr/X11R6/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/motd; exec /bin/login"
|
||||
+suspend_cmd /usr/sbin/acpiconf -s 3
|
||||
|
||||
# This command is executed after a succesful login.
|
||||
# you can place the %session and %theme variables
|
||||
@@ -17,8 +19,8 @@
|
||||
# NOTE: if your system does not have bash you need
|
||||
# to adjust the command according to your preferred shell,
|
||||
# i.e. for freebsd use:
|
||||
-# login_cmd exec /bin/sh - ~/.xinitrc %session
|
||||
-login_cmd exec /bin/bash -login ~/.xinitrc %session
|
||||
+login_cmd exec /bin/sh - ~/.xinitrc %session
|
||||
+#login_cmd exec /bin/bash -login ~/.xinitrc %session
|
||||
|
||||
# Available sessions (first one is the default).
|
||||
# The current chosen session name is replaced in the login_cmd
|
||||
@@ -33,7 +35,7 @@
|
||||
welcome_msg Welcome to %host
|
||||
|
||||
# shutdown / reboot messages
|
||||
-shutdown_msg The system is halting...
|
||||
+shutdown_msg The system is powering down...
|
||||
reboot_msg The system is rebooting...
|
||||
|
||||
# default user, leave blank or remove this line
|
||||
@@ -45,7 +47,7 @@
|
||||
current_theme default
|
||||
|
||||
# Lock file
|
||||
-lockfile /var/run/slim.lock
|
||||
+lockfile /var/run/slim.pid
|
||||
|
||||
# Log file
|
||||
logfile /var/log/slim.log
|
25
x11/slim/files/slim.sh.in
Normal file
25
x11/slim/files/slim.sh.in
Normal file
@ -0,0 +1,25 @@
|
||||
#!/bin/sh
|
||||
|
||||
# PROVIDE: slim
|
||||
# REQUIRE: LOGIN
|
||||
|
||||
#
|
||||
# Add the following lines to /etc/rc.conf to enable slim:
|
||||
# slim_enable (bool): Set to "NO" by default.
|
||||
# Set it to "YES" to enable slim
|
||||
#
|
||||
|
||||
. %%RC_SUBR%%
|
||||
|
||||
name="slim"
|
||||
rcvar=`set_rcvar`
|
||||
|
||||
load_rc_config $name
|
||||
|
||||
: ${slim_enable="NO"}
|
||||
|
||||
command=%%X11BASE%%/bin/slim
|
||||
command_args="-d"
|
||||
pidfile=/var/run/slim.pid
|
||||
|
||||
run_rc_command "$1"
|
9
x11/slim/pkg-descr
Normal file
9
x11/slim/pkg-descr
Normal file
@ -0,0 +1,9 @@
|
||||
SLiM is a desktop-independent graphical login manager for X11, derived from
|
||||
Login.app by Per Liden.
|
||||
|
||||
It aims to be light and simple, although completely configurable through
|
||||
themes and an option file; is suitable for machines on which remote login
|
||||
functionalities are not needed.
|
||||
|
||||
Author: Simone Rota and Johannes Winkelmann
|
||||
WWW: http://slim.berlios.de/
|
10
x11/slim/pkg-plist
Normal file
10
x11/slim/pkg-plist
Normal file
@ -0,0 +1,10 @@
|
||||
bin/slim
|
||||
%%DATADIR%%/themes/default/background.jpg
|
||||
%%DATADIR%%/themes/default/panel.png
|
||||
%%DATADIR%%/themes/default/slim.theme
|
||||
@dirrm %%DATADIR%%/themes/default
|
||||
@dirrm %%DATADIR%%/themes
|
||||
@dirrm %%DATADIR%%
|
||||
@unexec if cmp -s %D/etc/slim.conf.sample %D/etc/slim.conf; then rm -f %D/etc/slim.conf; fi
|
||||
etc/slim.conf.sample
|
||||
@exec if [ ! -f %D/etc/slim.conf ] ; then cp -p %D/%F %B/slim.conf; fi
|
Loading…
Reference in New Issue
Block a user