Gentoo Archives: gentoo-commits

From: "Harald van Dijk (truedfx)" <truedfx@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/ufed: ChangeLog ufed-0.40-r8.ebuild
Date: Mon, 28 Apr 2008 16:37:42
Message-Id: E1JqWMF-0006QF-Gq@stork.gentoo.org
1 truedfx 08/04/28 16:37:39
2
3 Modified: ChangeLog
4 Added: ufed-0.40-r8.ebuild
5 Log:
6 Bug #219578: Don't try to draw the scroll thumb if the terminal window is large enough to not need one. It caused ufed to abort and is pointless anyway.
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.61 app-portage/ufed/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/ufed/ChangeLog?rev=1.61&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/ufed/ChangeLog?rev=1.61&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/ufed/ChangeLog?r1=1.60&r2=1.61
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-portage/ufed/ChangeLog,v
19 retrieving revision 1.60
20 retrieving revision 1.61
21 diff -u -r1.60 -r1.61
22 --- ChangeLog 7 Jan 2008 20:53:27 -0000 1.60
23 +++ ChangeLog 28 Apr 2008 16:37:38 -0000 1.61
24 @@ -1,6 +1,14 @@
25 # ChangeLog for app-portage/ufed
26 # Copyright 2003-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-portage/ufed/ChangeLog,v 1.60 2008/01/07 20:53:27 truedfx Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-portage/ufed/ChangeLog,v 1.61 2008/04/28 16:37:38 truedfx Exp $
29 +
30 +*ufed-0.40-r8 (28 Apr 2008)
31 +
32 + 28 Apr 2008; Harald van Dijk <truedfx@g.o>
33 + +files/ufed-0.40-termsize.patch, +ufed-0.40-r8.ebuild:
34 + Bug #219578: Don't try to draw the scroll thumb if the terminal window is
35 + large enough to not need one. It caused ufed to abort and is pointless
36 + anyway.
37
38 *ufed-0.40-r7 (07 Jan 2008)
39
40
41
42
43 1.1 app-portage/ufed/ufed-0.40-r8.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/ufed/ufed-0.40-r8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/ufed/ufed-0.40-r8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ufed-0.40-r8.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-portage/ufed/ufed-0.40-r8.ebuild,v 1.1 2008/04/28 16:37:38 truedfx Exp $
53
54 inherit eutils
55
56 DESCRIPTION="Gentoo Linux USE flags editor"
57 HOMEPAGE="http://www.gentoo.org/"
58 SRC_URI="mirror://gentoo/${P}.tar.bz2
59 http://dev.gentoo.org/~truedfx/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE=""
65
66 DEPEND="sys-libs/ncurses"
67 RDEPEND="${DEPEND}
68 dev-lang/perl"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 epatch "${FILESDIR}"/${P}-useorder.patch
74 epatch "${FILESDIR}"/${P}-source.patch
75 epatch "${FILESDIR}"/${P}-comments.patch
76 epatch "${FILESDIR}"/${P}-masked.patch
77 epatch "${FILESDIR}"/${P}-packageusemask.patch
78 epatch "${FILESDIR}"/${P}-noremove.patch
79 epatch "${FILESDIR}"/${P}-termsize.patch
80 }
81
82 src_compile() {
83 ./configure || die "configure failed"
84 emake || die "make failed"
85 }
86
87 src_install() {
88 newsbin ufed.pl ufed || die
89 doman ufed.8
90 insinto /usr/lib/ufed
91 doins *.pm || die
92 exeinto /usr/lib/ufed
93 doexe ufed-curses || die
94 }
95
96
97
98 --
99 gentoo-commits@l.g.o mailing list