<email>grobian@gentoo.org</email>
<name>Fabian Groffen</name>
</maintainer>
+ <use>
+ <flag name="qmanifest">Build qmanifest applet, this adds additional dependencies for GPG, OpenSSL and BLAKE2B hashing</flag>
+ </use>
</pkgmetadata>
LICENSE="GPL-2"
SLOT="0"
-IUSE="nls static"
+IUSE="nls static openmp +qmanifest"
if [[ ${PV} == *9999 ]]; then
inherit git-r3 autotools
RDEPEND="dev-libs/iniparser:0"
DEPEND="${RDEPEND}
app-arch/xz-utils
- static? ( dev-libs/iniparser:0[static-libs] )"
+ static? ( dev-libs/iniparser:0[static-libs] )
+ qmanifest? (
+ openmp? (
+ || (
+ >=sys-devel/gcc-4.2:*[openmp]
+ sys-devel/clang-runtime:*[openmp]
+ )
+ )
+ app-crypt/libb2
+ dev-libs/openssl:0=
+ sys-libs/zlib
+ app-crypt/gpgme
+ )
+ "
src_prepare() {
default
}
src_configure() {
- econf --disable-maintainer-mode --with-eprefix="${EPREFIX}"
+ econf \
+ --disable-maintainer-mode \
+ --with-eprefix="${EPREFIX}" \
+ $(use_enable qmanifest) \
+ $(use_enable openmp)
}