Date: Wed, 25 Oct 2017 03:01:57 +0000 (UTC) From: Richard Gallamore <ultima@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452829 - in head/sysutils: . mkdesktop Message-ID: <201710250301.v9P31vai008442@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ultima Date: Wed Oct 25 03:01:56 2017 New Revision: 452829 URL: https://svnweb.freebsd.org/changeset/ports/452829 Log: mkdesktop is a Bourne script that helps to standardize the process of FreeBSD desktop installation as much as possible per user, with plenty of flexibility as well as modularity. By default, you get 5 distinct stages for defining your desktop environment. But you can always add/subtract/customize the stages as much as you wish. Once you start using mkdesktop, you will pretty soon love it - particularly its post-processor which automatically kicks in once the stages have been processed - it sets up emulation layers and configuration of system files, if the user so desires. WWW: https://github.com/bourne-again/mkdesktop PR: 221370 Submitted by: born^@hotmail.com (maintainer) Added: head/sysutils/mkdesktop/ head/sysutils/mkdesktop/Makefile (contents, props changed) head/sysutils/mkdesktop/distinfo (contents, props changed) head/sysutils/mkdesktop/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Oct 25 02:23:21 2017 (r452828) +++ head/sysutils/Makefile Wed Oct 25 03:01:56 2017 (r452829) @@ -627,6 +627,7 @@ SUBDIR += minimunin SUBDIR += minirsyslogd SUBDIR += mixer + SUBDIR += mkdesktop SUBDIR += mkfile SUBDIR += mkfwimage SUBDIR += mkntpwd Added: head/sysutils/mkdesktop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mkdesktop/Makefile Wed Oct 25 03:01:56 2017 (r452829) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= mkdesktop +PORTVERSION= 1.6 +CATEGORIES= sysutils + +MAINTAINER= bourne.identity@hotmail.com +COMMENT= Powerful, flexible utility to setup a FreeBSD desktop + +RUN_DEPENDS= pkg>0:ports-mgmt/pkg + +USE_GITHUB= yes +GH_ACCOUNT= bourne-again + +NO_BUILD= yes +NO_ARCH= yes + +DATA1= stage-definitions +DATA2= mkdesktop.help +PLIST_FILES= bin/${PORTNAME} ${DATADIR}/${DATA1} ${DATADIR}/${DATA2} + +do-install: + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/${DATA1} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/${DATA2} ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.mk> Added: head/sysutils/mkdesktop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mkdesktop/distinfo Wed Oct 25 03:01:56 2017 (r452829) @@ -0,0 +1,3 @@ +TIMESTAMP = 1508900370 +SHA256 (bourne-again-mkdesktop-1.6_GH0.tar.gz) = 11c9af79b78e6b6d9a92b7c2558e01855333b32db8208b12fa75df9f9345051c +SIZE (bourne-again-mkdesktop-1.6_GH0.tar.gz) = 10034 Added: head/sysutils/mkdesktop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/mkdesktop/pkg-descr Wed Oct 25 03:01:56 2017 (r452829) @@ -0,0 +1,10 @@ +mkdesktop is a Bourne script that helps to standardize the process of FreeBSD +desktop installation as much as possible per user, with plenty of flexibility as +well as modularity. By default, you get 5 distinct stages for defining your +desktop environment. But you can always add/subtract/customize the stages as +much as you wish. Once you start using mkdesktop, you will pretty soon love it - +particularly its post-processor which automatically kicks in once the stages +have been processed - it sets up emulation layers and configuration of system +files, if the user so desires. + +WWW: https://github.com/bourne-again/mkdesktop
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710250301.v9P31vai008442>