diff options
-rw-r--r-- | devel/gconf2/pkg-install | 8 | ||||
-rw-r--r-- | games/gnome-games/pkg-install | 12 | ||||
-rw-r--r-- | games/gnomegames2/pkg-install | 12 | ||||
-rw-r--r-- | x11-toolkits/pango/files/pkg-install.in | 6 |
4 files changed, 22 insertions, 16 deletions
diff --git a/devel/gconf2/pkg-install b/devel/gconf2/pkg-install index 2992a8454..13898d569 100644 --- a/devel/gconf2/pkg-install +++ b/devel/gconf2/pkg-install @@ -1,12 +1,16 @@ #!/bin/sh -if [ "$2" = "POST-INSTALL" ]; then +PATH=/bin:/usr/bin:/usr/sbin + +case $2 in +POST-INSTALL) dirs="etc/gconf/gconf.xml.defaults/apps \ etc/gconf/gconf.xml.defaults/schemas/apps \ etc/gconf/schemas" for i in ${dirs}; do mkdir -p ${PKG_PREFIX}/${i} done -fi + ;; +esac exit 0 diff --git a/games/gnome-games/pkg-install b/games/gnome-games/pkg-install index fbab4fc36..053f48f58 100644 --- a/games/gnome-games/pkg-install +++ b/games/gnome-games/pkg-install @@ -1,17 +1,17 @@ #!/bin/sh -if [ -n "${PACKAGE_BUILDING}" ]; then - exit 0 -fi +PATH=/bin:/usr/bin:/usr/sbin -if [ "$2" = "POST-INSTALL" ]; then +case $2 in +POST-INSTALL) mkdir -p ${PKG_PREFIX}/share/gnome/games SCORES="glines.scores gnibbles.1.0.scores gnibbles.1.1.scores gnibbles.2.0.scores gnibbles.2.1.scores gnibbles.3.0.scores gnibbles.3.1.scores gnibbles.4.0.scores gnibbles.4.1.scores gnobots2.classic_robots-safe.scores gnobots2.classic_robots-super-safe.scores gnobots2.classic_robots.scores gnobots2.nightmare-safe.scores gnobots2.nightmare-super-safe.scores gnobots2.nightmare.scores gnobots2.robots2-safe.scores gnobots2.robots2-super-safe.scores gnobots2.robots2.scores gnobots2.robots2_easy-safe.scores gnobots2.robots2_easy-super-safe.scores gnobots2.robots2_easy.scores gnobots2.robots_with_safe_teleport-safe.scores gnobots2.robots_with_safe_teleport-super-safe.scores gnobots2.robots_with_safe_teleport.scores gnome-stones.scores gnometris.scores gnomine.Custom.scores gnomine.Large.scores gnomine.Medium.scores gnomine.Small.scores gnotravex.2x2.scores gnotravex.3x3.scores gnotravex.4x4.scores gnotravex.5x5.scores gnotravex.6x6.scores gnotski.1.scores gnotski.11.scores gnotski.12.scores gnotski.13.scores gnotski.14.scores gnotski.15.scores gnotski.16.scores gnotski.17.scores gnotski.2.scores gnotski.21.scores gnotski.22.scores gnotski.23.scores gnotski.24.scores gnotski.25.scores gnotski.26.scores gnotski.3.scores gnotski.4.scores gnotski.5.scores gnotski.6.scores gnotski.7.scores gtali.scores iagno.b1.scores iagno.b2.scores iagno.b3.scores iagno.w1.scores iagno.w2.scores iagno.w3.scores mahjongg.bridges.scores mahjongg.cloud.scores mahjongg.confounding.scores mahjongg.difficult.scores mahjongg.dragon.scores mahjongg.easy.scores mahjongg.pyramid.scores mahjongg.tictactoe.scores same-gnome.scores" for i in ${SCORES}; do if [ ! -f ${PKG_PREFIX}/share/gnome/games/${i} ]; then touch -f ${PKG_PREFIX}/share/gnome/games/${i} chown games:games ${PKG_PREFIX}/share/gnome/games/${i} - chmod 664 ${PKG_PREFIX}/share/gnome/games/${i} + chmod 0664 ${PKG_PREFIX}/share/gnome/games/${i} fi done -fi + ;; +esac diff --git a/games/gnomegames2/pkg-install b/games/gnomegames2/pkg-install index fbab4fc36..053f48f58 100644 --- a/games/gnomegames2/pkg-install +++ b/games/gnomegames2/pkg-install @@ -1,17 +1,17 @@ #!/bin/sh -if [ -n "${PACKAGE_BUILDING}" ]; then - exit 0 -fi +PATH=/bin:/usr/bin:/usr/sbin -if [ "$2" = "POST-INSTALL" ]; then +case $2 in +POST-INSTALL) mkdir -p ${PKG_PREFIX}/share/gnome/games SCORES="glines.scores gnibbles.1.0.scores gnibbles.1.1.scores gnibbles.2.0.scores gnibbles.2.1.scores gnibbles.3.0.scores gnibbles.3.1.scores gnibbles.4.0.scores gnibbles.4.1.scores gnobots2.classic_robots-safe.scores gnobots2.classic_robots-super-safe.scores gnobots2.classic_robots.scores gnobots2.nightmare-safe.scores gnobots2.nightmare-super-safe.scores gnobots2.nightmare.scores gnobots2.robots2-safe.scores gnobots2.robots2-super-safe.scores gnobots2.robots2.scores gnobots2.robots2_easy-safe.scores gnobots2.robots2_easy-super-safe.scores gnobots2.robots2_easy.scores gnobots2.robots_with_safe_teleport-safe.scores gnobots2.robots_with_safe_teleport-super-safe.scores gnobots2.robots_with_safe_teleport.scores gnome-stones.scores gnometris.scores gnomine.Custom.scores gnomine.Large.scores gnomine.Medium.scores gnomine.Small.scores gnotravex.2x2.scores gnotravex.3x3.scores gnotravex.4x4.scores gnotravex.5x5.scores gnotravex.6x6.scores gnotski.1.scores gnotski.11.scores gnotski.12.scores gnotski.13.scores gnotski.14.scores gnotski.15.scores gnotski.16.scores gnotski.17.scores gnotski.2.scores gnotski.21.scores gnotski.22.scores gnotski.23.scores gnotski.24.scores gnotski.25.scores gnotski.26.scores gnotski.3.scores gnotski.4.scores gnotski.5.scores gnotski.6.scores gnotski.7.scores gtali.scores iagno.b1.scores iagno.b2.scores iagno.b3.scores iagno.w1.scores iagno.w2.scores iagno.w3.scores mahjongg.bridges.scores mahjongg.cloud.scores mahjongg.confounding.scores mahjongg.difficult.scores mahjongg.dragon.scores mahjongg.easy.scores mahjongg.pyramid.scores mahjongg.tictactoe.scores same-gnome.scores" for i in ${SCORES}; do if [ ! -f ${PKG_PREFIX}/share/gnome/games/${i} ]; then touch -f ${PKG_PREFIX}/share/gnome/games/${i} chown games:games ${PKG_PREFIX}/share/gnome/games/${i} - chmod 664 ${PKG_PREFIX}/share/gnome/games/${i} + chmod 0664 ${PKG_PREFIX}/share/gnome/games/${i} fi done -fi + ;; +esac diff --git a/x11-toolkits/pango/files/pkg-install.in b/x11-toolkits/pango/files/pkg-install.in index d734df0dd..2eefcdfcd 100644 --- a/x11-toolkits/pango/files/pkg-install.in +++ b/x11-toolkits/pango/files/pkg-install.in @@ -3,7 +3,9 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin:%%X11BASE%%/bin export PATH -if [ "$2" = "POST-INSTALL" ]; then +case $2 in +POST-INSTALL) echo "Running fc-cache to build fontconfig cache..." fc-cache -f -v -fi + ;; +esac |