diff options
author | Jeroen Roovers <jer@gentoo.org> | 2016-09-24 12:26:15 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2016-09-24 12:30:06 +0200 |
commit | 5e5dd6d1633f13449b0a4d1bc94558fdd8187614 (patch) | |
tree | 4ba868f945ca8034d8dd542f543aa69340bd66de /x11-misc/dunst/dunst-1.0.0.ebuild | |
parent | dev-vcs/git-annex: restore manpage installation (diff) | |
download | gentoo-5e5dd6d1633f13449b0a4d1bc94558fdd8187614.tar.gz gentoo-5e5dd6d1633f13449b0a4d1bc94558fdd8187614.tar.bz2 gentoo-5e5dd6d1633f13449b0a4d1bc94558fdd8187614.zip |
x11-misc/dunst: Old
Package-Manager: portage-2.3.1
Diffstat (limited to 'x11-misc/dunst/dunst-1.0.0.ebuild')
-rw-r--r-- | x11-misc/dunst/dunst-1.0.0.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/x11-misc/dunst/dunst-1.0.0.ebuild b/x11-misc/dunst/dunst-1.0.0.ebuild deleted file mode 100644 index 32aa742ab9b9..000000000000 --- a/x11-misc/dunst/dunst-1.0.0.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils - -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 ~x86" -IUSE="dunstify" - -CDEPEND=" - dev-libs/glib:2 - dev-libs/libxdg-basedir - sys-apps/dbus - x11-libs/libXScrnSaver - x11-libs/libXft - x11-libs/libXinerama - x11-libs/cairo[X,glib] - x11-libs/pango[X] - dunstify? ( x11-libs/libnotify ) -" - -DEPEND="${CDEPEND} - dev-lang/perl - virtual/pkgconfig" - -RDEPEND="${CDEPEND}" - -src_prepare() { - # Remove nasty CFLAGS which override user choice - sed -ie "/^CFLAGS/ { - s:-g:: - s:-O.:: - }" config.mk || die "sed failed" - - if ! use dunstify; then - # don't build dunstify: it pulls in deps but is not being installed - sed -ie "/^all:/ s:dunstify::" Makefile || die "sed failed" - fi - - epatch_user -} - -src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install - - if use dunstify; then - dobin dunstify - fi - - dodoc CHANGELOG -} |