Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/minicom: minicom-2.4.ebuild ChangeLog
Date: Fri, 19 Feb 2010 17:19:12
Message-Id: E1NiWVR-0001f4-EY@stork.gentoo.org
1 patrick 10/02/19 17:19:09
2
3 Modified: ChangeLog
4 Added: minicom-2.4.ebuild
5 Log:
6 Bump to 2.4, thanks to Tim Harder. Fixes #304167
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.74 net-dialup/minicom/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/ChangeLog?rev=1.74&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/ChangeLog?rev=1.74&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/ChangeLog?r1=1.73&r2=1.74
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v
19 retrieving revision 1.73
20 retrieving revision 1.74
21 diff -u -r1.73 -r1.74
22 --- ChangeLog 11 Jul 2009 20:35:53 -0000 1.73
23 +++ ChangeLog 19 Feb 2010 17:19:08 -0000 1.74
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-dialup/minicom
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.73 2009/07/11 20:35:53 josejx Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.74 2010/02/19 17:19:08 patrick Exp $
30 +
31 +*minicom-2.4 (19 Feb 2010)
32 +
33 + 19 Feb 2010; Patrick Lauer <patrick@g.o> +minicom-2.4.ebuild:
34 + Bump to 2.4, thanks to Tim Harder. Fixes #304167
35
36 11 Jul 2009; Joseph Jezak <josejx@g.o> minicom-2.3-r2.ebuild:
37 Marked ppc stable for bug #274781.
38
39
40
41 1.1 net-dialup/minicom/minicom-2.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/minicom-2.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/minicom-2.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: minicom-2.4.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/minicom-2.4.ebuild,v 1.1 2010/02/19 17:19:08 patrick Exp $
51
52 EAPI="2"
53
54 inherit eutils
55
56 STUPID_NUM="3195"
57
58 DESCRIPTION="Serial Communication Program"
59 HOMEPAGE="http://alioth.debian.org/projects/minicom"
60 SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
65 IUSE="nls"
66
67 COMMON_DEPEND="sys-libs/ncurses"
68 DEPEND="${COMMON_DEPEND}
69 nls? ( sys-devel/gettext )"
70 RDEPEND="${COMMON_DEPEND}
71 net-dialup/lrzsz"
72
73 # Supported languages and translated documentation
74 # Be sure all languages are prefixed with a single space!
75 MY_AVAILABLE_LINGUAS=" cs da de es fi fr hu id ja nb pl pt_BR ro ru rw sv vi zh_TW"
76 IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
77
78 src_prepare() {
79 epatch "${FILESDIR}"/${PN}-2.3-gentoo-runscript.patch
80 }
81
82 src_configure() {
83 econf --sysconfdir=/etc/${PN} \
84 $(use_enable nls) \
85 || die "econf failed"
86 }
87
88 src_install() {
89 emake install DESTDIR="${D}" || die "einstall failed"
90
91 dodoc AUTHORS ChangeLog NEWS README doc/minicom.FAQ
92 insinto /etc/minicom
93 doins "${FILESDIR}"/minirc.dfl
94 }
95
96 pkg_preinst() {
97 [[ -s ${ROOT}/etc/minicom/minirc.dfl ]] \
98 && rm -f "${D}"/etc/minicom/minirc.dfl
99 }