x11-misc/dunst: Remove 1.1.0

Superseded by 1.3.2.

Package-Manager: Portage-2.3.41, Repoman-2.3.9
This commit is contained in:
Johannes Huber
2018-07-09 18:21:01 +02:00
parent 3501b675a4
commit 74230b9471
2 changed files with 0 additions and 68 deletions

View File

@@ -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

View File

@@ -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
}