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.2.ebuild
Date: Mon, 21 Apr 2008 15:28:00
Message-Id: E1Jnxvx-00083P-AU@stork.gentoo.org
1 araujo 08/04/21 15:27:57
2
3 Modified: ChangeLog
4 Added: gnu-smalltalk-3.0.2.ebuild
5 Log:
6 Adding new release. Fixing bugs #217777 and #217508
7 (Portage version: 2.1.5_rc5)
8
9 Revision Changes Path
10 1.37 dev-lang/gnu-smalltalk/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.37&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.37&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?r1=1.36&r2=1.37
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v
19 retrieving revision 1.36
20 retrieving revision 1.37
21 diff -u -r1.36 -r1.37
22 --- ChangeLog 8 Apr 2008 08:07:01 -0000 1.36
23 +++ ChangeLog 21 Apr 2008 15:27:56 -0000 1.37
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.36 2008/04/08 08:07:01 araujo Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.37 2008/04/21 15:27:56 araujo Exp $
29 +
30 +*gnu-smalltalk-3.0.2 (21 Apr 2008)
31 +
32 + 21 Apr 2008; Luis F. Araujo <araujo@g.o>
33 + +gnu-smalltalk-3.0.2.ebuild:
34 + Adding new release and fixing bugs #217777 and #217508
35
36 *gnu-smalltalk-3.0.1-r1 (08 Apr 2008)
37
38
39
40
41 1.1 dev-lang/gnu-smalltalk/gnu-smalltalk-3.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnu-smalltalk-3.0.2.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/dev-lang/gnu-smalltalk/gnu-smalltalk-3.0.2.ebuild,v 1.1 2008/04/21 15:27:56 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 emacs? ( virtual/emacs )
66 readline? ( sys-libs/readline )
67 tk? ( dev-lang/tk )
68 gtk? ( =x11-libs/gtk+-2* )
69 gmp? ( dev-libs/gmp )"
70 RDEPEND=""
71
72 S="${WORKDIR}/smalltalk-${PV}"
73
74 SITEFILE=50gnu-smalltalk-gentoo.el
75
76 src_compile() {
77 replace-flags '-O3' '-O2'
78 ./configure --prefix=/usr \
79 `use_with emacs emacs` \
80 `use_with readline readline` \
81 `use_with gmp gmp` \
82 `use_with tk tcl /usr/lib` \
83 `use_with tk tk /usr/lib` \
84 `use_enable gtk gtk` \
85 || die
86 emake || die "emake failed"
87 use emacs && elisp-compile *.el
88 }
89
90 src_install() {
91 make DESTDIR="${D}" install || die
92 # Remove libsigsegv
93 rm -rf "${D}/usr/include/sigsegv.h" \
94 "${D}/usr/include/snprintfv" \
95 "${D}/usr/share/aclocal/snprintfv.m4"
96 rm "${D}"/usr/lib/libsigsegv*
97 dodoc AUTHORS COPYING* ChangeLog NEWS README THANKS TODO
98 if use emacs; then
99 elisp-install "${PN}" *.el *.elc
100 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
101 fi
102 fperms 0444 /usr/share/smalltalk/packages.xml
103 }
104
105 pkg_postinst() {
106 use emacs && elisp-site-regen
107 }
108
109 pkg_postrm() {
110 use emacs && elisp-site-regen
111 }
112
113
114
115 --
116 gentoo-commits@l.g.o mailing list