Gentoo Archives: gentoo-commits

From: "Luis F. Araujo (araujo)" <araujo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/io: ChangeLog io-2009.01.02-r1.ebuild io-2009.01.02.ebuild
Date: Fri, 02 Jan 2009 15:33:36
Message-Id: E1LIm1k-0007S8-Tz@stork.gentoo.org
1 araujo 09/01/02 15:33:32
2
3 Modified: ChangeLog
4 Added: io-2009.01.02-r1.ebuild
5 Removed: io-2009.01.02.ebuild
6 Log:
7 Improving use flags deps.
8 (Portage version: 2.2_rc20/cvs/Linux 2.6.25.9 x86_64)
9
10 Revision Changes Path
11 1.4 dev-lang/io/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/io/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/io/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/io/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/io/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 2 Jan 2009 15:26:54 -0000 1.3
24 +++ ChangeLog 2 Jan 2009 15:33:32 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-lang/io
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/io/ChangeLog,v 1.3 2009/01/02 15:26:54 araujo Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/io/ChangeLog,v 1.4 2009/01/02 15:33:32 araujo Exp $
30 +
31 +*io-2009.01.02-r1 (02 Jan 2009)
32 +
33 + 02 Jan 2009; Luis F. Araujo <araujo@g.o> -io-2009.01.02.ebuild,
34 + +io-2009.01.02-r1.ebuild:
35 + Improving USE flag deps.
36
37 *io-2009.01.02 (02 Jan 2009)
38
39
40
41
42 1.1 dev-lang/io/io-2009.01.02-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/io/io-2009.01.02-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/io/io-2009.01.02-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: io-2009.01.02-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-lang/io/io-2009.01.02-r1.ebuild,v 1.1 2009/01/02 15:33:32 araujo Exp $
52
53 DESCRIPTION="Io is a small, prototype-based programming language."
54 HOMEPAGE="http://www.iolanguage.com"
55 SRC_URI="mirror://gentoo/${P}.tar.gz
56 http://dev.gentoo.org/~araujo/snapshots/${P}.tar.gz"
57
58 LICENSE="BSD"
59 SLOT="0"
60 KEYWORDS="~x86 ~amd64"
61 IUSE="doc readline mysql cairo postgres dbi opengl ncurses sqlite sqlite3 zlib lzo"
62 DEPEND="lzo? ( dev-libs/lzo )
63 readline? ( sys-libs/readline )
64 mysql? ( virtual/mysql )
65 cairo? ( x11-libs/cairo )
66 postgres? ( virtual/postgresql-server )
67 opengl? ( virtual/opengl )
68 dbi? ( dev-db/libdbi )
69 ncurses? ( sys-libs/ncurses )
70 sqlite? ( dev-db/sqlite )
71 sqlite3? ( >=dev-db/sqlite-3.0.0 )
72 zlib? ( sys-libs/zlib )"
73 RDEPEND=""
74
75 src_compile() {
76 make INSTALL_PREFIX="/usr" vm || die "make failed."
77 # Building optional addons if any.
78 useq readline && make ReadLine
79 useq mysql && make MySQL
80 useq cairo && make Cairo
81 useq postgres && make PostgreSQL
82 useq opengl && make OpenGL
83 useq dbi && make DBI
84 useq ncurses && make Curses
85 useq sqlite && make SQLite
86 useq sqlite3 && make SQLite3
87 useq zlib && make Zlib
88 useq lzo && make LZO
89 }
90
91 src_install() {
92 make install \
93 INSTALL_PREFIX="${D}/usr" \
94 || die "make install failed"
95 if use doc; then
96 dodoc docs/docs.css docs/*.html
97 fi
98 }