Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libcaca: ChangeLog libcaca-0.99_beta14.ebuild
Date: Wed, 06 Aug 2008 00:35:03
Message-Id: E1KQWzT-00024Z-Vs@stork.gentoo.org
1 aballier 08/08/06 00:34:59
2
3 Modified: ChangeLog
4 Added: libcaca-0.99_beta14.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc6/cvs/Linux 2.6.25.7 x86_64)
8
9 Revision Changes Path
10 1.61 media-libs/libcaca/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/ChangeLog?rev=1.61&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/ChangeLog?rev=1.61&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/ChangeLog?r1=1.60&r2=1.61
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v
19 retrieving revision 1.60
20 retrieving revision 1.61
21 diff -u -r1.60 -r1.61
22 --- ChangeLog 12 May 2008 08:27:04 -0000 1.60
23 +++ ChangeLog 6 Aug 2008 00:34:59 -0000 1.61
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libcaca
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v 1.60 2008/05/12 08:27:04 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v 1.61 2008/08/06 00:34:59 aballier Exp $
29 +
30 +*libcaca-0.99_beta14 (06 Aug 2008)
31 +
32 + 06 Aug 2008; Alexis Ballier <aballier@g.o>
33 + +files/libcaca-0.99_beta14-deoptimise.patch, +libcaca-0.99_beta14.ebuild:
34 + version bump
35
36 12 May 2008; Alexis Ballier <aballier@g.o>
37 +files/libcaca-0.99_beta13-ruby-Makefile.am.patch,
38
39
40
41 1.1 media-libs/libcaca/libcaca-0.99_beta14.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta14.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta14.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libcaca-0.99_beta14.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta14.ebuild,v 1.1 2008/08/06 00:34:59 aballier Exp $
51
52 inherit eutils autotools libtool mono
53
54 MY_P="${P/_beta/.beta}"
55
56 DESCRIPTION="A library that creates colored ASCII-art graphics"
57 HOMEPAGE="http://libcaca.zoy.org/"
58 SRC_URI="http://libcaca.zoy.org/files/${PN}/${MY_P}.tar.gz"
59
60 LICENSE="WTFPL-2 LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
63 IUSE="doc imlib mono ncurses nocxx opengl ruby slang X"
64
65 RDEPEND="ncurses? ( >=sys-libs/ncurses-5.3 )
66 slang? ( >=sys-libs/slang-1.4 )
67 imlib? ( media-libs/imlib2 )
68 X? ( x11-libs/libX11 x11-libs/libXt )
69 opengl? ( virtual/opengl virtual/glut )
70 mono? ( dev-lang/mono )
71 ruby? ( virtual/ruby )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 doc? ( app-doc/doxygen
75 virtual/latex-base
76 || ( dev-texlive/texlive-fontsrecommended app-text/tetex app-text/ptex ) )"
77
78 S="${WORKDIR}/${MY_P}"
79
80 src_unpack() {
81 unpack ${A}
82 cd "${S}"
83
84 epatch "${FILESDIR}/${PN}-0.99_beta14-deoptimise.patch"
85
86 eautoreconf
87 elibtoolize
88 }
89
90 src_compile() {
91 # temp font fix #44128
92 export VARTEXFONTS="${T}/fonts"
93
94 econf \
95 $(use_enable doc) \
96 $(use_enable ncurses) \
97 $(use_enable slang) \
98 $(use_enable imlib imlib2) \
99 $(use_enable X x11) $(use_with X x) --x-libraries=/usr/$(get_libdir) \
100 $(use_enable opengl gl) \
101 $(use_enable !nocxx cxx) \
102 $(use_enable mono csharp) \
103 $(use_enable ruby) \
104 || die "econf failed"
105 emake || die "emake failed"
106 unset VARTEXFONTS
107 }
108
109 src_install() {
110 emake DESTDIR="${D}" install || die "emake install failed"
111 dodoc AUTHORS ChangeLog NEWS NOTES README
112 }