commit: 751d535fa68bced8dcbbef3f27d399d0cb9acde3 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Jul 12 05:46:08 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Jul 12 05:46:08 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=751d535f
app-text/a2ps: add 4.15.7 Closes: https://bugs.gentoo.org/945249 Signed-off-by: Sam James <sam <AT> gentoo.org> app-text/a2ps/Manifest | 1 + app-text/a2ps/a2ps-4.15.7.ebuild | 95 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 96 insertions(+) diff --git a/app-text/a2ps/Manifest b/app-text/a2ps/Manifest index 1038254cb39a..cc75a317915b 100644 --- a/app-text/a2ps/Manifest +++ b/app-text/a2ps/Manifest @@ -1,2 +1,3 @@ DIST a2ps-4.15.5.tar.gz 3571724 BLAKE2B 7c352b72c537f8519cafb7993595d902e1dfeae49207936c365b0ea3813ffff973c5f5e2bb63a4cffa3c665990d95c8a8e339c87d9eac25fa24e364b8b705bae SHA512 e9953659139a46aed46e190d5485382a9e396ae8bbbe59edb78ab3110e7839a764e3cb6ff94f5f36e6e91fcaf85f6352376e0b4a0e0141f24e098fa334b5015e DIST a2ps-4.15.6.tar.gz 3605392 BLAKE2B 64f79e26ef116836508c94f0e846f2d242fbb551e9324f339dcc2f8c8cedfad0a708bf10a74cb8e45dad14e1390f4adfb8763618b24794b9cdf77202ebfee33f SHA512 23d054a2e58c28460c5e23a1cf3f0f9c27faffc9a99781c42c11cc0693eea5bb8cfe090a97b9bae3d80cfae6b4d5b9a30dfd997a2d70be2d25988c714ad14b44 +DIST a2ps-4.15.7.tar.gz 3615522 BLAKE2B 34f4fb1a8de339b4d1a98e895f06c72788d94ce8402ce03801841be064a4dfbe791fb556009513297133e60267dc1a5dee7f52ab1d2337ace3f9015363ff7c9e SHA512 9ae73d29f9504cb6a9b85cd896286551fc7f65c0abba9a6e7ba1bd0a1f99b58e206b5a1dde42fa8eecc01a5ce32cdc16aafe4ca1a4eb5c5b01e48d816903269a diff --git a/app-text/a2ps/a2ps-4.15.7.ebuild b/app-text/a2ps/a2ps-4.15.7.ebuild new file mode 100644 index 000000000000..7b9d26723186 --- /dev/null +++ b/app-text/a2ps/a2ps-4.15.7.ebuild @@ -0,0 +1,95 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools elisp-common + +DESCRIPTION="Any to PostScript filter" +HOMEPAGE="https://www.gnu.org/software/a2ps/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="cjk emacs latex nls static-libs vanilla" + +# a2ps-lpr-wrapper needs bash +RDEPEND=" + app-text/ghostscript-gpl + app-text/libpaper:= + >=app-text/psutils-1.17 + app-text/wdiff + app-shells/bash:* + dev-libs/boehm-gc + >=sys-apps/coreutils-6.10-r1 + emacs? ( >=app-editors/emacs-23.1:* ) + latex? ( virtual/latex-base ) + nls? ( virtual/libintl ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + app-alternatives/yacc + >=dev-util/gperf-2.7.2 + nls? ( sys-devel/gettext ) +" + +SITEFILE="50${PN}-gentoo.el" + +QA_CONFIG_IMPL_DECL_SKIP=( + # gnulib FPs + MIN alignof static_assert +) + +src_prepare() { + default + + use vanilla || eapply "${FILESDIR}"/${PN}-4.15-stdout.patch + + eautoreconf +} + +src_configure() { + export LANG=C LC_ALL=C + + local myeconfargs=( + --cache-file="${S}"/config.cache + --enable-shared + $(use_enable static-libs static) + --sysconfdir="${EPREFIX}"/etc/a2ps + $(use_enable nls) + COM_netscape=no + COM_acroread=no + $(usev !latex COM_latex=no) + $(usev !emacs EMACS=no) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + emake \ + DESTDIR="${D}" \ + lispdir="${EPREFIX}${SITELISP}"/${PN} \ + install + + einstalldocs + + newdoc "${ED}"/usr/share/a2ps/README README.a2ps + newdoc "${ED}"/usr/share/a2ps/ppd/README README.a2ps.ppd + newdoc "${ED}"/usr/share/ogonkify/README README.ogonkify + + rm -f "${ED}"/usr/share/{a2ps,a2ps/ppd,ogonkify}/README || die + + find "${ED}" -name '*.la' -delete || die + + use emacs && elisp-site-file-install "${FILESDIR}"/${SITEFILE} +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +}
