mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-08 11:46:08 +00:00
Signed-off-by: Jonathan Liu <net147@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
DESCRIPTION = "Qt Widget Extension for Technical Applications"
|
|
SECTION = "libs"
|
|
|
|
# LGPLv2.1 + some exceptions
|
|
LICENSE = "QWTv1.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=dac2743472b0462ff3cfb4af42051c88"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/qwt/qwt-${PV}.tar.bz2;name=qwt \
|
|
file://qwt6.patch \
|
|
file://qwt6-fix-linking-with-ld-gold.patch"
|
|
|
|
S = "${WORKDIR}/qwt-${PV}"
|
|
|
|
do_configure_prepend() {
|
|
sed -i -e 's:RELEASE_SUFFIX = :RELEASE_SUFFIX = ${QT_LIBINFIX}:' *.pri
|
|
sed -i -e 's:qtAddLibrary(qwt:qtAddLibrary(qwt)${QT_LIBINFIX}:g' *.prf
|
|
sed -e 's/# QWT_CONFIG += QwtExamples/QWT_CONFIG += QwtExamples/g' -i qwtconfig.pri
|
|
sed -i -e 's:/usr/local/qwt-$$QWT_VERSION:${D}${prefix}:g' ${S}/*.pri
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake -e install
|
|
install -d ${D}${datadir}/doc/${PN}
|
|
mv ${D}${prefix}/doc/* ${D}${datadir}/doc/${PN}/
|
|
rmdir ${D}${prefix}/doc
|
|
cd ${S}/examples
|
|
install -d ${D}/${bindir}
|
|
cd bin${QT_LIBINFIX}/
|
|
for i in * ; do
|
|
cp -pPR ${i} ${D}/${bindir}/${i}${QT_LIBINFIX}
|
|
done
|
|
install -d ${D}${libdir}/${QT_DIR_NAME}
|
|
mv ${D}${prefix}/plugins ${D}${libdir}/${QT_DIR_NAME}
|
|
}
|
|
|
|
PACKAGES_prepend = "${PN}-examples ${PN}-features ${PN}-plugins "
|
|
FILES_${PN}-examples = "${bindir}/*"
|
|
FILES_${PN}-features = "${prefix}/features"
|
|
FILES_${PN}-plugins = "${libdir}/${QT_DIR_NAME}/plugins/designer/*.so"
|
|
FILES_${PN}-dbg += "${libdir}/${QT_DIR_NAME}/plugins/designer/.debug"
|