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.
media-libs/giflib: Bump to version 5.1.2
Unleash to ~arch. Package-Manager: portage-2.2.26 Signed-off-by: Lars Wendler <[email protected]>
- Loading branch information
Lars Wendler
committed
Jan 11, 2016
1 parent
0b6e39b
commit c3f8638
Showing
2 changed files
with
50 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
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,49 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit eutils libtool autotools-multilib | ||
|
||
DESCRIPTION="Library to handle, display and manipulate GIF images" | ||
HOMEPAGE="http://sourceforge.net/projects/giflib/" | ||
SRC_URI="mirror://sourceforge/giflib/${P}.tar.bz2" | ||
|
||
LICENSE="MIT" | ||
SLOT="0/7" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" | ||
IUSE="static-libs" | ||
|
||
RDEPEND=" | ||
abi_x86_32? ( | ||
!<=app-emulation/emul-linux-x86-baselibs-20140406-r1 | ||
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32] | ||
)" | ||
DEPEND="${RDEPEND}" | ||
|
||
src_prepare() { | ||
elibtoolize | ||
} | ||
|
||
src_configure() { | ||
local myeconfargs=( | ||
# No need for xmlto as they ship generated files. | ||
ac_cv_prog_have_xmlto=no | ||
|
||
$(use_enable static-libs static) | ||
) | ||
|
||
autotools-multilib_src_configure | ||
} | ||
|
||
src_install() { | ||
autotools-multilib_src_install | ||
|
||
# for static libs the .la file is required if built with +X | ||
use static-libs || prune_libtool_files --all | ||
|
||
doman doc/*.1 | ||
dodoc doc/*.txt | ||
dohtml -r doc | ||
} |