Commit: bc8e1d05a2a9c12b9b7820bafccb71c815cf8326 Parent: 29cf8a635304599e0579d622f0447fb82c79ac4b Author: Randy Palamar Date: Thu, 2 Jan 2025 07:27:33 -0700 drop app-misc/scroll Diffstat:
D | app-misc/scroll/scroll-9999.ebuild | | | 33 | --------------------------------- |
1 file changed, 0 insertions(+), 33 deletions(-)
diff --git a/app-misc/scroll/scroll-9999.ebuild b/app-misc/scroll/scroll-9999.ebuild @@ -1,33 +0,0 @@ -EAPI=7 -inherit git-r3 savedconfig - -DESCRIPTION="A terminal emulator scroll back buffer" -HOMEPAGE="https://tools.suckless.org/scroll/" -EGIT_REPO_URI="https://git.suckless.org/scroll" - -LICENSE="ISC" -SLOT="0" -IUSE="savedconfig +static" - -src_prepare() { - default - - sed -e '/^CFLAGS/{s:=:+=:}' \ - -e '/^LDFLAGS/{s:=:+=:}' \ - -e '/^CFLAGS/{s:-Os::}' \ - -e '/^LDFLAGS/{s:-s::}' \ - < config.mk > config.mk.new || die - mv config.mk.new config.mk - - if use static; then - export LDFLAGS="${LDFLAGS} -s -static" - fi - - restore_config config.h -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}${LOCAL_PREFIX}" install - - save_config config.h -}