diff options
author | Marek Szuba <marecki@gentoo.org> | 2023-08-21 18:48:34 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2023-08-21 19:08:47 +0100 |
commit | f09adbe8d2a5fec4cceef1709735b2513a0b9e45 (patch) | |
tree | d2a7bdc0c8aaf75db874ea9b9a02ec8208104730 /app-text/pinfo | |
parent | app-misc/ola: drop 0.10.8 (diff) | |
download | gentoo-f09adbe8d2a5fec4cceef1709735b2513a0b9e45.tar.gz gentoo-f09adbe8d2a5fec4cceef1709735b2513a0b9e45.tar.bz2 gentoo-f09adbe8d2a5fec4cceef1709735b2513a0b9e45.zip |
app-text/pinfo: drop 99999
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'app-text/pinfo')
-rw-r--r-- | app-text/pinfo/pinfo-99999.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/app-text/pinfo/pinfo-99999.ebuild b/app-text/pinfo/pinfo-99999.ebuild deleted file mode 100644 index c4fdd276bdaf..000000000000 --- a/app-text/pinfo/pinfo-99999.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools flag-o-matic git-r3 - -DESCRIPTION="Hypertext info and man viewer based on (n)curses" -HOMEPAGE="https://github.com/baszoetekouw/pinfo" -EGIT_REPO_URI="https://github.com/baszoetekouw/pinfo.git" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="nls readline" - -RDEPEND=" - sys-libs/ncurses:0= - sys-libs/readline:0= - nls? ( virtual/libintl ) -" - -DEPEND=" - ${RDEPEND} - sys-apps/texinfo - sys-devel/bison - virtual/pkgconfig - nls? ( sys-devel/gettext ) -" -PATCHES=( - "${FILESDIR}"/${PN}-0.6.9-GROFF_NO_SGR.patch - "${FILESDIR}"/${PN}-0.6.9-lzma-xz.patch -) - -src_prepare() { - default - - sed -i -e 's| -Werror||g' configure.ac || die - - eautoreconf -} - -src_configure() { - # The following line can be dropped once https://github.com/baszoetekouw/pinfo/pull/35 - # is merged. - append-cflags -D_BSD_SOURCE -D_DEFAULT_SOURCE # sbrk() - - econf \ - $(use_with readline) \ - $(use_enable nls) -} - -src_install() { - emake DESTDIR="${D}" sysconfdir="${EPREFIX}/etc" install -} |