pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/gnome-themes salo@: not every install can handles ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ebde40a41294
branches:  trunk
changeset: 507302:ebde40a41294
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Mon Jan 30 14:06:14 2006 +0000

description:
salo@: not every install can handles multiple directories (e.g. Solaris),
so create them one at a time.

diffstat:

 x11/gnome-themes/Makefile |  45 ++++++++++++++++++++++++---------------------
 1 files changed, 24 insertions(+), 21 deletions(-)

diffs (66 lines):

diff -r 7ba1246bd042 -r ebde40a41294 x11/gnome-themes/Makefile
--- a/x11/gnome-themes/Makefile Mon Jan 30 13:28:11 2006 +0000
+++ b/x11/gnome-themes/Makefile Mon Jan 30 14:06:14 2006 +0000
@@ -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 @@
 
 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"



Home | Main Index | Thread Index | Old Index