blob: 69103e2a6772a6a0d40bbb9f5fbf21d2ac09f5c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
AUTOTOOLS_AUTORECONF=1
inherit autotools-utils
DESCRIPTION="Growl Implementation For Linux"
HOMEPAGE="https://mattn.github.com/growl-for-linux/"
SRC_URI="mirror://github/mattn/growl-for-linux/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="libressl"
RDEPEND="dev-db/sqlite:3
dev-libs/dbus-glib
dev-libs/glib:2
dev-libs/libxml2
!libressl? ( dev-libs/openssl:0 )
libressl? ( dev-libs/libressl )
net-misc/curl
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
src_configure() {
local myeconfargs=(
LIBS=-lgthread-2.0
--disable-static
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
prune_libtool_files --modules
}
|