forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-dotnet/libgdiplus: fix circular deps, remove mono need
Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
Showing
1 changed file
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
inherit eutils dotnet flag-o-matic | ||
|
||
DESCRIPTION="Library for using System.Drawing with mono" | ||
HOMEPAGE="http://www.mono-project.com" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" | ||
SRC_URI="http://download.mono-project.com/sources/${PN}/${P}.tar.bz2" | ||
|
||
IUSE="cairo" | ||
|
||
RDEPEND=">=dev-libs/glib-2.16:2 | ||
>=media-libs/freetype-2.3.7 | ||
>=media-libs/fontconfig-2.6 | ||
>=media-libs/libpng-1.4:0 | ||
x11-libs/libXrender | ||
x11-libs/libX11 | ||
x11-libs/libXt | ||
>=x11-libs/cairo-1.8.4[X] | ||
media-libs/libexif | ||
>=media-libs/giflib-4.2.3 | ||
virtual/jpeg:0 | ||
media-libs/tiff:0 | ||
!cairo? ( >=x11-libs/pango-1.20 )" | ||
DEPEND="${RDEPEND}" | ||
|
||
RESTRICT="test" | ||
|
||
PATCHES=("${FILESDIR}/${P}-gold.patch" | ||
"${FILESDIR}/${PN}-2.10.1-libpng15.patch" | ||
"${FILESDIR}/${PN}-2.10.9-giflib-quantizebuffer.patch") | ||
|
||
src_prepare() { | ||
base_src_prepare | ||
sed -i -e 's:ungif:gif:g' configure || die | ||
} | ||
|
||
src_configure() { | ||
append-flags -fno-strict-aliasing | ||
econf --disable-dependency-tracking \ | ||
--disable-static \ | ||
--with-cairo=system \ | ||
$(use !cairo && printf %s --with-pango) | ||
} | ||
|
||
src_compile() { | ||
emake "$@" | ||
} | ||
|
||
src_install () { | ||
emake -j1 DESTDIR="${D}" "$@" install #nowarn | ||
dotnet_multilib_comply | ||
local commondoc=( AUTHORS ChangeLog README TODO ) | ||
for docfile in "${commondoc[@]}" | ||
do | ||
[[ -e "${docfile}" ]] && dodoc "${docfile}" | ||
done | ||
if [[ "${DOCS[@]}" ]] | ||
then | ||
dodoc "${DOCS[@]}" | ||
fi | ||
prune_libtool_files | ||
} |