blob: d1970bac4ea0d0f26b614fef00cc77a1de97da18 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/transfig/transfig-3.2.5.ebuild,v 1.9 2007/07/22 07:25:51 pva Exp $
inherit toolchain-funcs eutils flag-o-matic
MY_P=${PN}.${PV}
DESCRIPTION="A set of tools for creating TeX documents with graphics which can be printed in a wide variety of environments"
SRC_URI="http://xfig.org/software/xfig/${PV}/${MY_P}.tar.gz"
HOMEPAGE="http://www.xfig.org"
IUSE=""
SLOT="0"
LICENSE="BSD"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
RDEPEND="x11-libs/libXpm
>=media-libs/jpeg-6
media-libs/libpng"
DEPEND="${RDEPEND}
x11-misc/imake
app-text/rman"
S="${WORKDIR}"/${MY_P}
sed_Imakefile() {
# see fig2dev/Imakefile for details
vars2subs="BINDIR=/usr/bin
MANDIR=/usr/share/man/man\$\(MANSUFFIX\)
XFIGLIBDIR=/usr/$(get_libdir)/xfig
USEINLINE=-DUSE_INLINE
RGB=/usr/share/X11/rgb.txt
FIG2DEV_LIBDIR=/usr/$(get_libdir)/fig2dev"
for variable in ${vars2subs} ; do
varname=${variable%%=*}
varval=${variable##*=}
sed -i "s:^\(XCOMM\)*[[:space:]]*${varname}[[:space:]]*=.*$:${varname} = ${varval}:" "$@"
done
}
src_compile() {
sed_Imakefile fig2dev/Imakefile fig2dev/dev/Imakefile
# without append transfig compiles with warining
# incompatible implicit declaration of built-in function ‘strlen’
# but are we really SVR4?
#append-flags -DSVR4
xmkmf || die "xmkmf failed"
make Makefiles || die "make Makefiles failed"
emake CC="$(tc-getCC)" LOCAL_LDFLAGS="${LDFLAGS}" CDEBUGFLAGS="${CFLAGS}" \
USRLIBDIR=/usr/$(get_libdir) || die "emake failed"
}
src_install() {
make DESTDIR="${D}" \
${transfig_conf} install install.man || die
#Install docs
dodoc README CHANGES LATEX.AND.XFIG NOTES
}
|