You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
930 B
45 lines
930 B
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
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
|
|
tc-export CC
|
|
|
|
epatch_user
|
|
|
|
# parallel make issue (bug #506978)
|
|
mkdir bin || die
|
|
mkdir epsobj || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake epstool
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin/epstool
|
|
doman doc/epstool.1
|
|
dohtml doc/epstool.htm doc/gsview.css
|
|
}
|