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.
gentoo-overlay/dev-dotnet/libgdiplus/libgdiplus-6.0.2-r1.ebuild

61 lines
1.4 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools eutils dotnet
DESCRIPTION="Library for using System.Drawing with Mono"
HOMEPAGE="https://www.mono-project.com"
SRC_URI="https://download.mono-project.com/sources/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="cairo"
#skip tests due https://bugs.gentoo.org/687784
RESTRICT="test"
RDEPEND="dev-libs/glib
media-libs/freetype
media-libs/fontconfig
>=media-libs/giflib-5.1.2
media-libs/libexif
media-libs/libpng:0=
media-libs/tiff
x11-libs/cairo[X]
x11-libs/libX11
x11-libs/libXrender
x11-libs/libXt
virtual/jpeg:0
!cairo? ( x11-libs/pango )"
DEPEND="${RDEPEND}"
src_prepare() {
default
# Don't default to pango when `--with-pango` is not given.
# Link against correct pango libraries. Bug #700280
sed -e 's/text_v=default/text_v=cairo/' \
-e 's/pangocairo/pangocairo pangoft2/' \
-i configure.ac || die
eautoreconf
}
src_configure() {
econf \
--disable-static \
$(usex cairo "" "--with-pango")
}
src_install() {
default
dotnet_multilib_comply
local commondoc=( AUTHORS ChangeLog README TODO )
for docfile in "${commondoc[@]}"; do
[[ -e "${docfile}" ]] && dodoc "${docfile}"
done
[[ "${DOCS[@]}" ]] && dodoc "${DOCS[@]}"
find "${ED}" -name '*.la' -delete || die
}