summaryrefslogtreecommitdiffstats
path: root/devel/gconf2/pkg-install
blob: 2992a8454edafabcb71e7b895466d78b3bb64015 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ "$2" = "POST-INSTALL" ]; then
    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

exit 0