diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2003-06-16 15:00:29 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2003-06-16 15:00:29 +0000 |
commit | 0cd132dccfdaadaa89849c438ce46cf20bf88900 (patch) | |
tree | a6f11214793ce688a888824c7874aa73dc93724b /x11-terms | |
parent | Version bump. (diff) | |
download | historical-0cd132dccfdaadaa89849c438ce46cf20bf88900.tar.gz historical-0cd132dccfdaadaa89849c438ce46cf20bf88900.tar.bz2 historical-0cd132dccfdaadaa89849c438ce46cf20bf88900.zip |
Version bump.
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/mlterm/Manifest | 5 | ||||
-rw-r--r-- | x11-terms/mlterm/files/digest-mlterm-2.7.0 | 1 | ||||
-rw-r--r-- | x11-terms/mlterm/mlterm-2.7.0.ebuild | 51 |
3 files changed, 54 insertions, 3 deletions
diff --git a/x11-terms/mlterm/Manifest b/x11-terms/mlterm/Manifest index 3db0b59bf061..b12f2e32c891 100644 --- a/x11-terms/mlterm/Manifest +++ b/x11-terms/mlterm/Manifest @@ -1,11 +1,10 @@ MD5 925185155b371760532f028ff96703ca mlterm-2.6.3-r1.ebuild 1144 -MD5 2fb85550e0064a4ae0b784cd664355a3 mlterm-2.6.3-r3.ebuild 1268 MD5 ada0964765643966a4abda2307fe1dbb mlterm-2.6.3.ebuild 1041 MD5 d714967266da9feec2fdf7dcb7442d31 mlterm-2.5.0-r1.ebuild 1043 MD5 2fb85550e0064a4ae0b784cd664355a3 mlterm-2.6.3-r2.ebuild 1268 MD5 6c3ff98b0c1d552812bdfb6540d3a4cc mlterm-2.6.2.ebuild 1043 -MD5 cad1a9bcda46dc960758ce0bddcdc27d mlterm-2.7.0.ebuild 1251 -MD5 7771ecc8ddcc4a00774bf19424222f80 ChangeLog 1509 +MD5 82587b09f2c92e6fe6873bff099b6f75 mlterm-2.7.0.ebuild 1248 +MD5 40352783e25426c53e4936c4128c1b4d ChangeLog 1627 MD5 eec1ca22e9d39b3795fa8dc08e948167 files/digest-mlterm-2.6.2 65 MD5 2eb5c2051e8917a0ee06e9902dcf2e16 files/digest-mlterm-2.6.3 65 MD5 61b653fe840ef82968a2bb425dbbdaf5 files/digest-mlterm-2.7.0 65 diff --git a/x11-terms/mlterm/files/digest-mlterm-2.7.0 b/x11-terms/mlterm/files/digest-mlterm-2.7.0 new file mode 100644 index 000000000000..bf1c29ab14ba --- /dev/null +++ b/x11-terms/mlterm/files/digest-mlterm-2.7.0 @@ -0,0 +1 @@ +MD5 03d6cf243ada71e3b80553a9a4a8a372 mlterm-2.7.0.tar.gz 1743950 diff --git a/x11-terms/mlterm/mlterm-2.7.0.ebuild b/x11-terms/mlterm/mlterm-2.7.0.ebuild new file mode 100644 index 000000000000..3ce36d1c9d1a --- /dev/null +++ b/x11-terms/mlterm/mlterm-2.7.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/mlterm/mlterm-2.7.0.ebuild,v 1.1 2003/06/16 15:00:19 nakano Exp $ + +IUSE="truetype gtk gtk2 gnome imlib" + +S=${WORKDIR}/${P} +DESCRIPTION="A multi-lingual terminal emulator" +HOMEPAGE="http://mlterm.sourceforge.net/" +SRC_URI="mirror://sourceforge/mlterm/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~x86 ~ppc" +LICENSE="BSD" + +DEPEND="virtual/x11 + gtk? ( =x11-libs/gtk+-1.2* ) + gtk2? ( >=x11-libs/gtk+-2.0.8 ) + !gtk2? ( imlib? ( >=media-libs/imlib-1.9.14 ) + gnome? ( >=media-libs/gdk-pixbuf-0.18.0 ) ) + truetype? ( >=media-libs/freetype-2.1.2 )" +# nls? ( >=dev-libs/fribidi-0.10.4 )" + +src_compile() { + local myconf + + use gtk2 \ + && myconf="${myconf} --with-imagelib=gdk-pixbuf2" + + use imlib \ + && myconf="${myconf} --with-imagelib=imlib" + + use gnome \ + && myconf="${myconf} --with-imagelib=gdk-pixbuf1" + + use truetype \ + && myconf="${myconf} --enable-anti-alias" + +# use nls \ +# && myconf="${myconf} --enable-fribidi" + + myconf="${myconf} --enable-utmp" + + econf ${myconf} || die "./configure failed" + emake || die +} + +src_install () { + einstall || die + dodoc ChangeLog LICENCE README +} |