Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/minicom: ChangeLog minicom-2.6.2-r1.ebuild minicom-2.6.2.ebuild
Date: Wed, 30 Oct 2013 08:43:33
Message-Id: 20131030084327.4353F20047@flycatcher.gentoo.org
1 pinkbyte 13/10/30 08:43:27
2
3 Modified: ChangeLog
4 Added: minicom-2.6.2-r1.ebuild
5 Removed: minicom-2.6.2.ebuild
6 Log:
7 Revision bump: respect AR, wrt bug #489734, thanks to Mikle Kolyada for discovering this issue. Drop old revision
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
10
11 Revision Changes Path
12 1.101 net-dialup/minicom/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/minicom/ChangeLog?rev=1.101&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/minicom/ChangeLog?rev=1.101&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/minicom/ChangeLog?r1=1.100&r2=1.101
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v
21 retrieving revision 1.100
22 retrieving revision 1.101
23 diff -u -r1.100 -r1.101
24 --- ChangeLog 6 Apr 2013 23:53:35 -0000 1.100
25 +++ ChangeLog 30 Oct 2013 08:43:27 -0000 1.101
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-dialup/minicom
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.100 2013/04/06 23:53:35 radhermit Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.101 2013/10/30 08:43:27 pinkbyte Exp $
31 +
32 +*minicom-2.6.2-r1 (30 Oct 2013)
33 +
34 + 30 Oct 2013; Sergey Popov <pinkbyte@g.o> -minicom-2.6.2.ebuild,
35 + +minicom-2.6.2-r1.ebuild:
36 + Revision bump: respect AR, wrt bug #489734, thanks to Mikle Kolyada for
37 + discovering this issue. Drop old revision
38
39 *minicom-2.6.2 (06 Apr 2013)
40
41
42
43
44 1.1 net-dialup/minicom/minicom-2.6.2-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/minicom/minicom-2.6.2-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/minicom/minicom-2.6.2-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: minicom-2.6.2-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/minicom-2.6.2-r1.ebuild,v 1.1 2013/10/30 08:43:27 pinkbyte Exp $
54
55 EAPI=5
56
57 inherit eutils toolchain-funcs
58
59 STUPID_NUM="3869"
60
61 DESCRIPTION="Serial Communication Program"
62 HOMEPAGE="http://alioth.debian.org/projects/minicom"
63 SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux"
68 IUSE="nls"
69
70 COMMON_DEPEND="sys-libs/ncurses"
71 DEPEND="${COMMON_DEPEND}
72 nls? ( sys-devel/gettext )"
73 RDEPEND="${COMMON_DEPEND}
74 net-dialup/lrzsz"
75
76 DOCS="AUTHORS ChangeLog NEWS README doc/minicom.FAQ"
77
78 # Supported languages and translated documentation
79 # Be sure all languages are prefixed with a single space!
80 MY_AVAILABLE_LINGUAS=" cs da de es fi fr hu id ja nb pl pt_BR ro ru rw sv vi zh_TW"
81 IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
82
83 src_prepare() {
84 epatch "${FILESDIR}"/${PN}-2.3-gentoo-runscript.patch
85 }
86
87 src_configure() {
88 econf \
89 --sysconfdir="${EPREFIX}"/etc/${PN} \
90 $(use_enable nls)
91 }
92
93 src_compile() {
94 emake AR="$(tc-getAR)"
95 }
96
97 src_install() {
98 default
99 insinto /etc/minicom
100 doins "${FILESDIR}"/minirc.dfl
101 }
102
103 pkg_preinst() {
104 [[ -s ${EROOT}/etc/minicom/minirc.dfl ]] \
105 && rm -f "${ED}"/etc/minicom/minirc.dfl
106 }