| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/sw-notify-send-1.2.1.ebuild,v 1.1 2012/01/03 06:53:27 mgorny Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
inherit autotools-utils
|
| 8 |
|
| 9 |
MY_PN=tinynotify-send
|
| 10 |
MY_P=${MY_PN}-${PV}
|
| 11 |
|
| 12 |
DESCRIPTION="A system-wide variant of tinynotify-send"
|
| 13 |
HOMEPAGE="https://github.com/mgorny/tinynotify-send/"
|
| 14 |
SRC_URI="mirror://github/mgorny/${MY_PN}/${MY_P}.tar.bz2"
|
| 15 |
|
| 16 |
LICENSE="BSD"
|
| 17 |
SLOT="0"
|
| 18 |
KEYWORDS="~amd64 ~x86"
|
| 19 |
IUSE=""
|
| 20 |
|
| 21 |
RDEPEND="x11-libs/libtinynotify
|
| 22 |
~x11-libs/libtinynotify-cli-${PV}
|
| 23 |
x11-libs/libtinynotify-systemwide"
|
| 24 |
DEPEND="${RDEPEND}
|
| 25 |
virtual/pkgconfig"
|
| 26 |
|
| 27 |
DOCS=( README )
|
| 28 |
S=${WORKDIR}/${MY_P}
|
| 29 |
|
| 30 |
src_configure() {
|
| 31 |
myeconfargs=(
|
| 32 |
--disable-library
|
| 33 |
--disable-regular
|
| 34 |
--enable-system-wide
|
| 35 |
)
|
| 36 |
|
| 37 |
autotools-utils_src_configure
|
| 38 |
}
|