summaryrefslogtreecommitdiff
path: root/net-irc/sic
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-03-23 04:19:44 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-03-23 04:19:44 +0000
commitc5283d322accc6097afec74eab24550829788bab (patch)
treeb99ce668128d82a026eaa31461643f9173f9b77b /net-irc/sic
parent5510d9d7d1c93c2ea71a2bd6f0666168808d5dd6 (diff)
gentoo resync : 23.03.2018
Diffstat (limited to 'net-irc/sic')
-rw-r--r--net-irc/sic/Manifest3
-rw-r--r--net-irc/sic/sic-1.2-r1.ebuild4
-rw-r--r--net-irc/sic/sic-1.2.ebuild35
3 files changed, 3 insertions, 39 deletions
diff --git a/net-irc/sic/Manifest b/net-irc/sic/Manifest
index 5b98d43d036a..5a8047c882e4 100644
--- a/net-irc/sic/Manifest
+++ b/net-irc/sic/Manifest
@@ -1,4 +1,3 @@
DIST sic-1.2.tar.gz 4563 BLAKE2B 63c70aa6e6e9da4c7c0a282ca1a407b9b9c4d02e764490a8b7ff1967a848ffe78c52700e6e895252c0807212eb80e0baeca5b338ead8da4ea9a0946d81b8c5b8 SHA512 5659ed9d8a5986dda90dbe1155c27a5fd0ab4b1fcad2c1a20997c530bf03864e6c08bdeffc025c728629ab11872af6a1250761160b91f148dc37d77a49046dc9
-EBUILD sic-1.2-r1.ebuild 652 BLAKE2B de2d6f276302938f27f8d9ce47df788edd364c95adc1f61a16564641f31d25667293a914daa8b115762017f80ae6925f6443281907544c692f03e9a1105b1bd4 SHA512 38f27581bd4c2653197956c1489aeaa9d715bbaecf91bd37acf7b922de08ba763ca5fb075bc440e3c0acaa3d5224fb06d16f71aadc199c15b6c1a75426d5f76e
-EBUILD sic-1.2.ebuild 712 BLAKE2B 1841b11e55830e558d9b2d28dd3c08b002f84eef64b0e5a45fa7f5da82d6d2be155a7805c854a7b43a6077ef646145d8b7d3a62d2b26b1154f1f3ca3487475ba SHA512 98ee2e764e6e74a3d87306b29a2ec71e22bc7ed4d603072be4ff52ddf2448c0ac995c6b3d64dae944b138efa22b8a6d9c73288a8c2356887ea4a17b4bc91f225
+EBUILD sic-1.2-r1.ebuild 650 BLAKE2B 63536f28aee51558a80be521d215b9b4db7f70e2b2dbaee4bb04afc0f0f77180bc3608dc23de73f2768bf146c82a701d9756cb105be3419e76ec6455fa935a90 SHA512 2a64e1872772be8fd6a02664f95ffebfdfcfa1271fecfec8fa8953616fc599a073f9b6188d6598052b81ff08d7095a5be79ef7405ea74f685895e49a4ced798a
MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84
diff --git a/net-irc/sic/sic-1.2-r1.ebuild b/net-irc/sic/sic-1.2-r1.ebuild
index 2056ef616516..89b916c4ce2b 100644
--- a/net-irc/sic/sic-1.2-r1.ebuild
+++ b/net-irc/sic/sic-1.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+KEYWORDS="amd64 x86 ~x86-fbsd"
src_prepare() {
default
diff --git a/net-irc/sic/sic-1.2.ebuild b/net-irc/sic/sic-1.2.ebuild
deleted file mode 100644
index 67faf284d4f9..000000000000
--- a/net-irc/sic/sic-1.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit toolchain-funcs
-
-DESCRIPTION="An extremly 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 x86 ~x86-fbsd"
-IUSE=""
-
-src_prepare() {
- sed -i \
- -e "s/CFLAGS =/CFLAGS +=/g" \
- -e "s/-Os//" \
- -e "s/LDFLAGS = -s/LDFLAGS +=/" \
- -e "/^LIBS =/d" \
- -e "s/= cc/= $(tc-getCC)/g" \
- config.mk || die "sed failed"
-
- # enable verbose build
- sed -i 's/@${CC}/${CC}/' Makefile || die
-}
-
-src_compile() {
- emake CC="$(tc-getCC)"
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install
-}