diff options
author | pav <pav@FreeBSD.org> | 2004-03-04 19:32:17 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-03-04 19:32:17 +0000 |
commit | 7e08e044499ddfdfc0bf30e013bc5718d960cc88 (patch) | |
tree | 5a5d0d54a9942174925bd073edd21521319606d7 /x11-themes/gnome-icons | |
parent | 7fe039edc40cfc4e777a9a5a23c36404a54c4257 (diff) | |
download | FreeBSD-ports-7e08e044499ddfdfc0bf30e013bc5718d960cc88.zip FreeBSD-ports-7e08e044499ddfdfc0bf30e013bc5718d960cc88.tar.gz |
Add helper Makefile for coming gnome-icons-* ports.
PR: ports/63744
Submitted by: Tom McLaughlin <tmclaugh@sdf.lonestar.org>
Diffstat (limited to 'x11-themes/gnome-icons')
-rw-r--r-- | x11-themes/gnome-icons/Makefile.icons | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/x11-themes/gnome-icons/Makefile.icons b/x11-themes/gnome-icons/Makefile.icons new file mode 100644 index 0000000..29a61c8 --- /dev/null +++ b/x11-themes/gnome-icons/Makefile.icons @@ -0,0 +1,32 @@ +# New ports collection makefile for: Gnome iconset +# Date created: 29 Feb 2004 +# Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org> +# +# $FreeBSD$ +# + +# Port logic gratuitously stolen from x11-themes/kde-icons-noia by +# lioux@. + +PKGNAMEPREFIX= gnome-icons- +MASTER_SITES?= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR?= teams/art.gnome.org/themes/icon + +NO_BUILD= yes +USE_SIZE= yes + +REASON= Themes may contain artwork not done by the author. \ + Keep FreeBSD safe if theme author violated copyrights. + +USE_X_PREFIX= yes + +do-install: + ${MKDIR} ${PREFIX}/share/icons/${PORTNAME} + cd ${WRKSRC} && ${FIND} . -type d ! -empty \ + -exec ${MKDIR} -m 0755 \ + ${PREFIX}/share/icons/${PORTNAME}/"{}" \; + cd ${WRKSRC} && ${FIND} . -type f \ + -exec ${INSTALL_DATA} ${WRKSRC}/"{}" \ + ${PREFIX}/share/icons/${PORTNAME}/"{}" \; + +.include <bsd.port.mk> |