#!/bin/sh -ef
#
# fixup-desktop - /usr/share/applications/*.desktop fixups.
#
# Copyright (C) 2011  Igor Vlasenko <viy@altlinux.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#

. /usr/lib/rpm/functions
ValidateBuildRoot

. /usr/lib/rpm/tmpdir.sh
TMPFILE=$tmpdir/tmp

: ${RPM_FIXUP_SKIPLIST:=}

fix()
{
	/usr/lib/rpm/fixup-desktop.awk "$f" > "$TMPFILE" || return 1
	if ! cmp --quiet -- "$f" "$TMPFILE"; then
		echo "$fname: performed minor cleanup:"
		diff -- "$f" "$TMPFILE" ||:
		cat < "$TMPFILE" > "$f" || return 1
	fi
}

rc=0
for f in "$@"; do
	if [ ! -f "$f" ]; then
		Info "$f: file unavailable"
		rc=1
		continue
	fi

	fname="${f#$RPM_BUILD_ROOT}"
	fname="${fname#.}"

	if [ -n "$RPM_FIXUP_SKIPLIST" ]; then
		for skip in $RPM_FIXUP_SKIPLIST; do
			if [ -z "${fname##$skip}" ]; then
				continue 2
			fi
		done
	fi

	fix
done

exit $rc
