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.0.5.ebuild
Date: Mon, 01 Jun 2009 21:34:07
Message-Id: E1MBF8u-0008RK-GL@stork.gentoo.org
1 araujo 09/06/01 21:34:04
2
3 Modified: ChangeLog
4 Added: gnu-smalltalk-3.0.5.ebuild
5 Log:
6 Version bump. Bug #233119
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.39 dev-lang/gnu-smalltalk/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.39&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.39&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?r1=1.38&r2=1.39
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v
19 retrieving revision 1.38
20 retrieving revision 1.39
21 diff -u -r1.38 -r1.39
22 --- ChangeLog 21 Apr 2008 15:31:48 -0000 1.38
23 +++ ChangeLog 1 Jun 2009 21:34:04 -0000 1.39
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-lang/gnu-smalltalk
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.38 2008/04/21 15:31:48 araujo Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.39 2009/06/01 21:34:04 araujo Exp $
30 +
31 +*gnu-smalltalk-3.0.5 (01 Jun 2009)
32 +
33 + 01 Jun 2009; Luis F. Araujo <araujo@g.o>
34 + +gnu-smalltalk-3.0.5.ebuild:
35 + Version bump
36
37 21 Apr 2008; Luis F. Araujo <araujo@g.o>
38 -files/gst-stack-2.3.1.patch, -files/gst-stack-2.3.2.patch,
39
40
41
42 1.1 dev-lang/gnu-smalltalk/gnu-smalltalk-3.0.5.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.0.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.0.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gnu-smalltalk-3.0.5.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/gnu-smalltalk/gnu-smalltalk-3.0.5.ebuild,v 1.1 2009/06/01 21:34:04 araujo Exp $
52
53 inherit elisp-common flag-o-matic eutils
54
55 DESCRIPTION="GNU Smalltalk"
56 HOMEPAGE="http://smalltalk.gnu.org"
57 SRC_URI="http://ftp.gnu.org/gnu/smalltalk/smalltalk-${PV}.tar.gz"
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="tk readline emacs gtk gmp"
62
63 DEPEND="sys-libs/gdbm
64 sys-apps/debianutils
65 dev-libs/libsigsegv
66 virtual/libffi
67 emacs? ( virtual/emacs )
68 readline? ( sys-libs/readline )
69 tk? ( dev-lang/tk )
70 gtk? ( =x11-libs/gtk+-2* )
71 gmp? ( dev-libs/gmp )"
72 RDEPEND=""
73
74 S="${WORKDIR}/smalltalk-${PV}"
75
76 SITEFILE=50gnu-smalltalk-gentoo.el
77
78 src_compile() {
79 replace-flags '-O3' '-O2'
80 ./configure --prefix=/usr \
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/lib` \
87 `use_with tk tk /usr/lib` \
88 `use_enable gtk gtk` \
89 || die
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 }