summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-04-11 18:24:38 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2024-04-11 18:24:38 +0300
commitbfb78107aecb58dbf7e295b1698ebaa864ee31fd (patch)
treed7fd7e1736ee0e3715c6adfa443a85bdc03ab52e
parentwww-misc/profile-sync-daemon: remove redundant EAPI6 ebuild (diff)
downloadgentoo-bfb78107aecb58dbf7e295b1698ebaa864ee31fd.tar.gz
gentoo-bfb78107aecb58dbf7e295b1698ebaa864ee31fd.tar.bz2
gentoo-bfb78107aecb58dbf7e295b1698ebaa864ee31fd.zip
x11-plugins/pidgin-led-notification: drop 0.1, EAPI6--
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r--x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild45
1 files changed, 0 insertions, 45 deletions
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
-}