diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-10-25 20:46:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-10-25 20:46:51 +0000 |
commit | 889c9fe5cc3db6afe1d089ac11a6c1633e98ed7b (patch) | |
tree | 0e7e7b7ee8087c9cee7faf346342aacebf372663 /media-libs | |
parent | old (diff) | |
download | gentoo-2-889c9fe5cc3db6afe1d089ac11a6c1633e98ed7b.tar.gz gentoo-2-889c9fe5cc3db6afe1d089ac11a6c1633e98ed7b.tar.bz2 gentoo-2-889c9fe5cc3db6afe1d089ac11a6c1633e98ed7b.zip |
Version bump #243850.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/imlib2/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/imlib2/imlib2-1.4.2.ebuild | 47 |
2 files changed, 53 insertions, 1 deletions
diff --git a/media-libs/imlib2/ChangeLog b/media-libs/imlib2/ChangeLog index 73e0fcea6be0..b1f838143b77 100644 --- a/media-libs/imlib2/ChangeLog +++ b/media-libs/imlib2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/imlib2 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/ChangeLog,v 1.78 2008/08/25 11:59:33 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/ChangeLog,v 1.79 2008/10/25 20:46:51 vapier Exp $ + +*imlib2-1.4.2 (25 Oct 2008) + + 25 Oct 2008; Mike Frysinger <vapier@gentoo.org> +imlib2-1.4.2.ebuild: + Version bump #243850. 25 Aug 2008; Raúl Porcel <armin76@gentoo.org> imlib2-1.4.1.ebuild: ia64 stable wrt #234927 diff --git a/media-libs/imlib2/imlib2-1.4.2.ebuild b/media-libs/imlib2/imlib2-1.4.2.ebuild new file mode 100644 index 000000000000..17e851c6d82e --- /dev/null +++ b/media-libs/imlib2/imlib2-1.4.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/imlib2-1.4.2.ebuild,v 1.1 2008/10/25 20:46:51 vapier Exp $ + +inherit enlightenment toolchain-funcs + +MY_P=${P/_/-} +DESCRIPTION="Version 2 of an advanced replacement library for libraries like libXpm" +HOMEPAGE="http://www.enlightenment.org/" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="X bzip2 gif jpeg mmx mp3 png tiff zlib" + +DEPEND="=media-libs/freetype-2* + bzip2? ( app-arch/bzip2 ) + zlib? ( sys-libs/zlib ) + gif? ( >=media-libs/giflib-4.1.0 ) + png? ( >=media-libs/libpng-1.2.1 ) + jpeg? ( media-libs/jpeg ) + tiff? ( >=media-libs/tiff-3.5.5 ) + X? ( x11-libs/libXext x11-proto/xextproto ) + mp3? ( media-libs/libid3tag )" + +src_compile() { + # imlib2 has diff configure options for x86/amd64 mmx + local myconf="" + if [[ $(tc-arch) == "amd64" ]] ; then + myconf="$(use_enable mmx amd64) --disable-mmx" + else + myconf="--disable-amd64 $(use_enable mmx)" + fi + + [[ $(gcc-major-version) -ge 4 ]] && myconf="${myconf} --enable-visibility-hiding" + + export MY_ECONF=" + $(use_with X x) \ + $(use_with jpeg) \ + $(use_with png) \ + $(use_with tiff) \ + $(use_with gif) \ + $(use_with zlib) \ + $(use_with bzip2) \ + $(use_with mp3 id3) \ + ${myconf} \ + " + enlightenment_src_compile +} |