# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Man pages for OpenGL" HOMEPAGE="http://www.opengl.org/documentation/specs/" SRC_URI="ftp://ftp.sgi.com/opengl/doc/mangl.tar.Z \ ftp://ftp.sgi.com/opengl/doc/manglu.tar.Z \ ftp://ftp.sgi.com/opengl/doc/manglx.tar.Z" S="${WORKDIR}/release/xc/doc/man/GL" LICENSE="as-is" SLOT="0" KEYWORDS="~ppc ~x86" IUSE="" DEPEND="x11-misc/imake x11-misc/xorg-cf-files" RDEPEND="" src_compile() { for x in ${S}/*; do cd ${x} xmkmf || die "xmkmf failed" make || die "make failed" done } src_install() { for x in ${S}/*; do cd ${x} make DESTDIR="${D}" install || die "make install failed" done dohtml -r ${WORKDIR}/release/xc/doc/hardcopy/GL/html/* }