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-r1.ebuild minicom-2.3.ebuild
Date: Sun, 20 Apr 2008 02:39:31
Message-Id: E1JnPSh-0007uv-Ks@stork.gentoo.org
1 mrness 08/04/20 02:39:27
2
3 Modified: ChangeLog
4 Added: minicom-2.3-r1.ebuild
5 Removed: minicom-2.3.ebuild
6 Log:
7 Correct SRC_URI (#218353).
8 (Portage version: 2.1.4.4)
9
10 Revision Changes Path
11 1.64 net-dialup/minicom/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/ChangeLog?rev=1.64&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/ChangeLog?rev=1.64&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/ChangeLog?r1=1.63&r2=1.64
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v
20 retrieving revision 1.63
21 retrieving revision 1.64
22 diff -u -r1.63 -r1.64
23 --- ChangeLog 14 Apr 2008 20:30:15 -0000 1.63
24 +++ ChangeLog 20 Apr 2008 02:39:26 -0000 1.64
25 @@ -1,6 +1,14 @@
26 # ChangeLog for net-dialup/minicom
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.63 2008/04/14 20:30:15 mrness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.64 2008/04/20 02:39:26 mrness Exp $
30 +
31 +*minicom-2.3-r1 (20 Apr 2008)
32 +
33 + 20 Apr 2008; Alin Năstac <mrness@g.o>
34 + files/minicom-2.3-gentoo-runscript.patch,
35 + -files/minicom-2.3-one-off.patch, -minicom-2.3.ebuild,
36 + +minicom-2.3-r1.ebuild:
37 + Correct SRC_URI (#218353).
38
39 *minicom-2.3 (14 Apr 2008)
40
41
42
43
44 1.1 net-dialup/minicom/minicom-2.3-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/minicom-2.3-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/minicom/minicom-2.3-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: minicom-2.3-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2008 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.3-r1.ebuild,v 1.1 2008/04/20 02:39:26 mrness Exp $
54
55 inherit eutils
56
57 STUPID_NUM="2332"
58
59 DESCRIPTION="Serial Communication Program"
60 HOMEPAGE="http://alioth.debian.org/projects/minicom"
61 SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
66 IUSE="nls"
67
68 COMM0N_DEPEND="sys-libs/ncurses"
69 DEPEND="${COMMON_DEPEND}
70 nls? ( sys-devel/gettext )"
71 RDEPEND="${COMMON_DEPEND}
72 net-dialup/lrzsz"
73
74 # Supported languages and translated documentation
75 # Be sure all languages are prefixed with a single space!
76 MY_AVAILABLE_LINGUAS=" cs da de es fi fr hu ja nb pl pt_BR ro ru rw sv vi zh_TW"
77 IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
78
79 src_unpack() {
80 unpack ${A}
81 epatch "${FILESDIR}"/${P}-gentoo-runscript.patch
82 }
83
84 src_compile() {
85 econf --sysconfdir=/etc/${PN} \
86 $(use_enable nls) \
87 || die "econf failed"
88 emake || die "emake failed"
89 }
90
91 src_install() {
92 emake install DESTDIR="${D}" || die "einstall failed"
93
94 dodoc AUTHORS ChangeLog NEWS README doc/minicom.FAQ
95 insinto /etc/minicom
96 doins "${FILESDIR}"/minirc.dfl
97 }
98
99 pkg_preinst() {
100 [[ -s ${ROOT}/etc/minicom/minirc.dfl ]] \
101 && rm -f "${D}"/etc/minicom/minirc.dfl
102 }
103
104
105
106 --
107 gentoo-commits@l.g.o mailing list