mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
d26ef18700
PR: 213743 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= digital-cream
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 8
|
|
CATEGORIES= x11-themes gnome
|
|
MASTER_SITES= http://www.users.monornet.hu/linux/gtk2/oldies/
|
|
PKGNAMEPREFIX= ${TYPE}-
|
|
PKGNAMESUFFIX= -theme
|
|
DISTNAME= Digital-Cream
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Neat and clean theme for GNOME desktop
|
|
|
|
USES= tar:bzip2
|
|
NO_BUILD= yes
|
|
|
|
TYPE?= gtk
|
|
THEME_NAME= ${DISTNAME}
|
|
|
|
.if ${TYPE} == gtk
|
|
THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME}
|
|
PLIST_SUB+= GTK20="" METACITY="@comment "
|
|
USE_GNOME= gtk20
|
|
.else # metacity
|
|
THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME}
|
|
PLIST_SUB+= GTK20="@comment " METACITY=""
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${THEME_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/index.theme ${STAGEDIR}${THEME_DIR}
|
|
.if ${TYPE} == gtk
|
|
cd ${WRKSRC} && ${FIND} gtk-2.0 -name '*[^~]' | \
|
|
${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR}
|
|
.else
|
|
cd ${WRKSRC} && ${FIND} metacity-1 -name '*[^~]' | \
|
|
${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|