aboutsummaryrefslogtreecommitdiff
blob: 6e3b927112a112af6f46d15a9ed3a400de216f51 (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

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"

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

src_compile() {
	cd src || die
	emake
}

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

	dohtml doc/*
}