diff options
author | Hanno Böck <hanno@gentoo.org> | 2006-11-17 14:00:01 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2006-11-17 14:00:01 +0000 |
commit | 27e803a07743a46c5c96f361e2b9f456254fa722 (patch) | |
tree | 114334c5e158ecb470a354cba9b68bf07d0d8746 /media-libs/libcaca/libcaca-0.99_beta11.ebuild | |
parent | Bump for CVS snapshot. Removed unused ebuilds. (diff) | |
download | gentoo-2-27e803a07743a46c5c96f361e2b9f456254fa722.tar.gz gentoo-2-27e803a07743a46c5c96f361e2b9f456254fa722.tar.bz2 gentoo-2-27e803a07743a46c5c96f361e2b9f456254fa722.zip |
libcaca bump
(Portage version: 2.1.2_rc1-r7)
Diffstat (limited to 'media-libs/libcaca/libcaca-0.99_beta11.ebuild')
-rw-r--r-- | media-libs/libcaca/libcaca-0.99_beta11.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/media-libs/libcaca/libcaca-0.99_beta11.ebuild b/media-libs/libcaca/libcaca-0.99_beta11.ebuild new file mode 100644 index 000000000000..f4a398eb8d8a --- /dev/null +++ b/media-libs/libcaca/libcaca-0.99_beta11.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta11.ebuild,v 1.1 2006/11/17 14:00:01 hanno Exp $ + +WANT_AUTOMAKE="latest" +WANT_AUTOCONF="latest" + +inherit eutils autotools libtool + +MY_P="${P/_beta/.beta}" + +DESCRIPTION="A library that creates colored ASCII-art graphics" +HOMEPAGE="http://libcaca.zoy.org/" +SRC_URI="http://libcaca.zoy.org/files/${MY_P}.tar.gz" + +LICENSE="WTFPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="ncurses slang doc imlib X opengl nocxx" + +RDEPEND="ncurses? ( >=sys-libs/ncurses-5.3 ) + slang? ( =sys-libs/slang-1.4* ) + imlib? ( media-libs/imlib2 ) + X? ( x11-libs/libX11 + x11-libs/libXt ) + opengl? ( virtual/opengl + virtual/glut )" + +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${PN}-0.99_beta4-deoptimise.patch" + + eautoreconf + elibtoolize +} + +src_compile() { + # temp font fix #44128 + export VARTEXFONTS="${T}/fonts" + + econf \ + $(use_enable doc) \ + $(use_enable ncurses) \ + $(use_enable slang) \ + $(use_enable imlib imlib2) \ + $(use_enable X x11) $(use_with X x) --x-libraries=/usr/$(get_libdir) \ + $(use_enable opengl) \ + $(use_enable !nocxx cxx) \ + || die "econf failed" + emake || die "emake failed" + unset VARTEXFONTS +} + +src_install() { + mv doc/man/man3caca doc/man/man3 + emake install DESTDIR="${D}" || die "emake install failed" + dodoc AUTHORS BUGS ChangeLog NEWS NOTES README TODO +} |