# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit kde need-kde 3 MY_P=${P/.3/-3} S=${WORKDIR}/${MY_P} DESCRIPTION="Quax - a KDE magnifying glass" SRC_URI="mirror://sourceforge/lkr/${MY_P}.tar.gz" HOMEPAGE="http://www.ro.kde.org/quax/" LICENSE="GPL-2" KEYWORDS="~x86" RESTRICT="nomirror" src_unpack() { base_src_unpack cd ${S}/src || die # grabbed from kde_src_compile and adapted for x in Makefile.am Makefile.in Makefile; do if [ -f "$x" ]; then echo Running sed on $x; cp $x ${x}.orig; sed -e 's:$(INSTALL_ROOT):$(DESTDIR):g' ${x}.orig >${x}; rm ${x}.orig; fi; done }