mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
56744cfab5
- Update MASTER_SITES - Add LICENSE PR: ports/170171 Submitted by: KATO Tsuguru <tkato432 _at_ yahoo.com> Approved by: beat (mentor) Feature safe: yes
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
# New ports collection makefile for: sawfish-themes
|
|
# Date created: May 12 2004
|
|
# Whom: Alexey Mikhailov <karma@ez.pereslavl.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sawfish-themes
|
|
PORTVERSION= 0.13
|
|
CATEGORIES= x11-themes
|
|
MASTER_SITES= DEBIAN
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Themes for Sawfish window manager
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= sawfish:${PORTSDIR}/x11-wm/sawfish
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
NO_BUILD= yes
|
|
|
|
DATA_DIRS= 2YearsToNever Anonymous Aquiline BWM Big Blackwindow \
|
|
Bubbles_Exact CoolClean Derivative DoubleHeliX Elberg Empire \
|
|
FinalStep Greene2.0 Hacksaw HeliX Klarth Microtene \
|
|
OrangeJuice SawLook SawthenaForever Strap Studio T-16-blue \
|
|
T-16-red T-16-yellow Titanium V absolute-metal bluefoo \
|
|
debian gorilla gorillaz mxflat typo
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/share/sawfish/themes
|
|
.for d in ${DATA_DIRS}
|
|
@${TAR} --exclude ".pc" --exclude ".xvpics" -C ${WRKSRC} -cf - ${d} | \
|
|
${TAR} -C ${PREFIX}/share/sawfish/themes -xf -
|
|
@${FIND} ${PREFIX}/share/sawfish/themes/${d} | \
|
|
${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP}
|
|
@${FIND} ${PREFIX}/share/sawfish/themes/${d} -type f | \
|
|
${XARGS} ${CHMOD} ${SHAREMODE}
|
|
@${FIND} ${PREFIX}/share/sawfish/themes/${d} -type d | \
|
|
${XARGS} ${CHMOD} a+rx
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|