mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 16:38:01 +00:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
66 lines
1.3 KiB
Bash
66 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit optfeature xdg
|
|
|
|
DESCRIPTION="A menu-driven tool to draw and manipulate objects interactively in an X window"
|
|
HOMEPAGE="https://mcj.sourceforge.net/"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit autotools git-r3
|
|
EGIT_REPO_URI="https://git.code.sf.net/p/mcj/xfig"
|
|
else
|
|
SRC_URI="https://downloads.sourceforge.net/project/mcj/${P}.tar.xz"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos ~x64-solaris"
|
|
fi
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
|
|
COMMON_DEPEND="
|
|
app-text/ghostscript-gpl:=
|
|
>=media-gfx/fig2dev-${PV}
|
|
media-libs/libjpeg-turbo:=
|
|
media-libs/libpng:=
|
|
media-libs/tiff:=
|
|
x11-libs/libX11
|
|
x11-libs/libXaw3d[unicode(+)]
|
|
x11-libs/libXft
|
|
x11-libs/libXpm
|
|
x11-libs/libXt
|
|
"
|
|
DEPEND="${COMMON_DEPEND}
|
|
x11-base/xorg-proto
|
|
"
|
|
RDEPEND="${COMMON_DEPEND}
|
|
media-fonts/font-misc-misc
|
|
media-fonts/urw-fonts
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-3.2.6a-solaris.patch"
|
|
"${FILESDIR}/${PN}-3.2.9-app-defaults.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
eautoreconf
|
|
fi
|
|
}
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
--htmldir="${EPREFIX}/usr/share/doc/${PF}" # it expects docdir...
|
|
)
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_pkg_postinst
|
|
|
|
optfeature "GIF support" media-libs/netpbm virtual/imagemagick-tools
|
|
}
|