View | Details | Raw Unified | Return to bug 241807
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 9-14 Link Here
9
COMMENT=	QT5 based display manager for FreeBSD
9
COMMENT=	QT5 based display manager for FreeBSD
10
10
11
LICENSE=	BSD2CLAUSE
11
LICENSE=	BSD2CLAUSE
12
LICENSE_FILE=	${WRKSRC}/../LICENSE
12
13
13
RUN_DEPENDS=	xorg-minimal>=0:x11/xorg-minimal \
14
RUN_DEPENDS=	xorg-minimal>=0:x11/xorg-minimal \
14
		xhost:x11/xhost \
15
		xhost:x11/xhost \
Lines 29-35 Link Here
29
30
30
USE_GITHUB=	yes
31
USE_GITHUB=	yes
31
GH_ACCOUNT=	trueos
32
GH_ACCOUNT=	trueos
32
GH_PROJECT=	pcdm
33
GH_TAGNAME=	690fdbdfc9fe482514161df1cd2bd994790c8a2d
33
GH_TAGNAME=	690fdbdfc9fe482514161df1cd2bd994790c8a2d
34
34
35
.include <bsd.port.mk>
35
.include <bsd.port.mk>
(-)pkg-install (-20 lines)
Lines 1-20 Link Here
1
#!/bin/sh
2
# Script to install preload.conf
3
4
PREFIX=${PKG_PREFIX-/usr/local}
5
6
if [ "$2" != "POST-INSTALL" ] ; then
7
   exit 0
8
fi
9
10
# If this is during staging, we can skip for now
11
echo $PREFIX | grep -q '/stage/'
12
if [ $? -eq 0 ] ; then
13
   exit 0
14
fi
15
16
if [ ! -e "${PREFIX}/etc/pcdm.conf" ] ; then
17
  install -m 644 ${PREFIX}/etc/pcdm.conf.dist ${PREFIX}/etc/pcdm.conf
18
fi
19
20
exit 0
(-)pkg-plist (-1 / +1 lines)
Lines 1-7 Link Here
1
bin/PCDM-session
1
bin/PCDM-session
2
bin/pc-dmconf
2
bin/pc-dmconf
3
bin/start-pcdm-pico
3
bin/start-pcdm-pico
4
etc/pcdm.conf.dist
4
@sample etc/pcdm.conf.dist etc/pcdm.conf
5
etc/rc.d/pcdm
5
etc/rc.d/pcdm
6
etc/sudoers.d/pico-sudoers
6
etc/sudoers.d/pico-sudoers
7
sbin/PCDMd
7
sbin/PCDMd

Return to bug 241807