forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sketch-0.3.7.ebuild
43 lines (35 loc) · 999 Bytes
/
sketch-0.3.7.ebuild
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit eutils toolchain-funcs
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="~amd64 ~ppc64 ~x86"
IUSE="doc examples"
DEPEND="dev-lang/perl"
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s:\$(CC):\$(CC) \$(LDFLAGS):" makefile
}
src_compile() {
emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" || die "emake failed"
}
src_install() {
dobin sketch || die
edos2unix Doc/sketch.info
doinfo Doc/sketch.info || die
dohtml updates.htm || die
if use doc ; then
insinto /usr/share/doc/${PF}
doins Doc/sketch.pdf || die
dohtml Doc/sketch/* || die
fi
if use examples ; then
insinto /usr/share/doc/${PF}/examples
doins Data/* || die "Failed to install examples"
fi
}