From a70936797b3e090b9e7396bd1765134d11a91a1c Mon Sep 17 00:00:00 2001 From: Sam James Date: Mon, 17 Apr 2023 01:50:33 +0100 Subject: [PATCH] dev-libs/xmlsec: respect CFLAGS Don't force -O. Signed-off-by: Sam James --- dev-libs/xmlsec/files/xmlsec-1.3.0-optimisation.patch | 11 +++++++++++ .../{xmlsec-1.3.0.ebuild => xmlsec-1.3.0-r1.ebuild} | 9 +++++++++ 2 files changed, 20 insertions(+) create mode 100644 dev-libs/xmlsec/files/xmlsec-1.3.0-optimisation.patch rename dev-libs/xmlsec/{xmlsec-1.3.0.ebuild => xmlsec-1.3.0-r1.ebuild} (94%) diff --git a/dev-libs/xmlsec/files/xmlsec-1.3.0-optimisation.patch b/dev-libs/xmlsec/files/xmlsec-1.3.0-optimisation.patch new file mode 100644 index 0000000000000..2cd0401e019dc --- /dev/null +++ b/dev-libs/xmlsec/files/xmlsec-1.3.0-optimisation.patch @@ -0,0 +1,11 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -2482,7 +2482,7 @@ AC_ARG_ENABLE([pedantic], [AS_HELP_STRING([--enable-pedantic],[enable pedantic c + if test "z$enable_pedantic" = "zno" ; then + AC_MSG_RESULT([disabled]) + else +- CFLAGS="$CFLAGS -O -std=c99 -pedantic -pedantic-errors -W -Wall -Wextra" ++ CFLAGS="$CFLAGS -std=c99 -pedantic -W -Wall -Wextra" + CFLAGS="$CFLAGS -fno-inline -Wnull-dereference -Wdouble-promotion" + CFLAGS="$CFLAGS -Wformat=2 -Wformat-security -Wformat-nonliteral" + CFLAGS="$CFLAGS -Wconversion -Wunused -Wshadow -Wpointer-arith -Wcast-align" diff --git a/dev-libs/xmlsec/xmlsec-1.3.0.ebuild b/dev-libs/xmlsec/xmlsec-1.3.0-r1.ebuild similarity index 94% rename from dev-libs/xmlsec/xmlsec-1.3.0.ebuild rename to dev-libs/xmlsec/xmlsec-1.3.0-r1.ebuild index e0191245d162e..e90f0e76d9e9c 100644 --- a/dev-libs/xmlsec/xmlsec-1.3.0.ebuild +++ b/dev-libs/xmlsec/xmlsec-1.3.0-r1.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit autotools + DESCRIPTION="Command line tool for signing, verifying, encrypting and decrypting XML" HOMEPAGE="https://www.aleksey.com/xmlsec" SRC_URI="https://www.aleksey.com/xmlsec/download/${PN}1-${PV}.tar.gz" @@ -43,8 +45,15 @@ BDEPEND=" PATCHES=( "${FILESDIR}"/${P}-strict-prototypes.patch "${FILESDIR}"/${P}-clang.patch + "${FILESDIR}"/${P}-optimisation.patch ) +src_prepare() { + default + + eautoreconf +} + src_configure() { local myeconfargs=( $(use_enable doc docs)