blob: 8ff24d00e50ed1642777afb5655315b6902f78b4 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/epstool/epstool-3.08-r1.ebuild,v 1.2 2013/09/08 09:08:54 ago Exp $
EAPI="5"
inherit eutils toolchain-funcs
DESCRIPTION="Creates or extracts preview images in EPS files, fixes bounding boxes,converts to bitmaps."
HOMEPAGE="http://www.cs.wisc.edu/~ghost/gsview/epstool.htm"
SRC_URI="ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/ghostgum/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
DEPEND="app-text/ghostscript-gpl"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/gcc43.patch"
sed -i \
-e '/^CC/s/=/?=/' \
-e '/^CLINK/s/gcc/$(CC)/' \
src/unixcom.mak || die 'sed on src/unixcom.mak failed'
tc-export CC
epatch_user
}
src_compile() {
emake epstool
}
src_install() {
dobin bin/epstool
doman doc/epstool.1
dohtml doc/epstool.htm doc/gsview.css
}
|