From d817acdc4b62fb9157d8f95f024bfea72f9b84c0 Mon Sep 17 00:00:00 2001 From: joerg Date: Mon, 30 Jan 2006 14:06:14 +0000 Subject: salo@: not every install can handles multiple directories (e.g. Solaris), so create them one at a time. --- x11/gnome-themes/Makefile | 45 ++++++++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/x11/gnome-themes/Makefile b/x11/gnome-themes/Makefile index e65cc382cb2..7290d0fcbfb 100644 --- a/x11/gnome-themes/Makefile +++ b/x11/gnome-themes/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2006/01/24 07:32:51 wiz Exp $ +# $NetBSD: Makefile,v 1.40 2006/01/30 14:06:14 joerg Exp $ # DISTNAME= gnome-themes-2.12.1 @@ -23,33 +23,36 @@ GNU_CONFIGURE= yes pre-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Smokey-Red - cd ${PREFIX}/share/icons/Smokey-Red && ${INSTALL_DATA_DIR} \ - 96x96/filesystems 72x72/filesystems 64x64/filesystems \ - 48x48/filesystems 48x48/emblems +.for f in 96x96/filesystems 72x72/filesystems 64x64/filesystems \ + 48x48/filesystems 48x48/emblems + ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Smokey-Red/${f} +.endfor ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Smokey-Blue - cd ${PREFIX}/share/icons/Smokey-Blue && ${INSTALL_DATA_DIR} \ - 96x96/filesystems 72x72/filesystems 64x64/filesystems \ - 48x48/emblems +.for f in 96x96/filesystems 72x72/filesystems 64x64/filesystems \ + 48x48/emblems + ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Smokey-Blue/${f} +.endfor ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Sandy - cd ${PREFIX}/share/icons/Sandy && ${INSTALL_DATA_DIR} \ - 96x96/filesystems 72x72/filesystems \ - 48x48/filesystems 36x36/filesystems 24x24/filesystems \ - 12x12/filesystems +.for f in 96x96/filesystems 72x72/filesystems 48x48/filesystems \ + 36x36/filesystems 24x24/filesystems 12x12/filesystems + ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Sandy/${f} +.endfor ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/LowContrastLargePrint/48x48 ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/HighContrastLargePrintInverse/48x48 ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/HighContrastLargePrint/48x48 ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Flat-Blue - cd ${PREFIX}/share/icons/Flat-Blue && ${INSTALL_DATA_DIR} \ - 96x96/filesystems 72x72/filesystems 72x72/devices \ - 48x48/filesystems 48x48/emblems \ - 48x48/devices 36x36/filesystems 36x36/emblems \ - 24x24/filesystems 24x24/emblems 20x20/filesystems \ - 192x192/filesystems 12x12/filesystems 12x12/emblems scalable/emblems +.for f in 96x96/filesystems 72x72/filesystems 72x72/devices 48x48/filesystems \ + 48x48/emblems 48x48/devices 36x36/filesystems 36x36/emblems \ + 24x24/filesystems 24x24/emblems 20x20/filesystems \ + 192x192/filesystems 12x12/filesystems 12x12/emblems scalable/emblems + ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Flat-Blue/${f} +.endfor ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Crux - cd ${PREFIX}/share/icons/Crux && ${INSTALL_DATA_DIR} \ - 96x96/filesystems 96x96/emblems 72x72/filesystems 72x72/emblems \ - 48x48/filesystems 48x48/emblems 36x36/filesystems \ - 24x24/filesystems 192x192/filesystems 12x12/filesystems +.for f in 96x96/filesystems 96x96/emblems 72x72/filesystems 72x72/emblems \ + 48x48/filesystems 48x48/emblems 36x36/filesystems \ + 24x24/filesystems 192x192/filesystems 12x12/filesystems + ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/Crux/${f} +.endfor .include "../../devel/libgnomeui/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" -- cgit v1.2.3