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_beta13.ebuild
Date: Sun, 02 Dec 2007 16:23:07
Message-Id: E1Iyras-0005n2-0F@stork.gentoo.org
1 aballier 07/12/02 16:22:58
2
3 Modified: ChangeLog
4 Added: libcaca-0.99_beta13.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.4_rc4)
8
9 Revision Changes Path
10 1.51 media-libs/libcaca/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/ChangeLog?rev=1.51&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/ChangeLog?rev=1.51&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/ChangeLog?r1=1.50&r2=1.51
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v
19 retrieving revision 1.50
20 retrieving revision 1.51
21 diff -u -r1.50 -r1.51
22 --- ChangeLog 10 Nov 2007 18:10:54 -0000 1.50
23 +++ ChangeLog 2 Dec 2007 16:22:57 -0000 1.51
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libcaca
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v 1.50 2007/11/10 18:10:54 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v 1.51 2007/12/02 16:22:57 aballier Exp $
29 +
30 +*libcaca-0.99_beta13 (02 Dec 2007)
31 +
32 + 02 Dec 2007; Alexis Ballier <aballier@g.o>
33 + +libcaca-0.99_beta13.ebuild:
34 + version bump
35
36 10 Nov 2007; Alexis Ballier <aballier@g.o>
37 libcaca-0.99_beta12.ebuild:
38
39
40
41 1.1 media-libs/libcaca/libcaca-0.99_beta13.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libcaca-0.99_beta13.ebuild
47 ===================================================================
48 # Copyright 1999-2007 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_beta13.ebuild,v 1.1 2007/12/02 16:22:57 aballier Exp $
51
52 inherit eutils autotools libtool
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/${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 doc? ( app-doc/doxygen
74 virtual/latex-base )"
75
76 S="${WORKDIR}/${MY_P}"
77
78 src_unpack() {
79 unpack ${A}
80 cd "${S}"
81
82 epatch "${FILESDIR}/${PN}-0.99_beta4-deoptimise.patch"
83
84 eautoreconf
85 elibtoolize
86 }
87
88 src_compile() {
89 # temp font fix #44128
90 export VARTEXFONTS="${T}/fonts"
91
92 econf \
93 $(use_enable doc) \
94 $(use_enable ncurses) \
95 $(use_enable slang) \
96 $(use_enable imlib imlib2) \
97 $(use_enable X x11) $(use_with X x) --x-libraries=/usr/$(get_libdir) \
98 $(use_enable opengl) \
99 $(use_enable !nocxx cxx) \
100 $(use_enable mono csharp) \
101 $(use_enable ruby) \
102 || die "econf failed"
103 emake || die "emake failed"
104 unset VARTEXFONTS
105 }
106
107 src_install() {
108 emake DESTDIR="${D}" install || die "emake install failed"
109 dodoc AUTHORS BUGS ChangeLog NEWS NOTES README TODO
110 }
111
112
113
114 --
115 gentoo-commits@g.o mailing list