blob: dd40d4dc676a2aede4530b6e923826a4bb8ce29d (
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
|
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
inherit git-2 autotools
DESCRIPTION="fuse module for access to iphone and ipod touch without jailbreak"
HOMEPAGE="http://www.kamailio.org/w/"
EGIT_REPO_URI="git://git.sip-router.org/kamailio"
LICENSE="GPLv2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}"
src_unpack() {
git-2_src_unpack
die
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
}
|