summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2000-09-19 16:45:40 +0000
committerAde Lovett <ade@FreeBSD.org>2000-09-19 16:45:40 +0000
commit32f6a2767bd11381d8d868e9429155e90a7bf6c0 (patch)
treea2865156ae28ac3b52c955b1abb8a9aecf1fb64b /x11
parentUpdate to 1.2.2 (diff)
Add wrapper, a program that runs an X server after sanity-checking
the environment and any options passed to it. It is meant to enhance security on multi-user systems running XFree86 4.x, where the ability to use a startx script is needed. If you have XFree86 3.x, do not install this, you do not need it and it will not work. PR: 21352 Submitted by: Trevor Johnson <trevor@jpj.net>
Notes
Notes: svn path=/head/; revision=32868
Diffstat (limited to 'x11')
-rw-r--r--x11/Makefile1
-rw-r--r--x11/wrapper/Makefile32
-rw-r--r--x11/wrapper/pkg-comment1
-rw-r--r--x11/wrapper/pkg-deinstall3
-rw-r--r--x11/wrapper/pkg-descr11
-rw-r--r--x11/wrapper/pkg-plist1
6 files changed, 49 insertions, 0 deletions
diff --git a/x11/Makefile b/x11/Makefile
index 65de6fbcbd8e..cb81637e28e3 100644
--- a/x11/Makefile
+++ b/x11/Makefile
@@ -71,6 +71,7 @@
SUBDIR += wdm
SUBDIR += wmbutton
SUBDIR += wmmatrix
+ SUBDIR += wrapper
SUBDIR += wterm
SUBDIR += x3270
SUBDIR += xaniroc
diff --git a/x11/wrapper/Makefile b/x11/wrapper/Makefile
new file mode 100644
index 000000000000..41622918a79f
--- /dev/null
+++ b/x11/wrapper/Makefile
@@ -0,0 +1,32 @@
+# New ports collection makefile for: wrapper
+# Date created: 2000-09-18
+# Whom: Trevor Johnson <trevor@jpj.net>
+#
+# $FreeBSD$
+#
+
+PORTNAME= wrapper
+PORTVERSION= 1.0
+CATEGORIES= x11
+MASTER_SITES= http://jpj.net/~trevor/freebsd/ports/
+EXTRACT_SUFX= .c.gz
+
+MAINTAINER= trevor@jpj.net
+
+NO_WRKSUBDIR= yes
+USE_X_PREFIX= yes
+
+do-extract:
+ ${MKDIR} ${WRKDIR}
+ ${GUNZIP_CMD} -c ${_DISTDIR}${DISTFILES} > ${WRKSRC}/wrapper.c
+
+do-build:
+ ${CC} -o ${WRKDIR}/Xwrapper ${WRKDIR}/wrapper.c
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/Xwrapper ${PREFIX}/bin/
+ ${LN} -sf ${PREFIX}/bin/Xwrapper ${PREFIX}/bin/X
+ ${CHMOD} -s ${PREFIX}/bin/XFree86
+ ${CHMOD} +s ${PREFIX}/bin/Xwrapper
+
+.include <bsd.port.mk>
diff --git a/x11/wrapper/pkg-comment b/x11/wrapper/pkg-comment
new file mode 100644
index 000000000000..39a4a81c222d
--- /dev/null
+++ b/x11/wrapper/pkg-comment
@@ -0,0 +1 @@
+Wrapper for X server
diff --git a/x11/wrapper/pkg-deinstall b/x11/wrapper/pkg-deinstall
new file mode 100644
index 000000000000..d2f79fa0362e
--- /dev/null
+++ b/x11/wrapper/pkg-deinstall
@@ -0,0 +1,3 @@
+#!/bin/sh
+ln -sf ${PKG_PREFIX}/bin/XFree86 ${PKG_PREFIX}/bin/X
+chmod +s ${PKG_PREFIX}/bin/XFree86
diff --git a/x11/wrapper/pkg-descr b/x11/wrapper/pkg-descr
new file mode 100644
index 000000000000..a1b33133f776
--- /dev/null
+++ b/x11/wrapper/pkg-descr
@@ -0,0 +1,11 @@
+This program runs an X server after sanity-checking the environment
+and any options passed to it. It is meant to enhance security on
+multi-user systems running XFree86 4, where the ability to use a
+startx script is needed. If you have XFree86 3, do not install
+this: you do not need it and it will not work. If you have no
+untrusted users or always run the X server from xdm, you do not
+need this (in the latter case, just take the suid bit off your X
+server).
+
+Trevor Johnson
+trevor@jpj.net
diff --git a/x11/wrapper/pkg-plist b/x11/wrapper/pkg-plist
new file mode 100644
index 000000000000..f5da00759c7e
--- /dev/null
+++ b/x11/wrapper/pkg-plist
@@ -0,0 +1 @@
+bin/Xwrapper