summaryrefslogtreecommitdiffstats
path: root/x11-themes/gtk-digital-cream-theme/Makefile
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2006-09-30 08:37:22 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2006-09-30 08:37:22 +0800
commita5c0616532f4594e62fc55d91e0cde1eee797fca (patch)
treed0bd207437caf69e6aec27f83da1d3ca54b2e9ef /x11-themes/gtk-digital-cream-theme/Makefile
parent28c53d116f176fc5cb2a6b99d777e1f3ea3ca513 (diff)
downloadmarcuscom-ports-a5c0616532f4594e62fc55d91e0cde1eee797fca.tar
marcuscom-ports-a5c0616532f4594e62fc55d91e0cde1eee797fca.tar.gz
marcuscom-ports-a5c0616532f4594e62fc55d91e0cde1eee797fca.tar.bz2
marcuscom-ports-a5c0616532f4594e62fc55d91e0cde1eee797fca.tar.lz
marcuscom-ports-a5c0616532f4594e62fc55d91e0cde1eee797fca.tar.xz
marcuscom-ports-a5c0616532f4594e62fc55d91e0cde1eee797fca.tar.zst
marcuscom-ports-a5c0616532f4594e62fc55d91e0cde1eee797fca.zip
Remove USE_X_PREFIX; it now installs in LOCALBASE.
Found by: pointyhat git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7363 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-themes/gtk-digital-cream-theme/Makefile')
-rw-r--r--x11-themes/gtk-digital-cream-theme/Makefile51
1 files changed, 51 insertions, 0 deletions
diff --git a/x11-themes/gtk-digital-cream-theme/Makefile b/x11-themes/gtk-digital-cream-theme/Makefile
new file mode 100644
index 000000000..7634918c0
--- /dev/null
+++ b/x11-themes/gtk-digital-cream-theme/Makefile
@@ -0,0 +1,51 @@
+# 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
+PORTREVISION= 1
+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/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>