Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/suite3270: ChangeLog suite3270-3.3.7_p5.ebuild
Date: Wed, 25 Jun 2008 02:59:28
Message-Id: E1KBLEA-0006xH-5b@stork.gentoo.org
1 robbat2 08/06/25 02:59:22
2
3 Modified: ChangeLog
4 Added: suite3270-3.3.7_p5.ebuild
5 Log:
6 Version bump, resolves bug #205417. Thanks to Jesse Farinacci <jieryn@×××××.com> as usual.
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc4-00103-g1beee8d x86_64)
8
9 Revision Changes Path
10 1.22 net-misc/suite3270/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/suite3270/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/suite3270/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/suite3270/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/suite3270/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -p -w -b -B -u -u -r1.21 -r1.22
22 --- ChangeLog 7 Jun 2008 02:29:51 -0000 1.21
23 +++ ChangeLog 25 Jun 2008 02:59:21 -0000 1.22
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-misc/suite3270
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/suite3270/ChangeLog,v 1.21 2008/06/07 02:29:51 robbat2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/suite3270/ChangeLog,v 1.22 2008/06/25 02:59:21 robbat2 Exp $
29 +
30 +*suite3270-3.3.7_p5 (25 Jun 2008)
31 +
32 + 25 Jun 2008; Robin H. Johnson <robbat2@g.o>
33 + +suite3270-3.3.7_p5.ebuild:
34 + Version bump, resolves bug #205417. Thanks to Jesse Farinacci
35 + <jieryn@×××××.com> as usual.
36
37 *suite3270-3.3.7 (07 Jun 2008)
38
39
40
41
42 1.1 net-misc/suite3270/suite3270-3.3.7_p5.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/suite3270/suite3270-3.3.7_p5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/suite3270/suite3270-3.3.7_p5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: suite3270-3.3.7_p5.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/suite3270/suite3270-3.3.7_p5.ebuild,v 1.1 2008/06/25 02:59:21 robbat2 Exp $
52
53 inherit eutils
54
55 IUSE="cjk doc ncurses ssl tcl X"
56
57 S="${WORKDIR}"
58 DESCRIPTION="Complete 3270 access package"
59 SRC_URI="http://x3270.bgp.nu/download/${PN}-${PV/_/}.tgz"
60 HOMEPAGE="http://www.geocities.com/SiliconValley/Peaks/7814/"
61
62 SLOT="0"
63 LICENSE="GPL-2"
64 KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
65
66 RDEPEND="X? ( x11-libs/libX11
67 x11-libs/libXaw
68 x11-libs/libXmu
69 x11-libs/libXt )
70 cjk? ( dev-libs/icu )
71 ncurses? ( sys-libs/ncurses
72 sys-libs/readline )
73 ssl? ( dev-libs/openssl )
74 tcl? ( dev-lang/tcl )"
75
76 DEPEND="${RDEPEND}
77 X? ( x11-misc/imake
78 x11-proto/xproto
79 app-text/rman
80 x11-apps/mkfontdir
81 x11-apps/bdftopcf )"
82
83 SUB_PV="3.3"
84 MY_FONTDIR="/usr/share/fonts/x3270"
85
86 suite3270_makelist() {
87 MY_PLIST="pr3287 s3270"
88 use ncurses && MY_PLIST="${MY_PLIST} c3270"
89 use tcl && MY_PLIST="${MY_PLIST} tcl3270"
90 use X && MY_PLIST="${MY_PLIST} x3270"
91 }
92
93 src_compile() {
94 local myconf
95
96 myconf="--without-pr3287"
97 myconf="${myconf} --cache-file=${S}/config.cache"
98 myconf="${myconf} $(use_enable cjk dbcs)"
99 myconf="${myconf} $(use_enable ssl)"
100 myconf="${myconf} $(use_with X x)"
101 myconf="${myconf} $(use_with X fontdir ${MY_FONTDIR})"
102
103 suite3270_makelist
104 for p in ${MY_PLIST} ; do
105 cd "${S}/${p}-${SUB_PV}"
106 econf ${myconf} || die "econf failed on ${p}"
107 emake || die "emake faild on ${p}"
108 done
109 }
110
111 src_install () {
112 suite3270_makelist
113 use X && dodir ${MY_FONTDIR}
114 for p in ${MY_PLIST} ; do
115 cd "${S}/${p}-${SUB_PV}"
116 emake DESTDIR="${D}" install install.man \
117 || die "emake failed on ${p}"
118 use doc && docinto ${p} && dohtml html/*
119 done
120
121 use X && rm -f "${D}/${MY_FONTDIR}/fonts.dir"
122 return 0
123 }
124
125 pkg_postinst() {
126 if use X ; then
127 einfo "Running mkfontdir on ${MY_FONTDIR}"
128 mkfontdir ${MY_FONTDIR}
129 fi
130 }
131
132
133
134 --
135 gentoo-commits@l.g.o mailing list