mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= digital-cream
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 7
|
|
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
|
|
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/themes/${THEME_NAME}
|
|
PLIST_SUB+= GTK20="@comment " METACITY=""
|
|
USE_GNOME= gnomehier
|
|
.endif
|
|
|
|
NO_STAGE= yes
|
|
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>
|