Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/mt-st: ChangeLog mt-st-1.1.ebuild
Date: Mon, 03 Aug 2009 16:15:26
Message-Id: E1MY0C4-0002CT-AZ@stork.gentoo.org
1 jer 09/08/03 16:15:24
2
3 Modified: ChangeLog
4 Added: mt-st-1.1.ebuild
5 Log:
6 Version bump. Move to EAPI="2". Remove DEPEND.
7 (Portage version: 2.2_rc33/cvs/Linux i686)
8
9 Revision Changes Path
10 1.28 app-arch/mt-st/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/mt-st/ChangeLog?rev=1.28&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/mt-st/ChangeLog?rev=1.28&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/mt-st/ChangeLog?r1=1.27&r2=1.28
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-arch/mt-st/ChangeLog,v
19 retrieving revision 1.27
20 retrieving revision 1.28
21 diff -u -r1.27 -r1.28
22 --- ChangeLog 23 Oct 2008 02:42:32 -0000 1.27
23 +++ ChangeLog 3 Aug 2009 16:15:24 -0000 1.28
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-arch/mt-st
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/ChangeLog,v 1.27 2008/10/23 02:42:32 flameeyes Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/ChangeLog,v 1.28 2009/08/03 16:15:24 jer Exp $
30 +
31 +*mt-st-1.1 (03 Aug 2009)
32 +
33 + 03 Aug 2009; Jeroen Roovers <jer@g.o> +mt-st-1.1.ebuild:
34 + Version bump. Move to EAPI="2". Remove DEPEND.
35
36 23 Oct 2008; Diego Pettenò <flameeyes@g.o> mt-st-0.9b.ebuild:
37 Respect CFLAGS, LDFLAGS and CC.
38
39
40
41 1.1 app-arch/mt-st/mt-st-1.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/mt-st/mt-st-1.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/mt-st/mt-st-1.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mt-st-1.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/mt-st-1.1.ebuild,v 1.1 2009/08/03 16:15:24 jer Exp $
51
52 EAPI="2"
53
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="Enhanced mt command for Linux, supporting Linux 2.4 ioctls"
57 HOMEPAGE="http://www.gnu.org/software/tar/"
58 SRC_URI="http://www.ibiblio.org/pub/linux/system/backup/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
63 IUSE=""
64
65 src_prepare() {
66 sed -i -e "s:-O2:${CFLAGS}:g" Makefile
67 }
68
69 src_compile() {
70 # Builds straight from .c to final binary
71 emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" || die
72 }
73
74 src_install() {
75 dosbin mt stinit || die
76 doman mt.1 stinit.8
77 dodoc README* stinit.def.examples
78 }