33 lines
806 B
Bash
33 lines
806 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/giblib/giblib-1.2.4.ebuild,v 1.11 2011/04/09 14:43:49 klausman Exp $
|
|
|
|
EAPI=2
|
|
inherit toolchain-funcs eutils
|
|
|
|
DESCRIPTION="Giblib, graphics library"
|
|
HOMEPAGE="http://www.linuxbrit.co.uk/giblib/"
|
|
SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.tar.gz"
|
|
|
|
LICENSE="|| ( as-is BSD )"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ppc ppc64 sh sparc x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=media-libs/imlib2-1.0.3[X]
|
|
x11-libs/libX11
|
|
x11-libs/libXext
|
|
>=media-libs/freetype-2.0"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
epunt_cxx
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
rm -r "${D}"/usr/doc
|
|
dodoc README AUTHORS ChangeLog TODO
|
|
}
|