Gentoo Archives: gentoo-commits

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