1 |
# Copyright 1999-2012 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/net-misc/guacd/guacd-0.7.0.ebuild,v 1.1 2012/12/05 20:37:27 nativemad Exp $ |
4 |
|
5 |
EAPI=4 |
6 |
|
7 |
inherit eutils |
8 |
DESCRIPTION="This is the proxy-daemon used by www-apps/guacamole." |
9 |
|
10 |
HOMEPAGE="http://guacamole.sourceforge.net/" |
11 |
SRC_URI="mirror://sourceforge/guacamole/${P}.tar.gz" |
12 |
|
13 |
LICENSE="AGPL-3" |
14 |
|
15 |
SLOT="0" |
16 |
|
17 |
KEYWORDS="~x86" |
18 |
|
19 |
IUSE="" |
20 |
|
21 |
DEPEND="net-libs/libguac" |
22 |
RDEPEND="${DEPEND}" |
23 |
|
24 |
src_configure() { |
25 |
econf |
26 |
} |
27 |
|
28 |
src_compile() { |
29 |
emake || die |
30 |
} |
31 |
|
32 |
src_install() { |
33 |
emake DESTDIR="${D}" install || die |
34 |
|
35 |
doinitd "${S}"/init.d/guacd |
36 |
} |