Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/sash: sash-3.7-r3.ebuild ChangeLog sash-3.7-r2.ebuild
Date: Thu, 01 Sep 2011 16:21:37
Message-Id: 20110901162120.0E8532004C@flycatcher.gentoo.org
1 flameeyes 11/09/01 16:21:20
2
3 Modified: ChangeLog
4 Added: sash-3.7-r3.ebuild
5 Removed: sash-3.7-r2.ebuild
6 Log:
7 Remove readline USE flag and patch given that the patch itself is custom and not vanilla, and this is orphaned.
8
9 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.41 app-shells/sash/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/ChangeLog?rev=1.41&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/ChangeLog?rev=1.41&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/ChangeLog?r1=1.40&r2=1.41
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v
21 retrieving revision 1.40
22 retrieving revision 1.41
23 diff -u -r1.40 -r1.41
24 --- ChangeLog 29 Aug 2011 06:26:39 -0000 1.40
25 +++ ChangeLog 1 Sep 2011 16:21:19 -0000 1.41
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-shells/sash
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.40 2011/08/29 06:26:39 flameeyes Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.41 2011/09/01 16:21:19 flameeyes Exp $
31 +
32 +*sash-3.7-r3 (01 Sep 2011)
33 +
34 + 01 Sep 2011; Diego E. Pettenò <flameeyes@g.o> -sash-3.7-r2.ebuild,
35 + +sash-3.7-r3.ebuild:
36 + Remove readline USE flag and patch given that the patch itself is custom and
37 + not vanilla, and this is orphaned.
38
39 29 Aug 2011; Diego E. Pettenò <flameeyes@g.o> sash-3.7-r2.ebuild:
40 Fix building with GCC 4.6 by not passing broken LDFLAGS (bug #381005). Do not
41
42
43
44 1.1 app-shells/sash/sash-3.7-r3.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/sash-3.7-r3.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/sash-3.7-r3.ebuild?rev=1.1&content-type=text/plain
48
49 Index: sash-3.7-r3.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.7-r3.ebuild,v 1.1 2011/09/01 16:21:19 flameeyes Exp $
54
55 EAPI=4
56
57 inherit eutils toolchain-funcs flag-o-matic
58
59 DESCRIPTION="A small (static) UNIX Shell"
60 HOMEPAGE="http://www.canb.auug.org.au/~dbell/ http://dimavb.st.simbirsk.su/vlk/"
61 SRC_URI="http://www.canb.auug.org.au/~dbell/programs/${P}.tar.gz"
62
63 LICENSE="freedist"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
66 IUSE="static"
67
68 DEPEND=">=sys-libs/zlib-1.2.3"
69 RDEPEND=""
70
71 src_prepare() {
72 epatch "${FILESDIR}"/sash-3.6-fix-includes.patch
73 epatch "${FILESDIR}"/sash-3.7-builtin.patch
74
75 sed -i \
76 -e "s:-O3:${CFLAGS}:" \
77 Makefile || die "sed failed"
78 }
79
80 src_compile() {
81 use static && append-ldflags -static
82
83 emake LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)"
84 }
85
86 src_install() {
87 into /
88 dobin sash
89 doman sash.1
90 dodoc README
91 }