| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
#if LIVE
|
| 8 |
AUTOTOOLS_AUTORECONF=yes
|
| 9 |
EGIT_REPO_URI="http://bitbucket.org/mgorny/tinynotify-send.git"
|
| 10 |
|
| 11 |
inherit git-2
|
| 12 |
#endif
|
| 13 |
|
| 14 |
inherit autotools-utils
|
| 15 |
|
| 16 |
MY_PN=tinynotify-send
|
| 17 |
MY_P=${MY_PN}-${PV}
|
| 18 |
|
| 19 |
DESCRIPTION="A system-wide variant of tinynotify-send"
|
| 20 |
HOMEPAGE="https://bitbucket.org/mgorny/tinynotify-send/"
|
| 21 |
SRC_URI="mirror://bitbucket/mgorny/${MY_PN}/downloads/${MY_P}.tar.bz2"
|
| 22 |
|
| 23 |
LICENSE="BSD"
|
| 24 |
SLOT="0"
|
| 25 |
KEYWORDS="~amd64 ~x86"
|
| 26 |
IUSE=""
|
| 27 |
|
| 28 |
RDEPEND="x11-libs/libtinynotify
|
| 29 |
~x11-libs/libtinynotify-cli-${PV}
|
| 30 |
x11-libs/libtinynotify-systemwide"
|
| 31 |
DEPEND="${RDEPEND}
|
| 32 |
virtual/pkgconfig"
|
| 33 |
|
| 34 |
S=${WORKDIR}/${MY_P}
|
| 35 |
|
| 36 |
#if LIVE
|
| 37 |
KEYWORDS=
|
| 38 |
SRC_URI=
|
| 39 |
DEPEND="${DEPEND}
|
| 40 |
dev-util/gtk-doc"
|
| 41 |
#endif
|
| 42 |
|
| 43 |
src_configure() {
|
| 44 |
myeconfargs=(
|
| 45 |
--disable-library
|
| 46 |
--disable-regular
|
| 47 |
--enable-system-wide
|
| 48 |
)
|
| 49 |
|
| 50 |
autotools-utils_src_configure
|
| 51 |
}
|