aboutsummaryrefslogtreecommitdiff
blob: 321fdd7db27368ed941fd084f85121452a7b9e05 (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

inherit eutils

DESCRIPTION="The purpose of this library is to simplify the creation of computer graphics software"
HOMEPAGE="http://mgarland.org/software/libgfx.html"
SRC_URI="http://mgarland.org/dist/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

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

src_prepare() {
	epatch "${FILESDIR}"/${PV}-gcc4.3.patch
}

src_compile() {
	cd src
	emake || die
}

src_install() {
	dolib.a src/*.a ||die
	insinto /usr/include/
	doins include/gfx/gfx.h || die

	dohtml doc/* || die
}