gentoo-ebuilds/media-gfx/xfig/xfig-3.2.9a-r1.ebuild
Fabian Groffen 2d25fad95c
*/*: drop *-linux keywords
Bug: https://bugs.gentoo.org/473598
Bug: https://bugs.gentoo.org/720224
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
2025-12-19 10:51:55 +01:00

57 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/"
SRC_URI="
https://downloads.sourceforge.net/project/mcj/${P}.tar.xz
https://www-user.tu-chemnitz.de/~hamari/distfiles/xfig-3.2.9a-modern-c.patch
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 ~riscv ~sparc x86 ~x64-macos ~x64-solaris"
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"
"${DISTDIR}/${P}-modern-c.patch"
"${FILESDIR}/${PN}-3.2.9a-variables.patch"
)
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
}