diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2019-11-27 15:35:31 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2019-11-27 15:35:31 +0000 |
commit | 61d8f43e0dc67db2df291c2cbb8f9c72b73daeac (patch) | |
tree | 9477d3b2df0d0bce628afe683c71861a23eeacde /x11/pcdm | |
parent | 0e66c3b6a4f45750ecf8a9dc433d16d01abc8935 (diff) |
- Simplify config file handling by switching to @sample
- Add LICENSE_FILE
- Remove redundant GH_PROJECT
PR: 241807
Submitted by: amdmi3
Approved by: maintainer timeout (jt@ixsystems.com, 2.5 weeks)
Notes
Notes:
svn path=/head/; revision=518505
Diffstat (limited to 'x11/pcdm')
-rw-r--r-- | x11/pcdm/Makefile | 2 | ||||
-rw-r--r-- | x11/pcdm/pkg-install | 20 | ||||
-rw-r--r-- | x11/pcdm/pkg-plist | 2 |
3 files changed, 2 insertions, 22 deletions
diff --git a/x11/pcdm/Makefile b/x11/pcdm/Makefile index f3b3152d0dc6..dcc8a1a0d501 100644 --- a/x11/pcdm/Makefile +++ b/x11/pcdm/Makefile @@ -9,6 +9,7 @@ MAINTAINER= jt@ixsystems.com COMMENT= QT5 based display manager for FreeBSD LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/../LICENSE RUN_DEPENDS= xorg-minimal>=0:x11/xorg-minimal \ xhost:x11/xhost \ @@ -29,7 +30,6 @@ CONFLICTS= pcbsd-utils-qt* USE_GITHUB= yes GH_ACCOUNT= trueos -GH_PROJECT= pcdm GH_TAGNAME= 690fdbdfc9fe482514161df1cd2bd994790c8a2d .include <bsd.port.mk> diff --git a/x11/pcdm/pkg-install b/x11/pcdm/pkg-install deleted file mode 100644 index a24b159ee50d..000000000000 --- a/x11/pcdm/pkg-install +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# Script to install preload.conf - -PREFIX=${PKG_PREFIX-/usr/local} - -if [ "$2" != "POST-INSTALL" ] ; then - exit 0 -fi - -# If this is during staging, we can skip for now -echo $PREFIX | grep -q '/stage/' -if [ $? -eq 0 ] ; then - exit 0 -fi - -if [ ! -e "${PREFIX}/etc/pcdm.conf" ] ; then - install -m 644 ${PREFIX}/etc/pcdm.conf.dist ${PREFIX}/etc/pcdm.conf -fi - -exit 0 diff --git a/x11/pcdm/pkg-plist b/x11/pcdm/pkg-plist index 528c8a26881f..0813c375b2fb 100644 --- a/x11/pcdm/pkg-plist +++ b/x11/pcdm/pkg-plist @@ -1,7 +1,7 @@ bin/PCDM-session bin/pc-dmconf bin/start-pcdm-pico -etc/pcdm.conf.dist +@sample etc/pcdm.conf.dist etc/pcdm.conf etc/rc.d/pcdm etc/sudoers.d/pico-sudoers sbin/PCDMd |