diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-12-26 17:21:05 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-12-26 17:21:05 +0000 |
commit | da84393c55a4b53759f2fc5d3b00d142a321e568 (patch) | |
tree | 71d4552e48f6d68c4cebf431b542c5adfde82b00 /net-misc/suite3270 | |
parent | Re-add ~sparc wrt #295088 (diff) | |
download | gentoo-2-da84393c55a4b53759f2fc5d3b00d142a321e568.tar.gz gentoo-2-da84393c55a4b53759f2fc5d3b00d142a321e568.tar.bz2 gentoo-2-da84393c55a4b53759f2fc5d3b00d142a321e568.zip |
Clean up ebuild and merge fixes from x3270 package #285917.
(Portage version: 2.2_rc60/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/suite3270')
-rw-r--r-- | net-misc/suite3270/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/suite3270/suite3270-3.3.10_p3-r1.ebuild | 90 |
2 files changed, 97 insertions, 1 deletions
diff --git a/net-misc/suite3270/ChangeLog b/net-misc/suite3270/ChangeLog index 9a1172ad66bd..b0fb30f50619 100644 --- a/net-misc/suite3270/ChangeLog +++ b/net-misc/suite3270/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/suite3270 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/suite3270/ChangeLog,v 1.36 2009/12/26 01:28:48 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/suite3270/ChangeLog,v 1.37 2009/12/26 17:21:05 vapier Exp $ + +*suite3270-3.3.10_p3-r1 (26 Dec 2009) + + 26 Dec 2009; Mike Frysinger <vapier@gentoo.org> + +suite3270-3.3.10_p3-r1.ebuild: + Clean up ebuild and merge fixes from x3270 package #285917. *suite3270-3.3.10_p3 (26 Dec 2009) diff --git a/net-misc/suite3270/suite3270-3.3.10_p3-r1.ebuild b/net-misc/suite3270/suite3270-3.3.10_p3-r1.ebuild new file mode 100644 index 000000000000..52da64ffab62 --- /dev/null +++ b/net-misc/suite3270/suite3270-3.3.10_p3-r1.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/suite3270/suite3270-3.3.10_p3-r1.ebuild,v 1.1 2009/12/26 17:21:05 vapier Exp $ + +MY_PV=${PV/_p/ga} +MY_P=${PN}-${MY_PV} +SUB_PV=${PV:0:3} + +S=${WORKDIR} + +# only the x3270 package installs fonts +FONT_PN="x3270" +FONT_S=${WORKDIR}/${FONT_PN}-${SUB_PV} + +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 ) + X? ( + x11-libs/libX11 + x11-libs/libXaw + x11-libs/libXmu + x11-libs/libXt + ) + ncurses? ( sys-libs/ncurses sys-libs/readline ) + tcl? ( dev-lang/tcl )" +DEPEND="${RDEPEND} + X? ( + x11-misc/imake + x11-misc/xbitmaps + x11-proto/xproto + app-text/rman + x11-apps/mkfontdir + x11-apps/bdftopcf + )" + +suite3270_makelist() { + echo pr3287 s3270 + use ncurses && echo c3270 + use tcl && echo tcl3270 + use X && echo x3270 +} + +src_unpack() { + unpack ${A} + cd "${S}" + use X && ! use cjk && epatch "${FILESDIR}"/${P}-fix-x3270-dbcs.patch +} + +src_compile() { + local p + for p in $(suite3270_makelist) ; do + cd "${S}/${p}-${SUB_PV}" + econf \ + --cache-file="${S}"/config.cache \ + $(use_enable cjk dbcs) \ + $(use_enable ssl) \ + $(use_with X x) \ + $(use_with X fontdir "${FONTDIR}") \ + || die + emake || die + done +} + +src_install() { + use X && dodir "${FONTDIR}" + local p + for p in $(suite3270_makelist) ; do + cd "${S}/${p}-${SUB_PV}" + emake DESTDIR="${D}" install install.man || die + docinto ${p} + local d=$(echo README*) + [[ -n ${d} ]] && dodoc ${d} + use doc && dohtml html/* + done + chmod a-x "${D}"/usr/share/man/*/* + + use X && font_src_install +} + +pkg_postinst() { use X && font_pkg_postinst ; } +pkg_postrm() { use X && font_pkg_postrm ; } |