Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 120116 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/portage/eclass/qt3.eclass (-2 / +13 lines)
Lines 26-33 Link Here
26
	QTDIR="/usr/qt/3"
26
	QTDIR="/usr/qt/3"
27
fi
27
fi
28
28
29
PATH="${QTDIR}/bin:${PATH}"
30
31
addwrite "${QTDIR}/etc/settings"
29
addwrite "${QTDIR}/etc/settings"
32
addpredict "${QTDIR}/etc/settings"
30
addpredict "${QTDIR}/etc/settings"
33
31
Lines 66-71 Link Here
66
	echo ${VERSIONS}
64
	echo ${VERSIONS}
67
}
65
}
68
66
67
68
#
69
# eqmake3 - Portage wrapper for qt3's qmake
70
#
71
# Authors: Przemysław Maciag <troll@gentoo.org>
72
#          Davide Pesavento <davidepesa@gmail.com>
73
#
74
# Usage:   eqmake3 <foo.pro> [...]
75
#          First parameter is the name of the .pro file on which qmake
76
#          should be run, defaults to ${PN}.pro if not specified.
77
#          Other parameters after the first are passed unmodified to qmake.
78
#
69
eqmake3() {
79
eqmake3() {
70
	local LOGFILE="${T}/qmake-$$.out"
80
	local LOGFILE="${T}/qmake-$$.out"
71
	local projprofile="${1}"
81
	local projprofile="${1}"
Lines 101-106 Link Here
101
	fi
111
	fi
102
112
103
	${QTDIR}/bin/qmake ${projprofile} \
113
	${QTDIR}/bin/qmake ${projprofile} \
114
		QTDIR=${QTDIR} \
104
		QMAKE=${QTDIR}/bin/qmake \
115
		QMAKE=${QTDIR}/bin/qmake \
105
		QMAKE_CC=$(tc-getCC) \
116
		QMAKE_CC=$(tc-getCC) \
106
		QMAKE_CXX=$(tc-getCXX) \
117
		QMAKE_CXX=$(tc-getCXX) \

Return to bug 120116