Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/sash: sash-3.8.ebuild ChangeLog
Date: Mon, 09 Jun 2014 06:03:22
Message-Id: 20140609060317.DAE442004E@flycatcher.gentoo.org
1 patrick 14/06/09 06:03:17
2
3 Modified: ChangeLog
4 Added: sash-3.8.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.53 app-shells/sash/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 8 Dec 2013 17:27:39 -0000 1.52
24 +++ ChangeLog 9 Jun 2014 06:03:17 -0000 1.53
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-shells/sash
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.52 2013/12/08 17:27:39 dastergon Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.53 2014/06/09 06:03:17 patrick Exp $
31 +
32 +*sash-3.8 (09 Jun 2014)
33 +
34 + 09 Jun 2014; Patrick Lauer <patrick@g.o> +sash-3.8.ebuild:
35 + Bump
36
37 08 Dec 2013; Pavlos Ratis <dastergon@g.o> metadata.xml:
38 add myself as maintainer
39
40
41
42 1.1 app-shells/sash/sash-3.8.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/sash-3.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/sash/sash-3.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: sash-3.8.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.8.ebuild,v 1.1 2014/06/09 06:03:17 patrick Exp $
52
53 EAPI=4
54
55 inherit eutils toolchain-funcs flag-o-matic
56
57 DESCRIPTION="A small (static) UNIX Shell"
58 HOMEPAGE="http://www.canb.auug.org.au/~dbell/"
59 SRC_URI="http://www.canb.auug.org.au/~dbell/programs/${P}.tar.gz"
60
61 LICENSE="freedist"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
64 IUSE="static"
65
66 DEPEND="
67 static? ( sys-libs/zlib[static-libs] )
68 !static? ( >=sys-libs/zlib-1.2.3 )"
69 RDEPEND="!static? ( ${DEPEND} )"
70
71 src_prepare() {
72 epatch "${FILESDIR}"/sash-3.7-builtin.patch
73
74 sed \
75 -e "s:-O3:${CFLAGS}:" \
76 -i Makefile || die
77 sed \
78 -e 's:linux/ext2_fs.h:ext2fs/ext2_fs.h:g' \
79 -i cmd_chattr.c || die
80 }
81
82 src_compile() {
83 use static && append-ldflags -static
84
85 emake LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)"
86 }
87
88 src_install() {
89 into /
90 dobin sash
91 doman sash.1
92 dodoc README
93 }