commit:     a97b5d844a59273824a4d16cecd9f491702ea21e
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  2 05:23:46 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sat Jan  2 05:28:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a97b5d84

net-misc/suite3270: version bump to 3.4_p10

 net-misc/suite3270/Manifest                 |   1 +
 net-misc/suite3270/suite3270-3.4_p10.ebuild | 102 ++++++++++++++++++++++++++++
 2 files changed, 103 insertions(+)

diff --git a/net-misc/suite3270/Manifest b/net-misc/suite3270/Manifest
index cc461db..5a3a040 100644
--- a/net-misc/suite3270/Manifest
+++ b/net-misc/suite3270/Manifest
@@ -1,2 +1,3 @@
 DIST suite3270-3.3.15ga9-src.tgz 6960911 SHA256 
e22f40360170acf70b6de521173c633072582315b4879aef276fb8c97102e848 SHA512 
dd6ad0b42f935a9a25170d3ef765e8d31746b7c6a7d9c6f31630da77cc4fd2bde9f4861c86fb237211dd17e60423c4e1627871c8a710467076b99166e7774ccb
 WHIRLPOOL 
79b5691995dd98e6821130df3df8fed2af04abb7ebce642a12d82fa67045c3a1e491d32b8dd43b574b35e80cf0c734f8ab007ece18130e7c373175fa672a8e46
+DIST suite3270-3.4ga10-src.tgz 3398730 SHA256 
e9c1b46a61e4e727538fa942657c7eea7eef42de916a78c72a086b57330e2417 SHA512 
d9ed4aa41c45a2e961d5c2d0c00c6b81526da64b9c1765b0c5e39cb647157026a787db2054b2feb55c57e5a458a31062141471447b1177fd46cbbeb7d71e3f28
 WHIRLPOOL 
0af05ca2bedf00595fb8f525f51be3d6595d320d8f199d677d684ed797c7d1a29e1e1bb93187136c4fd8679c00e0255e5178d5ea3a2357a6545124ce510ecc92
 DIST suite3270-3.4ga9-src.tgz 3400841 SHA256 
49dfd73f930196c05bbc80709c2ac89b5c4f43745d6ce7a271c78a4624d93c1e SHA512 
02c834d8a23bf3cde33dec017d5d8dcc6473ca43bb066d3d0315898de9a2685ad75986ec14e2c6234269b310121bb5f8c4a04df3694e02fcc6c0947cfc661f69
 WHIRLPOOL 
bb3974b7b690fe6ca41830dc1cb89f2d8e08be7b85423d771af8b97ef49191ae96ce84d7c7de2f03c058d2aa9738ab8949ae99c7de32f9605b3064daba9ebe17

diff --git a/net-misc/suite3270/suite3270-3.4_p10.ebuild 
b/net-misc/suite3270/suite3270-3.4_p10.ebuild
new file mode 100644
index 0000000..ddb4221
--- /dev/null
+++ b/net-misc/suite3270/suite3270-3.4_p10.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+MY_PV=${PV/_p/ga}
+MY_P=${PN}-${MY_PV}
+SUB_PV=${PV:0:3}
+
+S=${WORKDIR}/${PN}-${SUB_PV}
+
+# only the x3270 package installs fonts
+FONT_PN="x3270"
+FONT_S=${WORKDIR}/${FONT_PN}
+
+inherit eutils font
+
+DESCRIPTION="Complete 3270 access package"
+HOMEPAGE="http://x3270.bgp.nu/";
+SRC_URI="mirror://sourceforge/x3270/${MY_P}-src.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
+IUSE="cjk doc ncurses ssl tcl X"
+
+RDEPEND="ssl? ( dev-libs/openssl:0= )
+       X? (
+               x11-libs/libX11
+               x11-libs/libXaw
+               x11-libs/libXmu
+               x11-libs/libXt
+       )
+       ncurses? (
+               sys-libs/ncurses:=
+               sys-libs/readline:0=
+       )
+       tcl? ( dev-lang/tcl:0 )"
+DEPEND="${RDEPEND}
+       X? (
+               x11-misc/xbitmaps
+               x11-proto/xproto
+               app-text/rman
+               x11-apps/mkfontdir
+               x11-apps/bdftopcf
+       )"
+
+suite3270_makelist() {
+       echo pr3287 s3270 \
+               $(usex ncurses c3270 '') \
+               $(usex tcl tcl3270 '') \
+               $(usex X x3270 '')
+}
+
+src_prepare() {
+       # Some subdirs (like c3270/x3270/s3270) install the same set of data 
files
+       # (they have the same contents).  Wrap that in a retry to avoid errors.
+       cat <<-EOF > _install
+       #!/bin/sh
+       for n in 1 2 3 4 5; do
+               install "\$@" && exit
+               echo "retrying ..."
+       done
+       exit 1
+       EOF
+       chmod a+rx _install
+       # Can't use the $INSTALL var as top level configure also uses it.
+       # https://sourceforge.net/p/x3270/bugs/15/
+       export ac_cv_path_install="${S}/_install"
+}
+
+src_configure() {
+       echo "${INSTALL}"
+       econf \
+               --cache-file="${S}"/config.cache \
+               --enable-s3270 \
+               --enable-pr3287 \
+               $(use_enable ncurses c3270) \
+               $(use_enable tcl tcl3270) \
+               $(use_enable X x3270) \
+               $(use_with X x) \
+               $(use_with X fontdir "${FONTDIR}")
+}
+
+src_install() {
+       use X && dodir "${FONTDIR}"
+       emake DESTDIR="${D}" install{,.man}
+
+       local p
+       for p in $(suite3270_makelist) ; do
+               cd "${S}/${p}"
+               docinto ${p}
+               dodoc README*
+               use doc && dohtml html/*
+       done
+
+       use X && font_src_install
+}
+
+pkg_postinst() { use X && font_pkg_postinst ; }
+pkg_postrm() { use X && font_pkg_postrm ; }

Reply via email to