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/media-libs/libwmf/libwmf-0.2.8.4-r4.ebuild

94 lines
2.4 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libwmf/libwmf-0.2.8.4-r4.ebuild,v 1.13 2012/05/12 06:59:58 pacho Exp $
EAPI=4
inherit eutils autotools
#The configure script finds the 5.50 ghostscript Fontmap file while run.
#This will probably work, especially since the real one (6.50) in this case
#is empty. However beware in case there is any trouble
DESCRIPTION="library for converting WMF files"
HOMEPAGE="http://wvware.sourceforge.net/"
SRC_URI="mirror://sourceforge/wvware/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
IUSE="X debug doc expat xml"
RDEPEND="app-text/ghostscript-gpl
media-fonts/urw-fonts
>=media-libs/freetype-2.0.1
>=media-libs/libpng-1.4
sys-libs/zlib
x11-libs/gdk-pixbuf:2[X?]
virtual/jpeg
xml? (
expat? ( dev-libs/expat )
!expat? ( dev-libs/libxml2 )
)
X? (
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
)
"
DEPEND="${RDEPEND}
virtual/pkgconfig
X? (
x11-libs/libXt
x11-libs/libXpm
)"
# plotutils are not really supported yet, so looks like that's it
REQUIRED_USE="expat? ( xml )"
DOCS=( README AUTHORS CREDITS ChangeLog NEWS TODO )
src_prepare() {
if ! use doc ; then
sed -e 's:doc::' -i Makefile.am || die
fi
epatch \
"${FILESDIR}"/${P}-intoverflow.patch \
"${FILESDIR}"/${P}-build.patch \
"${FILESDIR}"/${P}-pngfix.patch \
"${FILESDIR}"/${P}-libpng-1.5.patch \
"${FILESDIR}"/${P}-use-system-fonts.patch \
"${FILESDIR}"/${P}-gdk-pixbuf.patch
eautoreconf
}
src_configure() {
local myconf
# NOTE: The gd that is included is gd-2.0.0. Even with --with-sys-gd, that gd is built
# and included in libwmf. Since nothing in-tree seems to use media-libs/libwmf[gd],
# we're explicitly disabling gd use w.r.t. bug 268161
if use expat; then
myconf+=" --without-libxml2"
else
myconf+=$(use_with xml libxml2)
fi
econf \
--disable-static \
$(use_enable debug) \
$(use_with X x) \
$(use_with expat) \
${myconf} \
--disable-gd \
--with-sys-gd \
--with-gsfontdir="${EPREFIX}"/usr/share/ghostscript/fonts \
--with-fontdir="${EPREFIX}"/usr/share/fonts/urw-fonts/ \
--with-docdir="${EPREFIX}"/usr/share/doc/${PF}
}
src_install() {
MAKEOPTS+=" -j1" default
find "${D}" -name '*.la' -exec rm -f '{}' + || die
}