diff options
author | Jae Yang Kwak <jayskwak@gentoo.org> | 2002-06-27 06:06:51 +0000 |
---|---|---|
committer | Jae Yang Kwak <jayskwak@gentoo.org> | 2002-06-27 06:06:51 +0000 |
commit | fbfcee24df400c417c50e8894be67117bc969419 (patch) | |
tree | 5c8af24857ca7a552a98ffe090c52d4885fb7c2e /net-im | |
parent | minor tweak (diff) | |
download | gentoo-2-fbfcee24df400c417c50e8894be67117bc969419.tar.gz gentoo-2-fbfcee24df400c417c50e8894be67117bc969419.tar.bz2 gentoo-2-fbfcee24df400c417c50e8894be67117bc969419.zip |
Korean encoding patch fot v0.59 added
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/gaim/gaim-0.59-r1.ebuild | 84 |
2 files changed, 89 insertions, 0 deletions
diff --git a/net-im/gaim/ChangeLog b/net-im/gaim/ChangeLog index 6343de7e67d0..a039ec8bd452 100644 --- a/net-im/gaim/ChangeLog +++ b/net-im/gaim/ChangeLog @@ -2,6 +2,11 @@ # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL # $ Header: $ +*gaim-0.59-r1 (27 June 2002) + 27 June 2002; Jays Kwak <jayskwak@gentoo.org> gaim-0.59-r1.ebuild + + Korean encoding patch for v0.59 added. + *gaim-0.59 (26 Jun 2002) 26 Jun 2002; Seemant Kulleen <seemant@gentoo.org> gaim-0.59.ebuild diff --git a/net-im/gaim/gaim-0.59-r1.ebuild b/net-im/gaim/gaim-0.59-r1.ebuild new file mode 100644 index 000000000000..29d4f084183c --- /dev/null +++ b/net-im/gaim/gaim-0.59-r1.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-0.59-r1.ebuild,v 1.1 2002/06/27 06:06:51 jayskwak Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Gtk Instant Messenger client" + +SRC_URI1="http://unc.dl.sourceforge.net/sourceforge/gaim/${P}.tar.bz2" +SRC_URI2="http://telia.dl.sourceforge.net/sourceforge/gaim/${P}.tar.bz2" +SRC_URI3="http://belnet.dl.sourceforge.net/sourceforge/gaim/${P}.tar.bz2" +SRC_URI="${SRC_URI1} ${SRC_URI2} ${SRC_URI3}" + +HOMEPAGE="http://gaim.sourceforge.net" +LICENSE="GPL-2" +SLOT="0" +DEPEND="=x11-libs/gtk+-1.2* + =sys-libs/db-1* + esd? ( >=media-sound/esound-0.2.22-r2 ) + nls? ( sys-devel/gettext ) + nas? ( >=media-libs/nas-1.4.1-r1 ) + arts? ( >=kde-base/arts-0.9.5 ) + perl? ( >=sys-devel/perl-5.6.1 ) + gnome? ( >=gnome-base/gnome-core-1.4 + >=media-libs/gdk-pixbuf-0.16.0 )" + +RDEPEND="${DEPEND}" + +src_unpack() { + + unpack ${P}.tar.bz2 + + # patch for korean encoding + # It should be ok with other languages + # the patch only works with nls + use nls && patch -p0 < ${FILESDIR}/${P}-korean.patch + +} + +src_compile() { + + local myopts gnomeopts + + use esd || myopts="--disable-esd" + use nas || myopts="${myopts} --disable-nas" + use perl || myopts="${myopts} --disable-perl" + + use arts || myopts="${myopts} --disable-artsc" + use arts && KDEDIR="${KDE3DIR}" + + use nls || myopts="${myopts} --disable-nls" + + gnomeopts="${myopts}" + myopts="${myopts} --disable-gnome" + + # always build standalone gaim program + + # transparency + # patch -p1 < ${FILESDIR}/transparency.diff || die + econf ${myopts} || die + emake || die + + # if gnome support is enabled, then build gaim_applet + use gnome && ( \ + gnomeopts="${gnomeopts} --with-gnome=${GNOME_PATH} --enable-panel" + + # save appletless version and clean up + cp src/gaim ${S}/gaim || die "standalone version failed to build" + make distclean || die + + econf ${gnomeopts} || die + emake || die + ) + +} + +src_install () { + + make DESTDIR=${D} install || die + + # if gnome enabled, make sure to install standalone version also + use gnome && dobin ${S}/gaim + + dodoc ABOUT-NLS AUTHORS HACKING INSTALL NEWS README TODO +} |