commit: 63dc53e411cd66d22966d3a2ddb3563241f14da7 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Apr 7 07:06:29 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Apr 7 07:06:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63dc53e4
dev-util/gperf: add 3.2 Closes: https://bugs.gentoo.org/912392 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-util/gperf/Manifest | 1 + dev-util/gperf/gperf-3.2.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-util/gperf/Manifest b/dev-util/gperf/Manifest index 5be253228059..ab8f7d11379e 100644 --- a/dev-util/gperf/Manifest +++ b/dev-util/gperf/Manifest @@ -1 +1,2 @@ DIST gperf-3.1.tar.gz 1215925 BLAKE2B bc4c54ade3f7dce484714d77cb5759dcc02b7a607d7b1aff6bdbcd06ee4c83e9449038a7217d5f25bcbef058ba56e1fce9383b9599de005154e5a9b566ac9c69 SHA512 855ebce5ff36753238a44f14c95be7afdc3990b085960345ca2caf1a2db884f7db74d406ce9eec2f4a52abb8a063d4ed000a36b317c9a353ef4e25e2cca9a3f4 +DIST gperf-3.2.tar.gz 1268603 BLAKE2B 6c90d665ff6b7f07862668b250ce06c5df386e6c746398ecb7d40912ed1ca820455addb9ecd17650925b6ef7cd2ff00b8ed9174e55da16a410f84d87b244e8f8 SHA512 97addf85e5b6f801f0f7084ec065d0d4a24a07f3fb6e60e2bc57b0f8813bd5db1bb4bed4f51fb96d0a8b278ffde1dfd0e42302cae911a619b95cc3cc46254fb3 diff --git a/dev-util/gperf/gperf-3.2.ebuild b/dev-util/gperf/gperf-3.2.ebuild new file mode 100644 index 000000000000..0eb955fb06e1 --- /dev/null +++ b/dev-util/gperf/gperf-3.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A perfect hash function generator" +HOMEPAGE="https://www.gnu.org/software/gperf/" +SRC_URI="mirror://gnu/gperf/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" + +src_prepare() { + default + + sed -i \ + -e "/^CPPFLAGS /s:=:+=:" \ + */Makefile.in || die #444078 +} + +src_configure() { + econf --cache-file="${S}"/config.cache +}
