29 lines
665 B
Bash
29 lines
665 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/x11-misc/dunst/dunst-0.5.0.ebuild,v 1.1 2013/02/22 14:12:34 wired Exp $
|
|
|
|
EAPI=5
|
|
|
|
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=""
|
|
|
|
DEPEND="
|
|
dev-libs/libxdg-basedir
|
|
sys-apps/dbus
|
|
x11-libs/libXScrnSaver
|
|
x11-libs/libXft
|
|
x11-libs/libXinerama
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" PREFIX="/usr" install
|
|
|
|
dodoc CHANGELOG
|
|
}
|