#!/bin/sh if [ ! -e dirlist -o ! -e ../Makefile ]; then echo "Wrong directory; this script needs to be called from" echo "${PORTSDIR}/misc/kdehier4/files" echo "directory!" exit 1 fi echo "@comment Do not edit this file! @comment It is generated by maintainer-generate-plist target." > ../pkg-plist echo "%%MTREE%%@cwd %%LOCALBASE%% %%MTREE%%etc/dbus-1/session-kde4.conf %%MTREE%%etc/dbus-1/system-kde4.conf %%MTREE%%@dirrmtry etc/dbus-1 %%MTREE%%@cwd %%KDE4_PREFIX%%" >> ../pkg-plist echo "%%MTREE%%%%LDCONFIG_DIR%% %%MTREE%%%%LDCONFIG32_DIR%% %%MTREE%%libdata/pkgconfig %%MTREE%%share/polkit-1/actions" >> ../pkg-plist ( grep -v "^@comment" dirlist | sed -e "s,^,@exec mkdir -p %D/," ; grep -v "^@comment" mtree-dirlist | sed -e "s,^,%%MTREE%%@exec mkdir -p %D/," )| sort | uniq >> ../pkg-plist ( grep -v "^@comment" dirlist | sed -e "s,^,@dirrmtry ," ; grep -v "^@comment" mtree-dirlist | sed -e "s,^,%%MTREE%%@dirrm ," )| sort -r | uniq >> ../pkg-plist echo "%%MTREE%%@exec echo %D/lib > %%LOCALBASE%%/%%LDCONFIG_DIR%%/kdehier4 %%MTREE%%@unexec [ -f %%LOCALBASE%%/%%LDCONFIG_DIR%%/kdehier4 ] && rm -f %%LOCALBASE%%/%%LDCONFIG_DIR%%/kdehier4 || true" >> ../pkg-plist