diff options
author | Sam James <sam@gentoo.org> | 2022-07-17 15:39:05 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-17 15:39:05 +0000 |
commit | 615329fa6f3c84c970bd216e4ead20b4aa909ae1 (patch) | |
tree | 126286d32f48a21ce88f3d647f99e9c7cc1ba078 /dev-db | |
parent | dev-libs/OpenNI: force -fno-strict-aliasing (diff) | |
download | gentoo-615329fa6f3c84c970bd216e4ead20b4aa909ae1.tar.gz gentoo-615329fa6f3c84c970bd216e4ead20b4aa909ae1.tar.bz2 gentoo-615329fa6f3c84c970bd216e4ead20b4aa909ae1.zip |
dev-db/gigabase: EAPI 8, disable strict aliasing
Closes: https://bugs.gentoo.org/855230
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/gigabase/gigabase-3.83-r2.ebuild | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/dev-db/gigabase/gigabase-3.83-r2.ebuild b/dev-db/gigabase/gigabase-3.83-r2.ebuild index 5e21d4f9ae8f..75d58541c23b 100644 --- a/dev-db/gigabase/gigabase-3.83-r2.ebuild +++ b/dev-db/gigabase/gigabase-3.83-r2.ebuild @@ -1,21 +1,21 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + +inherit flag-o-matic DESCRIPTION="OO-DBMS with interfaces for C/C++/Java/PHP/Perl" HOMEPAGE="http://www.garret.ru/~knizhnik/gigabase.html" SRC_URI="mirror://sourceforge/gigabase/${P}.tar.gz" +S="${WORKDIR}/${PN}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc static-libs" -DEPEND="doc? ( app-doc/doxygen )" -RDEPEND="" - -S="${WORKDIR}/${PN}" +BDEPEND="doc? ( app-doc/doxygen )" PATCHES=( "${FILESDIR}/${P}-fix-dereferencing.patch" @@ -24,6 +24,9 @@ PATCHES=( ) src_configure() { + # bug #855230 + append-flags -fno-strict-aliasing + econf $(use_enable static-libs static) } |