summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2018-07-09 18:21:01 +0200
committerJohannes Huber <johu@gentoo.org>2018-07-09 18:21:14 +0200
commit74230b9471320fa35e95f5b62eae6f9cc64a0917 (patch)
tree779e1b05416c4f5fe94a6d3aabb905f0ac7c6e54
parentmedia-libs/adplug: amd64 stable wrt bug #659668 (diff)
downloadgentoo-74230b9471320fa35e95f5b62eae6f9cc64a0917.tar.gz
gentoo-74230b9471320fa35e95f5b62eae6f9cc64a0917.tar.bz2
gentoo-74230b9471320fa35e95f5b62eae6f9cc64a0917.zip
x11-misc/dunst: Remove 1.1.0
Superseded by 1.3.2. Package-Manager: Portage-2.3.41, Repoman-2.3.9
-rw-r--r--x11-misc/dunst/Manifest1
-rw-r--r--x11-misc/dunst/dunst-1.1.0.ebuild67
2 files changed, 0 insertions, 68 deletions
diff --git a/x11-misc/dunst/Manifest b/x11-misc/dunst/Manifest
index d328eaac6f8b..29ccea4b22ea 100644
--- a/x11-misc/dunst/Manifest
+++ b/x11-misc/dunst/Manifest
@@ -1,2 +1 @@
-DIST dunst-1.1.0.tar.bz2 79032 BLAKE2B d0c0550a7bc2da5ba5f3fdfd04d06c03e70cf3bc4b69dc69071667a885a361fbb9564dc02d6a0530b85eea2df845b8b5f917ceef0dbe5159f968f20ef50762f6 SHA512 ba01a6b18da5199b3356342f5c22592f93f447389267810bbfc35decf1a67f89650d445d3c1dd6f3cc76a4f86f7165adc777b669444627e42d3e671d4f04a04b
DIST dunst-1.3.2.tar.gz 121575 BLAKE2B 97f0011ce960a7852dca5a2917e328de2cc1a052ad0b7c2f07e878e3b6eb5281e49a070a574885b9a66eb6dc30ac07fdfd6322b44cbb7dbc1edf8d193a68b538 SHA512 eb7bff16a19d8f60e2f0eec419a0ffb2f8822b5ec2ffbe535303a71cc7d4ef528e5dbf2fe5f8f2f6f5bfd1ad2d39eab79b68054af924e118c646e059b6929465
diff --git a/x11-misc/dunst/dunst-1.1.0.ebuild b/x11-misc/dunst/dunst-1.1.0.ebuild
deleted file mode 100644
index 1ce9d2c4edbd..000000000000
--- a/x11-misc/dunst/dunst-1.1.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit toolchain-funcs
-
-DESCRIPTION="customizable and lightweight notification-daemon"
-HOMEPAGE="http://www.knopwob.org/dunst/"
-SRC_URI="http://www.knopwob.org/public/dunst-release/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="dunstify"
-
-CDEPEND="
- dev-libs/glib:2
- dev-libs/libxdg-basedir
- sys-apps/dbus
- x11-libs/cairo[X,glib]
- x11-libs/gdk-pixbuf
- x11-libs/libXScrnSaver
- x11-libs/libXft
- x11-libs/libXinerama
- x11-libs/pango[X]
- dunstify? ( x11-libs/libnotify )
-"
-DEPEND="
- ${CDEPEND}
- dev-lang/perl
- virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}"
-
-src_prepare() {
- sed -i \
- -e '/^CFLAGS/ { s:-g::; s:-O.:: }' \
- -e '/^CPPFLAGS/ s:-D_BSD_SOURCE:-D_DEFAULT_SOURCE:' \
- config.mk || die
-
- sed -i \
- -e 's:registration_id > 0:(&):' \
- dbus.c || die
-
- sed -i \
- -e '/g_print.*iter->data/ s:iter->data:(char *)&:' \
- dunstify.c || die
-
- default
-}
-
-src_compile() {
- tc-export CC
- emake V=
-
- use dunstify && emake V= dunstify
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install
-
- if use dunstify; then
- dobin dunstify
- fi
-
- dodoc CHANGELOG
-}