# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-gfx/grace/grace-5.1.14.ebuild,v 1.11 2005/03/18 14:17:27 seemant Exp $ inherit eutils DESCRIPTION="Library which manages recording and playback of undo/redo information" HOMEPAGE="ftp://plasma-gate.weizmann.ac.il/pub/libundo/" SRC_URI="ftp://plasma-gate.weizmann.ac.il/pub/libundo/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~amd64 ~ppc ~sparc" IUSE="" DEPEND=">=sys-apps/sed-4" src_unpack() { unpack ${A} cd ${S} } src_compile() { econf || die sed -i s%\$\(prefix\)/doc/libundo%${D}/\$\(prefix\)/share/doc/${PF}%g \ ${S}/doc/Makefile || die sed -i s%\$\{prefix\}/include%${D}/\$\{prefix\}/include%g \ ${S}/include/Makefile || die sed -i s%\$\{exec_prefix\}/lib%${D}/\$\{exec_prefix\}/lib%g \ ${S}/src/Makefile || die sed -i s%\$\{exec_prefix\}/bin%${D}/\$\{exec_prefix\}/bin%g \ ${S}/src/Makefile || die make || die } src_install() { make \ PREFIX=${D}/usr \ install || die dodoc AUTHORS COPYING ChangeLog NEWS README #dodir /usr/share/man/man1 #mv ${D}/usr/share/doc/${PF}/html/*.1 ${D}/usr/share/man/man1 #doman ${D}/usr/share/doc/${PF}/html/*.1 #rm -f ${D}/usr/share/doc/${PF}/html/*.1 #dosym /usr/share/doc/${PF}/examples /usr/share/grace/examples }