blob: 4d37b93f36111c2f6860989316be3063f3b74b1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
DESCRIPTION="Library for General Graphics Interface"
HOMEPAGE="http://www.ggi-project.org"
SRC_URI="mirror://sourceforge/ggi/${P}.src.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE=""
RDEPEND=">=media-libs/libggi-2.2.2"
DEPEND="${RDEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc ChangeLog README doc/{TODO,*.txt,*.faq}
}
|