Gentoo Archives: gentoo-commits

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