blob: 22f9e4f4460e0b53e9c8132f3bdb9652776a1db4 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/growl-for-linux/growl-for-linux-0.2.ebuild,v 1.1 2011/05/01 03:47:51 matsuu Exp $
EAPI=3
inherit multilib
DESCRIPTION="Growl Implementation For Linux"
HOMEPAGE="http://mattn.github.com/growl-for-linux/"
SRC_URI="https://github.com/downloads/mattn/growl-for-linux/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-db/sqlite:3
dev-libs/dbus-glib
dev-libs/glib:2
dev-libs/libxml2
dev-libs/openssl
net-misc/curl
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
econf --disable-static
}
src_install() {
emake DESTDIR="${D}" install || die
find "${ED}/usr/$(get_libdir)/growl-for-linux" -name "*.la" -exec rm {} + || die
dodoc AUTHORS ChangeLog NEWS README* TODO || die
}
|