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/gnu-smalltalk: ChangeLog gnu-smalltalk-3.1.ebuild
Date: Mon, 04 Jan 2010 04:55:58
Message-Id: E1NReyx-0000nL-7y@stork.gentoo.org
1 araujo 10/01/04 04:55:55
2
3 Modified: ChangeLog
4 Added: gnu-smalltalk-3.1.ebuild
5 Log:
6 Version bump. Fixing bugs #252253 #251007
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.40 dev-lang/gnu-smalltalk/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 1 Jun 2009 21:34:04 -0000 1.39
23 +++ ChangeLog 4 Jan 2010 04:55:54 -0000 1.40
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-lang/gnu-smalltalk
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.39 2009/06/01 21:34:04 araujo Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.40 2010/01/04 04:55:54 araujo Exp $
30 +
31 +*gnu-smalltalk-3.1 (04 Jan 2010)
32 +
33 + 04 Jan 2010; Luis F. Araujo <araujo@g.o> +gnu-smalltalk-3.1.ebuild:
34 + Version bump. Fixing bugs #252253 , #251007
35
36 *gnu-smalltalk-3.0.5 (01 Jun 2009)
37
38
39
40
41 1.1 dev-lang/gnu-smalltalk/gnu-smalltalk-3.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnu-smalltalk-3.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.1.ebuild,v 1.1 2010/01/04 04:55:54 araujo Exp $
51
52 inherit elisp-common flag-o-matic eutils
53
54 DESCRIPTION="GNU Smalltalk"
55 HOMEPAGE="http://smalltalk.gnu.org"
56 SRC_URI="http://ftp.gnu.org/gnu/smalltalk/smalltalk-${PV}.tar.gz"
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="tk readline emacs gtk gmp"
61
62 DEPEND="sys-libs/gdbm
63 sys-apps/debianutils
64 dev-libs/libsigsegv
65 virtual/libffi
66 emacs? ( virtual/emacs )
67 readline? ( sys-libs/readline )
68 tk? ( dev-lang/tk )
69 gtk? ( =x11-libs/gtk+-2* )
70 gmp? ( dev-libs/gmp )"
71 RDEPEND=""
72
73 S="${WORKDIR}/smalltalk-${PV}"
74
75 SITEFILE=50gnu-smalltalk-gentoo.el
76
77 src_compile() {
78 replace-flags '-O3' '-O2'
79 ./configure --prefix=/usr \
80 --libdir=/usr/$(get_libdir) \
81 --with-system-libsigsegv \
82 --with-system-libffi \
83 `use_with emacs emacs` \
84 `use_with readline readline` \
85 `use_with gmp gmp` \
86 `use_with tk tcl /usr/$(get_libdir)` \
87 `use_with tk tk /usr/$(get_libdir)` \
88 `use_enable gtk gtk` \
89 || die "configure failed"
90 emake || die "emake failed"
91 use emacs && elisp-compile *.el
92 }
93
94 src_install() {
95 make DESTDIR="${D}" install || die
96 dodoc AUTHORS COPYING* ChangeLog NEWS README THANKS TODO
97 if use emacs; then
98 elisp-install "${PN}" *.el *.elc
99 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
100 fi
101 fperms 0444 /usr/share/smalltalk/packages.xml
102 }
103
104 pkg_postinst() {
105 use emacs && elisp-site-regen
106 }
107
108 pkg_postrm() {
109 use emacs && elisp-site-regen
110 }