diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2014-08-25 17:55:14 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2014-08-25 17:55:14 +0000 |
commit | e66d49872fa31abe0222f5b6b4cb4aaee4aee4ef (patch) | |
tree | 141d7e74e15bee50171194d91cb600dad8b5050b /x11-terms/mlterm | |
parent | NMU: Version bump. Add testsuite. See bug #518194. (diff) | |
download | gentoo-2-e66d49872fa31abe0222f5b6b4cb4aaee4aee4ef.tar.gz gentoo-2-e66d49872fa31abe0222f5b6b4cb4aaee4aee4ef.tar.bz2 gentoo-2-e66d49872fa31abe0222f5b6b4cb4aaee4aee4ef.zip |
Cleanup EAPI=1 superseded version. See bug #518172.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'x11-terms/mlterm')
-rw-r--r-- | x11-terms/mlterm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-terms/mlterm/mlterm-2.9.4-r4.ebuild | 84 |
2 files changed, 5 insertions, 86 deletions
diff --git a/x11-terms/mlterm/ChangeLog b/x11-terms/mlterm/ChangeLog index 54ce8dd0d499..ed195fa2716d 100644 --- a/x11-terms/mlterm/ChangeLog +++ b/x11-terms/mlterm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-terms/mlterm -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/mlterm/ChangeLog,v 1.96 2013/04/19 09:30:38 naota Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/mlterm/ChangeLog,v 1.97 2014/08/25 17:55:14 mrueg Exp $ + + 25 Aug 2014; Manuel Rüger <mrueg@gentoo.org> -mlterm-2.9.4-r4.ebuild: + Cleanup EAPI=1 superseded version. See bug #518172. *mlterm-3.1.9 (19 Apr 2013) diff --git a/x11-terms/mlterm/mlterm-2.9.4-r4.ebuild b/x11-terms/mlterm/mlterm-2.9.4-r4.ebuild deleted file mode 100644 index dc1823bd8fc9..000000000000 --- a/x11-terms/mlterm/mlterm-2.9.4-r4.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/mlterm/mlterm-2.9.4-r4.ebuild,v 1.11 2012/05/03 07:11:34 jdhore Exp $ - -EAPI="1" - -inherit eutils toolchain-funcs - -IUSE="truetype gtk imlib bidi nls uim scim m17n-lib" -#IUSE="${IUSE} iiimf" - -DESCRIPTION="A multi-lingual terminal emulator" -HOMEPAGE="http://mlterm.sourceforge.net/" -SRC_URI="mirror://sourceforge/mlterm/${P}.tar.gz - http://shinh.skr.jp/dat_dir/${P}_256.patch" - -SLOT="0" -KEYWORDS="amd64 hppa ppc ppc64 x86" -LICENSE="BSD" - -RDEPEND="|| ( sys-libs/libutempter sys-apps/utempter ) - x11-libs/libX11 - x11-libs/libICE - x11-libs/libSM - gtk? ( x11-libs/gtk+:2 ) - !gtk? ( imlib? ( >=media-libs/imlib-1.9.14 ) ) - truetype? ( x11-libs/libXft ) - bidi? ( >=dev-libs/fribidi-0.10.4 ) - nls? ( virtual/libintl ) - uim? ( >=app-i18n/uim-1.0 ) - scim? ( >=app-i18n/scim-1.4 ) - m17n-lib? ( >=dev-libs/m17n-lib-1.2.0 )" -DEPEND="${RDEPEND} - virtual/pkgconfig - nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-uim15-fix.patch - epatch "${DISTDIR}"/${P}_256.patch - cd "${S}"/xwindow - epatch "${FILESDIR}"/${PN}-2.9.1-gentoo.diff - epatch "${FILESDIR}"/${PN}-2.9.3-asneeded.diff -} - -src_compile() { - local myconf - - if use gtk ; then - myconf="${myconf} --with-imagelib=gdk-pixbuf" - else - if use imlib ; then - myconf="${myconf} --with-imagelib=imlib" - else - myconf="${myconf} --with-imagelib=''" - fi - myconf="${myconf} --with-tools=mlclient,mlcc" - fi - - # iiimf isn't stable enough - #myconf="${myconf} $(use_enable iiimf)" - - econf --enable-utmp \ - $(use_enable truetype anti-alias) \ - $(use_enable bidi fribidi) \ - $(use_enable nls) \ - $(use_enable uim) \ - $(use_enable scim) \ - $(use_enable m17n-lib m17nlib) \ - ${myconf} || die "econf failed" - emake CC="$(tc-getCC)" || die "emake failed" -} - -src_install () { - emake DESTDIR="${D}" install || die - - dodoc ChangeLog README - - docinto ja - dodoc doc/ja/* - docinto en - dodoc doc/en/* -} |