mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# New ports collection makefile for: Digital Cream (gtk20 theme/master)
|
|
# Date created: 08 Sep 2006
|
|
# Whom: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= digital-cream
|
|
PORTVERSION= 1.0
|
|
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= Very neat and clean theme for GNOME desktop
|
|
|
|
TYPE?= gtk
|
|
|
|
THEME_NAME= ${DISTNAME}
|
|
|
|
USE_BZIP2= yes
|
|
USE_X_PREFIX= yes
|
|
NO_BUILD= yes
|
|
|
|
.if ${TYPE} == "gtk"
|
|
THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME}
|
|
PLIST_SUB+= GTK20="" METACITY="@comment "
|
|
USE_GNOME= gtk20
|
|
.else # metacity
|
|
THEME_DIR= ${PREFIX}/share/gnome/themes/${THEME_NAME}
|
|
PLIST_SUB+= GTK20="@comment " METACITY=""
|
|
USE_GNOME= gnomehier
|
|
.endif
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${CHMOD} 644
|
|
|
|
do-install:
|
|
@${MKDIR} ${THEME_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/index.theme ${THEME_DIR}
|
|
.if ${TYPE} == "gtk"
|
|
cd ${WRKSRC} && ${FIND} gtk-2.0 -name '*[^~]' | \
|
|
${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR}
|
|
.else
|
|
cd ${WRKSRC} && ${FIND} metacity-1 -name '*[^~]' | \
|
|
${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|