summaryrefslogtreecommitdiff
path: root/x11-plugins
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-04-11 18:33:04 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-04-11 18:33:04 +0100
commit1f43daba2fbe6f53e67c63944941dc645657c5b3 (patch)
tree69847026d79bd01039e851e5d5b4933615e29f51 /x11-plugins
parent95c20b170b50a028890f00e7e9c338427d92279f (diff)
gentoo auto-resync : 11:04:2024 - 18:33:04
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/Manifest.gzbin26770 -> 26765 bytes
-rw-r--r--x11-plugins/pidgin-led-notification/Manifest1
-rw-r--r--x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild45
3 files changed, 0 insertions, 46 deletions
diff --git a/x11-plugins/Manifest.gz b/x11-plugins/Manifest.gz
index f9bbc1adc631..90ea7505fad1 100644
--- a/x11-plugins/Manifest.gz
+++ b/x11-plugins/Manifest.gz
Binary files differ
diff --git a/x11-plugins/pidgin-led-notification/Manifest b/x11-plugins/pidgin-led-notification/Manifest
index aa6f4f4d1ad2..41e51e55f2f0 100644
--- a/x11-plugins/pidgin-led-notification/Manifest
+++ b/x11-plugins/pidgin-led-notification/Manifest
@@ -1,5 +1,4 @@
AUX pidgin-led-notification-0.1-hardware.patch 1217 BLAKE2B f690121631b48b160b965b4aeafb447d98ef205b5984eaf3e45b711560b4d8c0e84400a4b3e43b92bd895530175b60b69dd1fb10e93fa531fc68c5cd97df2b63 SHA512 ce90c57c216f0811256a562820f346fc1ee900f5c08696daf4aae44410578ca3dd039101378594aeae258b38145003e7ec21dadce5c5a829a46b2f4b2e917868
DIST led-notification-0.1.tar.bz2 8848 BLAKE2B e609c61105a8ef00244be5f21fec6c55cadde3b79c22bf6c42886973089aa88ae4149270d5f71a4940025179f950c92aebac92e2dd20f687042b312d304f1b4b SHA512 40773a14c42e3c723d6cb693288378184b291df106810de99d7887c3ef8e938633498326419febb17d80e0aa4fb4e4cf7ced16ce5186f30df1ee84b38c0f6ed2
EBUILD pidgin-led-notification-0.1-r1.ebuild 964 BLAKE2B b23e5ee2a3d969e472a81042414bf6587be6294b08c66c8570cbcf949dc223836b24d7f1f5a4a2ded4e748851469c59740a273ab65b6bdd545868ffe30928e81 SHA512 ec908233b42935c8d2817f44f158e5662f90fbd303ba822c71556768b1233cd016ad7a64c684e0dfec95985f1192c3c58fe4552b2f43b136a69badf6bd75829e
-EBUILD pidgin-led-notification-0.1.ebuild 957 BLAKE2B 92be872b7eba6487be4b2d6595af64b3d44461082dffd6af7830d427ddd266bbc02791e17745a9c0bb206982b9e861b4dda7f57eb79c9c7f37a20ad703c51a87 SHA512 e9e7ff43c05f39c8680d43dbea1fc10af736890e80dcb0a9efa977e8ea3f64564bac305c0dab4713c1633358a668e4988d2abf0758a0cb56991f1db68a43417d
MISC metadata.xml 253 BLAKE2B 48176bf4d3261fa1fa73f54f89eb55371dae1f30f8b6fce3ca78b404418583f11c35e1978342d406e1918f737bb8e971778a780d4195f4a1936f866a23cd8423 SHA512 26103b425624e485d98f014bc88d2574fad61a638f750ff21507690509c78529885f72d410975d4f3586b11192d86d8b6457a86330e39d64312c24ce58aea7c9
diff --git a/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild b/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild
deleted file mode 100644
index 00d21c5669c0..000000000000
--- a/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-MY_PN=${PN/pidgin-/}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Pidgin plugin to notify by writing user defined strings to (led control) files"
-HOMEPAGE="https://sites.google.com/site/simohmattila/led-notification"
-SRC_URI="https://sites.google.com/site/simohmattila/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~riscv ~x86"
-IUSE=""
-
-RDEPEND="
- net-im/pidgin[gtk]
- x11-libs/gtk+:2"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=( "${FILESDIR}"/${P}-hardware.patch )
-
-src_compile() {
- $(tc-getCC) \
- ${CFLAGS} -fPIC \
- ${CPPFLAGS} \
- ${LDFLAGS} \
- $($(tc-getPKG_CONFIG) --cflags gtk+-2.0 pidgin) \
- -shared ${MY_PN}.c -o ${MY_PN}.so \
- $($(tc-getPKG_CONFIG) --libs gtk+-2.0 pidgin) || die
-}
-
-src_install() {
- exeinto /usr/$(get_libdir)/pidgin
- doexe ${MY_PN}.so
-
- einstalldocs
-}