summaryrefslogtreecommitdiff
blob: 07d7b4411fc21fb05c2a87a2655879cbd96bc6db (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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

inherit eutils

DESCRIPTION="XUL interface for HTML rendering in wx Toolkit"
HOMEPAGE="http://www.kirix.com/labs/wxwebconnect"
SRC_URI="http://downloads.kirix.com/labs/wxwebconnect/webconnect-1.0.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

DEPEND=""
RDEPEND="${DEPEND}"

S=${WORKDIR}/webconnect

src_prepare() {
	epatch "${FILESDIR}"/${P}-debundle.patch
}

src_compile() {
	cd ${S}/webconnect
	emake -j1|| die "emake failed"
}

src_install() {
	insinto /usr/$(get_libdir)
	doins webconnect/libwebconnect.a
	insinto /usr/include/WebConnect
	doins webconnect/*.h
}