You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-libs/qscintilla/qscintilla-2.13.1.ebuild

81 lines
1.9 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic qmake-utils
DESCRIPTION="Qt port of Neil Hodgson's Scintilla C++ editor control"
HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro"
MY_PN=QScintilla
MY_P=${MY_PN}_src-${PV/_pre/.dev}
if [[ ${PV} == *_pre* ]]; then
SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.gz"
else
SRC_URI="https://www.riverbankcomputing.com/static/Downloads/${MY_PN}/${PV}/${MY_P}.tar.gz"
fi
S=${WORKDIR}/${MY_P}
LICENSE="GPL-3"
SLOT="0/15"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
IUSE="designer doc"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtprintsupport:5
dev-qt/qtwidgets:5
designer? ( dev-qt/designer:5 )
"
DEPEND="${RDEPEND}"
src_unpack() {
default
# Sub-slot sanity check
local subslot=${SLOT#*/}
local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' "${S}"/src/qscintilla.pro || die)
local major=${version%%.*}
if [[ ${subslot} != ${major} ]]; then
eerror
eerror "Ebuild sub-slot (${subslot}) does not match QScintilla major version (${major})"
eerror "Please update SLOT variable as follows:"
eerror " SLOT=\"${SLOT%%/*}/${major}\""
eerror
die "sub-slot sanity check failed"
fi
}
qsci_run_in() {
pushd "$1" >/dev/null || die
shift || die
"$@" || die
popd >/dev/null || die
}
src_configure() {
if use designer; then
# prevent building against system version (bug 466120)
append-cxxflags -I../src
append-ldflags -L../src
fi
qsci_run_in src eqmake5
use designer && qsci_run_in designer eqmake5
}
src_compile() {
qsci_run_in src emake
use designer && qsci_run_in designer emake
}
src_install() {
qsci_run_in src emake INSTALL_ROOT="${D}" install
use designer && qsci_run_in designer emake INSTALL_ROOT="${D}" install
use doc && HTML_DOCS=( doc/html/. )
einstalldocs
}