diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-05-10 01:14:57 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-05-10 01:15:08 -0400 |
commit | 8e6f91241781a9421be1bb7aa92807054dca453f (patch) | |
tree | 4b12ab4970c5e99dceb74845d1fe945328e0ff07 /net-misc/suite3270 | |
parent | dev-ruby/rake-compiler: add 0.9.9 (diff) | |
download | gentoo-8e6f91241781a9421be1bb7aa92807054dca453f.tar.gz gentoo-8e6f91241781a9421be1bb7aa92807054dca453f.tar.bz2 gentoo-8e6f91241781a9421be1bb7aa92807054dca453f.zip |
net-misc/suite3270: version bump to 3.5_p8
Diffstat (limited to 'net-misc/suite3270')
-rw-r--r-- | net-misc/suite3270/Manifest | 1 | ||||
-rw-r--r-- | net-misc/suite3270/files/suite3270-3.5_p8-tinfo.patch | 87 | ||||
-rw-r--r-- | net-misc/suite3270/suite3270-3.5_p8.ebuild | 103 |
3 files changed, 191 insertions, 0 deletions
diff --git a/net-misc/suite3270/Manifest b/net-misc/suite3270/Manifest index 5a3a04055482..ffbae2499df6 100644 --- a/net-misc/suite3270/Manifest +++ b/net-misc/suite3270/Manifest @@ -1,3 +1,4 @@ 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 +DIST suite3270-3.5ga8-src.tgz 3404504 SHA256 04d98c2644d8acc3b0089f85558074623500bc194c41609298b344b6e5d905d2 SHA512 f912afccaec7a489fcfb4e6d61729154c09a68df9478747d7b074d970fbe4b7ac8c809fb496b1cd329d6119a2dc45b2d67ef94f39679218858afc75a4a3dc072 WHIRLPOOL 9ed4b2f6f8fe028f40ff4d75bcde70c140e5afd00b82f861951385850873d114df594ceb3623716005c282d570c30f1407a50c353d142c542e3562ae29afe462 diff --git a/net-misc/suite3270/files/suite3270-3.5_p8-tinfo.patch b/net-misc/suite3270/files/suite3270-3.5_p8-tinfo.patch new file mode 100644 index 000000000000..9235809f02ef --- /dev/null +++ b/net-misc/suite3270/files/suite3270-3.5_p8-tinfo.patch @@ -0,0 +1,87 @@ +From a28f70d7fa11907898887706df35c3c3831d901a Mon Sep 17 00:00:00 2001 +From: Mike Frysinger <vapier@gentoo.org> +Date: Tue, 10 May 2016 01:12:30 -0400 +Subject: [PATCH] c3270: autolink libtinfo when it exists + +The ncurses libs might split out core funcs into libtinfo. Make sure we +detect & link this when available otherwise the linker might complain the +symbols are missing: +ld: screen.o: undefined reference to symbol 'meta' +/usr/lib64/libtinfo.so.6: error adding symbols: DSO missing from command line +collect2: error: ld returned 1 exit status +--- + x3270/c3270/configure.in | 1 + + x3270/c3270/configure | 45 +++++++++++++++++++++++++++++++++++++++++++++ + 2 files changed, 46 insertions(+) + +diff --git a/x3270/c3270/configure.in b/x3270/c3270/configure.in +index d9f19e6..8c6d852 100644 +--- a/x3270/c3270/configure.in ++++ b/x3270/c3270/configure.in +@@ -129,6 +129,7 @@ dnl first, so that objects in them can be used by subsequent libraries. + AC_SEARCH_LIBS(forkpty, util) + AC_CHECK_FUNCS(forkpty) + AC_CHECK_LIB(ncursesw, newterm, , [AC_CHECK_LIB(ncurses, newterm, , [AC_CHECK_LIB(curses, newterm, , [AC_MSG_ERROR(Can't find libncurses or new-enough libcurses)])])]) ++AC_CHECK_LIB(tinfo, meta) + if test "$with_readline" != no; then + AC_CHECK_LIB(readline, rl_initialize) + fi +diff --git a/x3270/c3270/configure b/x3270/c3270/configure +index bef2dff..9946e83 100755 +--- a/x3270/c3270/configure ++++ b/x3270/c3270/configure +@@ -4020,6 +4020,51 @@ fi + + fi + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for meta in -ltinfo" >&5 ++$as_echo_n "checking for meta in -ltinfo... " >&6; } ++if ${ac_cv_lib_tinfo_meta+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ltinfo $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char meta (); ++int ++main () ++{ ++return meta (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_tinfo_meta=yes ++else ++ ac_cv_lib_tinfo_meta=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tinfo_meta" >&5 ++$as_echo "$ac_cv_lib_tinfo_meta" >&6; } ++if test "x$ac_cv_lib_tinfo_meta" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LIBTINFO 1 ++_ACEOF ++ ++ LIBS="-ltinfo $LIBS" ++ ++fi ++ + if test "$with_readline" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_initialize in -lreadline" >&5 + $as_echo_n "checking for rl_initialize in -lreadline... " >&6; } +-- +2.7.4 + diff --git a/net-misc/suite3270/suite3270-3.5_p8.ebuild b/net-misc/suite3270/suite3270-3.5_p8.ebuild new file mode 100644 index 000000000000..896e6de13dd9 --- /dev/null +++ b/net-misc/suite3270/suite3270-3.5_p8.ebuild @@ -0,0 +1,103 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +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="${S}/${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() { + epatch "${FILESDIR}"/${PN}-3.5_p8-tinfo.patch + + # 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 ; } |