blob: 1797d441c8724569eb33948df6fbaa0e4d9440b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="Produces drawings of two- or three-dimensional solid objects and scenes for TeX"
HOMEPAGE="http://www.frontiernet.net/~eugene.ressler/"
SRC_URI="http://www.frontiernet.net/~eugene.ressler/${P}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
DEPEND="dev-lang/perl"
RDEPEND=""
src_install() {
dobin sketch || die
edos2unix Doc/sketch.info
doinfo Doc/sketch.info || die
if use doc ; then
dodoc Doc/sketch.pdf || die
dohtml Doc/sketch/* || die
fi
}
|