diff options
author | Sam James <sam@gentoo.org> | 2022-12-21 21:51:46 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-21 22:25:16 +0000 |
commit | 7b9347a8f916f6bf165422bda938e784c2ee8af3 (patch) | |
tree | 89261dcbfc9d8f6251d1b0221c8ae7e92214d6d6 /dev-libs | |
parent | dev-libs/libmaa: drop 1.3.2 (diff) | |
download | gentoo-7b9347a8f916f6bf165422bda938e784c2ee8af3.tar.gz gentoo-7b9347a8f916f6bf165422bda938e784c2ee8af3.tar.bz2 gentoo-7b9347a8f916f6bf165422bda938e784c2ee8af3.zip |
dev-libs/librep: drop 0.92.7-r1
Bug: https://bugs.gentoo.org/886701
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/librep/librep-0.92.7-r1.ebuild | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/dev-libs/librep/librep-0.92.7-r1.ebuild b/dev-libs/librep/librep-0.92.7-r1.ebuild deleted file mode 100644 index fd71bdbfeaa3..000000000000 --- a/dev-libs/librep/librep-0.92.7-r1.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools elisp-common flag-o-matic - -DESCRIPTION="Shared library implementing a Lisp dialect" -HOMEPAGE="https://sawfish.fandom.com/" -SRC_URI="https://download.tuxfamily.org/librep/${PN}_${PV}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86" -IUSE="emacs gmp readline" - -RDEPEND=" - >=sys-libs/gdbm-1.8.0:= - virtual/libcrypt:= - emacs? ( >=app-editors/emacs-23.1:* ) - gmp? ( dev-libs/gmp:= ) - readline? ( sys-libs/readline:0= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - sys-apps/texinfo -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.92.0-disable-elisp.patch -) - -S="${WORKDIR}/${PN}_${PV}" - -src_prepare() { - # fix #570072 by restoring pre-GCC5 inline semantics - append-cflags -std=gnu89 - default - - # The configure script is missing from this version. - eautoreconf -} - -src_configure() { - econf \ - $(use_with gmp) \ - $(use_with readline) \ - --disable-static \ - --libexecdir=/usr/$(get_libdir) \ - --without-ffi -} - -src_compile() { - default - - if use emacs; then - elisp-compile rep-debugger.el || die "elisp-compile failed" - fi -} - -src_install() { - default - - find "${D}" -name '*.la' -delete || die - - find "${D}/usr/share/man" -name '*.gz' -exec gunzip {} \; || die - - dodoc doc/* - - if use emacs; then - elisp-install ${PN} rep-debugger.{el,elc} || die "elisp-install failed" - elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" \ - || die "elisp-site-file-install failed" - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} |