blob: 01f6735a872eb4733382b4379c4ff2ce34184b93 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/tsemgr/tsemgr-0.08.ebuild,v 1.3 2007/12/26 16:28:07 cla Exp $
inherit eutils autotools
DESCRIPTION="Utility for Ericsson Mobile Phones"
HOMEPAGE="http://sourceforge.net/projects/tsemgr/"
SRC_URI="mirror://sourceforge/tsemgr/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE=""
DEPEND="=x11-libs/gtk+-1*
dev-libs/openobex
dev-libs/libezV24"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-build.patch
eautoreconf
}
src_install(){
emake DESTDIR="${D}" install || die "Installation failed."
dodoc README NEWS TODO AUTHORS
}
|