mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
35345a4388
GUI for various admin tasks Graphical user interface (GUI) for various administrative tasks: - partition editor, disk editor - user/group management - date, time, timezone - and more. Some desktop users might find this port helpful. It uses gtk3 for the GUI elements. It has a sudo backend. WWW: https://github.com/random532/brut PR: 251373
40 lines
841 B
Makefile
40 lines
841 B
Makefile
PORTNAME= brut
|
|
DISTVERSION= 1.55
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= georg.lastname@web.de
|
|
COMMENT= Multitool, Partition Editor, Manage User/Groups
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= sudo>0:security/sudo
|
|
|
|
USES= gnome
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= random532
|
|
USE_GNOME= gtk30
|
|
|
|
PLIST_FILES= bin/brut
|
|
|
|
PORTDOCS= README.md
|
|
PORTEXAMPLES= screenshot/*.png
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
EXAMPLES_PLIST_FILES= ${EXAMPLESDIR}/scrot20.png \
|
|
${EXAMPLESDIR}/scrot21.png
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
do-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|