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/libfpx/libfpx-1.3.1_p6.ebuild

45 lines
1008 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit eutils flag-o-matic libtool
DESCRIPTION="A library for manipulating FlashPIX images"
HOMEPAGE="http://www.i3a.org/"
SRC_URI="mirror://imagemagick/delegates/${P/_p/-}.tar.bz2"
LICENSE="Flashpix"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
IUSE="static-libs"
S=${WORKDIR}/${P/_p/-}
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.2.0.13-export-symbols.patch
eapply_user
# we're not windows, even though we don't define __unix by default
[[ ${CHOST} == *-darwin* ]] && append-flags -D__unix
elibtoolize
}
src_configure() {
append-ldflags -Wl,--no-undefined
econf \
$(use_enable static-libs static) \
LIBS="-lstdc++ -lm"
}
src_install() {
default
dodoc AUTHORS ChangeLog doc/*.txt
insinto /usr/share/doc/${PF}/pdf
doins doc/*.pdf
}