blob: d68fd060b6155f8870042e470b929c3f1a78960b (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="A menu-driven tool to draw and manipulate objects interactively in an X window"
HOMEPAGE="http://mcj.sourceforge.net/"
SRC_URI="mirror://sourceforge/mcj/${PN}-full-${PV}.tar.xz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE="jpeg nls postscript"
RDEPEND="
x11-libs/libXaw
x11-libs/libXaw3d
x11-libs/libXi
x11-libs/libXt
media-libs/libpng:0=
media-fonts/font-misc-misc
media-fonts/urw-fonts
>=media-gfx/transfig-3.2.5-r1
media-libs/netpbm
jpeg? ( virtual/jpeg:0= )
nls? ( x11-libs/libXaw3d[unicode] )
postscript? ( app-text/ghostscript-gpl )
"
DEPEND="${RDEPEND}
x11-base/xorg-proto
"
PATCHES=(
"${FILESDIR}/${PN}-3.2.6a-urwfonts.patch"
"${FILESDIR}/${PN}-3.2.6a-solaris.patch"
"${FILESDIR}/${PN}-3.2.6a-app-defaults.patch"
)
src_configure() {
econf \
$(use_enable nls i18n) \
$(use_enable jpeg) \
$(use_with postscript gs) \
--htmldir="${EPREFIX}/usr/share/doc/${PF}" # it expects docdir...
}
|