From 7db0e952379da2a3234bb0a09af5c40213c6b135 Mon Sep 17 00:00:00 2001 From: Seemant Kulleen Date: Mon, 6 Jan 2003 05:37:23 +0000 Subject: nls bloat fix --- net-im/everybuddy/everybuddy-0.4.3.ebuild | 55 ++++++++++++++++--------------- 1 file changed, 28 insertions(+), 27 deletions(-) (limited to 'net-im/everybuddy/everybuddy-0.4.3.ebuild') diff --git a/net-im/everybuddy/everybuddy-0.4.3.ebuild b/net-im/everybuddy/everybuddy-0.4.3.ebuild index 643dde12e6c2..d2d6994cdefd 100644 --- a/net-im/everybuddy/everybuddy-0.4.3.ebuild +++ b/net-im/everybuddy/everybuddy-0.4.3.ebuild @@ -1,56 +1,57 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/everybuddy/everybuddy-0.4.3.ebuild,v 1.3 2002/10/05 05:39:20 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/everybuddy/everybuddy-0.4.3.ebuild,v 1.4 2003/01/06 05:37:23 seemant Exp $ -IUSE="arts esd gnome" +IUSE="arts esd gnome nls" S=${WORKDIR}/${P} DESCRIPTION="Universal Instant Messaging Client" SRC_URI="http://www.everybuddy.com/files/${P}.tar.gz" HOMEPAGE="http://www.everybuddy.com/" -DEPEND="=x11-libs/gtk+-1.2* - arts? ( >=kde-base/arts-1.0.0 ) - gnome? ( >=gnome-base/gnome-libs-1.4.1.7 ) - esd? ( >=media-sound/esound-0.2.28 )" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86" +DEPEND="=x11-libs/gtk+-1.2* + arts? ( >=kde-base/arts-1.0.0 ) + gnome? ( >=gnome-base/gnome-libs-1.4.1.7 ) + esd? ( >=media-sound/esound-0.2.28 )" + src_compile() { - local myconf - use arts \ - && myconf="--enable-arts" \ + local myconf + use arts \ + && myconf="--enable-arts" \ || myconf="--disable-arts" - use esd \ - && myconf="${myconf} --enable-esd" \ + use esd \ + && myconf="${myconf} --enable-esd" \ || myconf="${myconf} --disable-esd" - use gnome \ - && myconf="${myconf} --with-gnome" \ + use gnome \ + && myconf="${myconf} --with-gnome" \ || myconf="${myconf} --without-gnome" - echo ${myconf} + + use nls \ + && myconf="${myconf} --enable-nls" \ + || myconf="${myconf} --disable-nls" - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --host=${CHOST} \ - ${myconf} || die - cp src/Makefile src/Makefile.old - sed -e 's:EB_LIBS = :EB_LIBS = -laudiofile :' \ - src/Makefile.old > src/Makefile - make || die + econf ${myconf} || die + cp src/Makefile src/Makefile.old + sed -e 's:EB_LIBS = :EB_LIBS = -laudiofile :' \ + src/Makefile.old > src/Makefile + make || die } src_install () { - make \ - DESTDIR=${D} \ - install || die +# make \ +# DESTDIR=${D} \ +# install || die - dodoc AUTHORS NEWS README TODO COPYING ChangeLog + einstall || die + dodoc AUTHORS NEWS README TODO COPYING ChangeLog } -- cgit v1.2.3-65-gdbad