mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
e1bfdfbe56
Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine
38 lines
934 B
Makefile
38 lines
934 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= slim-freebsd-black-theme
|
|
DISTVERSION= 1.0
|
|
CATEGORIES= x11-themes
|
|
|
|
MAINTAINER= lebarondemerde@privacychain.ch
|
|
COMMENT= Simple FreeBSD SLiM theme inspired on the FreeBSD SLiM theme
|
|
|
|
LICENSE= CC-BY-SA-3.0
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= montserrat>=0:x11-fonts/montserrat
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= lebarondemerde
|
|
|
|
NO_BUILD= yes
|
|
|
|
THEMEDIR_REL= share/slim/themes/slim-freebsd-black-theme
|
|
THEMEDIR= ${PREFIX}/${THEMEDIR_REL}
|
|
PLIST_SUB= THEMEDIR=${THEMEDIR_REL}
|
|
|
|
SUB_FILES= pkg-message
|
|
PORTDOCS= README.md AUTHORS COPYING TRADEMARKS
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${THEMEDIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${THEMEDIR} \
|
|
"! ( -name README.md -o -name AUTHORS -o -name COPYING -o -name TRADEMARKS )")
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKDIR}/${PORTNAME}-${PORTVERSION} && \
|
|
${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|