commit: d12cb9f6f53a9668bfcf7090d7cf9335160a5c51 Author: Filip Kobierski <fkobi <AT> pm <DOT> me> AuthorDate: Sat Mar 1 16:47:51 2025 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Fri May 9 07:06:55 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d12cb9f6
net-irc/sic: add 1.3 with simplified ebuild - adjust emake variables (thanks Sam!) Closes: https://bugs.gentoo.org/923560 Signed-off-by: Filip Kobierski <fkobi <AT> pm.me> Closes: https://github.com/gentoo/gentoo/pull/40834 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> net-irc/sic/Manifest | 1 + net-irc/sic/sic-1.3.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/net-irc/sic/Manifest b/net-irc/sic/Manifest index a6255b64db0d..d3714d13cea4 100644 --- a/net-irc/sic/Manifest +++ b/net-irc/sic/Manifest @@ -1 +1,2 @@ DIST sic-1.2.tar.gz 4563 BLAKE2B 63c70aa6e6e9da4c7c0a282ca1a407b9b9c4d02e764490a8b7ff1967a848ffe78c52700e6e895252c0807212eb80e0baeca5b338ead8da4ea9a0946d81b8c5b8 SHA512 5659ed9d8a5986dda90dbe1155c27a5fd0ab4b1fcad2c1a20997c530bf03864e6c08bdeffc025c728629ab11872af6a1250761160b91f148dc37d77a49046dc9 +DIST sic-1.3.tar.gz 5740 BLAKE2B 40b4e11982f9bca2ad8904c1c17e9a302dde90f27bf486541db1746afa6f88b8947b8a61406708b014231a197e35bdd5d672f2335816fd3b658f1fc758a1efc0 SHA512 0a5129dc9276c0a2c778d276115e96b5f11d7d6abce8cf2a5256a8b765a058c7a37bc6e86f90859015eb6b5b153e1c14fc6bbea6466f8ce0457edb7f2b89cbcb diff --git a/net-irc/sic/sic-1.3.ebuild b/net-irc/sic/sic-1.3.ebuild new file mode 100644 index 000000000000..47318d6c1860 --- /dev/null +++ b/net-irc/sic/sic-1.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="An extremely simple IRC client" +HOMEPAGE="https://tools.suckless.org/sic/" +SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +DOCS=( README ) + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +}
