I have tried to build the 'qpxtool' app with ebuild file shown below.
The problem is I have sloted Qt3 and Qt4, and ebuild doesn't switch to Qt3.
The app _must_ be built with Qt3.

How to modify the ebuild file to force a Qt3 using?

Andrew
___________________________________________________________
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils kde-functions

DESCRIPTION="cd/dvd quality check for Plextor drives"
HOMEPAGE="http://qpxtool.sourceforge.net";
SRC_URI="mirror://sourceforge/$PN/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

need-qt 3

DEPEND=""

src_compile() {
        qmake -project || die "qmake -project failed"
        qmake qpxtool-${PV}.pro || die "qmake qpxtool failed"
        emake || die "emake failed"
}

src_install() {
        newbin qpxtool-${PV} qpxtool || die "dobin failed"
        dodoc ChangeLog || die "dodoc failed"
}
-- 
[email protected] mailing list

Reply via email to