diff options
Diffstat (limited to 'media-libs/hermes/hermes-1.3.2-r2.ebuild')
-rw-r--r-- | media-libs/hermes/hermes-1.3.2-r2.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/media-libs/hermes/hermes-1.3.2-r2.ebuild b/media-libs/hermes/hermes-1.3.2-r2.ebuild new file mode 100644 index 000000000000..85774471e101 --- /dev/null +++ b/media-libs/hermes/hermes-1.3.2-r2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Seemant Kulleen <seemant@rocketmail.com> +# $Header: /var/cvsroot/gentoo-x86/media-libs/hermes/hermes-1.3.2-r2.ebuild,v 1.1 2002/04/14 07:44:54 seemant Exp $ + +PN0=Hermes +S=${WORKDIR}/${PN0}-${PV} +DESCRIPTION="Library for fast colorspace conversion and other graphics routines" +SRC_URI="http://dark.x.dtu.dk/~mbn/clanlib/download/download-sphair/${PN0}-${PV}.tar.gz" +HOMEPAGE="http://hermes.terminal.at" + +DEPEND="sys-devel/libtool + sys-devel/automake + sys-devel/autoconf" + +src_compile() { + + aclocal || die + automake -a + autoconf || die + + ./configure \ + --prefix=/usr \ + || die + + sh ltconfig ltmain.sh || die + emake || die + +} + +src_install () { + + make \ + prefix=${D}/usr \ + install || die + + dodoc AUTHORS COPYING ChangeLog FAQ NEWS README TODO* + + dohtml docs/api/*.htm + docinto print + dodoc docs/api/*.ps + docinto txt + dodoc docs/api/*.txt + docinto sgml + dodoc docs/api/sgml/*.sgml +} |