summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-03-01 10:26:42 +0100
committerMichał Górny <mgorny@gentoo.org>2023-03-01 10:40:14 +0100
commit12e5fe3332e9287cf866ac21aa78c2812aa3a55a (patch)
tree9346de24484a4f96ae5979b76ab779a6e74bfbab
parentdev-cpp/json11: add github upstream metadata (diff)
downloadgentoo-12e5fe3332e9287cf866ac21aa78c2812aa3a55a.tar.gz
gentoo-12e5fe3332e9287cf866ac21aa78c2812aa3a55a.tar.bz2
gentoo-12e5fe3332e9287cf866ac21aa78c2812aa3a55a.zip
x11-libs/libtinynotify: Remove the live ebuild
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--x11-libs/libtinynotify/libtinynotify-9999.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/x11-libs/libtinynotify/libtinynotify-9999.ebuild b/x11-libs/libtinynotify/libtinynotify-9999.ebuild
deleted file mode 100644
index 17f57c6cdd00..000000000000
--- a/x11-libs/libtinynotify/libtinynotify-9999.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_REPO_URI="https://github.com/mgorny/${PN}.git"
-inherit autotools git-r3
-
-DESCRIPTION="A lightweight implementation of Desktop Notification Spec"
-HOMEPAGE="https://github.com/mgorny/libtinynotify/"
-SRC_URI=""
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug static-libs"
-
-RDEPEND="sys-apps/dbus:0="
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myconf=(
- $(use_enable debug)
- $(use_enable static-libs static)
- )
-
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete
-}