diff options
author | danfe <danfe@FreeBSD.org> | 2006-09-08 20:10:33 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2006-09-08 20:10:33 +0800 |
commit | 2bbcca726bb1dba553359a4f69333f145dc650a1 (patch) | |
tree | ae5f6f070fd07c0151294f66f176bfc1ad69a010 /x11-themes/gtk-digital-harmony-theme/Makefile | |
parent | 456c55324f990dafadec9b34f28454ddb135c7df (diff) | |
download | freebsd-ports-gnome-2bbcca726bb1dba553359a4f69333f145dc650a1.tar.gz freebsd-ports-gnome-2bbcca726bb1dba553359a4f69333f145dc650a1.tar.zst freebsd-ports-gnome-2bbcca726bb1dba553359a4f69333f145dc650a1.zip |
Another popular GNOME desktop theme by roberTO. This is GTK2 theme and
master port for corresponding Metacity theme.
WWW: http://www.users.monornet.hu/linux/
Diffstat (limited to 'x11-themes/gtk-digital-harmony-theme/Makefile')
-rw-r--r-- | x11-themes/gtk-digital-harmony-theme/Makefile | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/x11-themes/gtk-digital-harmony-theme/Makefile b/x11-themes/gtk-digital-harmony-theme/Makefile new file mode 100644 index 000000000000..54ccab8a3a30 --- /dev/null +++ b/x11-themes/gtk-digital-harmony-theme/Makefile @@ -0,0 +1,52 @@ +# New ports collection makefile for: Digital Harmony (gtk20 theme/master) +# Date created: 08 Sep 2006 +# Whom: Alexey Dokuchaev <danfe@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= digital-harmony +PORTVERSION= 1.1 +CATEGORIES= x11-themes gnome +MASTER_SITES= http://www.users.monornet.hu/linux/gtk2/oldies/ +PKGNAMEPREFIX= ${TYPE}- +PKGNAMESUFFIX= -theme +DISTNAME= Digital-Harmony + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Another popular theme for GNOME desktop + +TYPE?= gtk + +THEME_NAME= ${DISTNAME} + +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: + @${RM} -rf ${WRKSRC}/gtk-2.0/Scrollbars/Backup \ + ${WRKSRC}/gtk-2.0/ReadME.txt + @${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 | \ + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} +.else + cd ${WRKSRC} && ${FIND} metacity-1 | \ + ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${THEME_DIR} +.endif + +.include <bsd.port.mk> |