diff options
author | Heather Cynede <cynede@gentoo.org> | 2016-02-24 17:07:14 +0400 |
---|---|---|
committer | Heather Cynede <cynede@gentoo.org> | 2016-02-24 17:07:14 +0400 |
commit | 0d0ae58ee0e742edef24822705442a1b1c22f000 (patch) | |
tree | 6a36c8ea89e6c82bfc9f166081c148296c626a7f /dev-dotnet | |
parent | www-client/chromium: x86 stable wrt bug #575434 (diff) | |
download | gentoo-0d0ae58ee0e742edef24822705442a1b1c22f000.tar.gz gentoo-0d0ae58ee0e742edef24822705442a1b1c22f000.tar.bz2 gentoo-0d0ae58ee0e742edef24822705442a1b1c22f000.zip |
dev-dotnet/libgdiplus: correct giflib dep
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-dotnet')
-rw-r--r-- | dev-dotnet/libgdiplus/libgdiplus-4.2-r2.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/dev-dotnet/libgdiplus/libgdiplus-4.2-r2.ebuild b/dev-dotnet/libgdiplus/libgdiplus-4.2-r2.ebuild new file mode 100644 index 000000000000..bb2df219221e --- /dev/null +++ b/dev-dotnet/libgdiplus/libgdiplus-4.2-r2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils dotnet + +DESCRIPTION="Library for using System.Drawing with mono" +HOMEPAGE="http://www.mono-project.com" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris" +SRC_URI="http://download.mono-project.com/sources/${PN}/${P}.tar.gz" + +IUSE="cairo" + +RDEPEND=">=dev-libs/glib-2.2.3: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-5.1.2 + virtual/jpeg:0 + media-libs/tiff:0 + !cairo? ( >=x11-libs/pango-1.20 )" +DEPEND="${RDEPEND}" + +src_configure() { + econf \ + --disable-dependency-tracking \ + --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[@]}" + prune_libtool_files +} |