blob: f477754ae245cb8f2f34c68317c927a41c2763b2 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync-plugin-palm/libopensync-plugin-palm-0.19.ebuild,v 1.1 2006/10/25 16:21:34 peper Exp $
inherit autotools
DESCRIPTION="OpenSync Palm Plugin"
HOMEPAGE="http://www.opensync.org/"
SRC_URI="http://dev.gentooexperimental.org/~peper/distfiles/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="LGPL-2.1"
IUSE=""
DEPEND=">=app-pda/libopensync-0.19
>=app-pda/pilot-link-0.11.8
dev-libs/libxml2"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
# Patch fixing includedir for pisock
epatch "${FILESDIR}/${P}-include_pisock.patch"
eautoreconf
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog COPYING NEWS README
}
|