diff options
author | Don Seiler <rizzo@gentoo.org> | 2004-03-02 19:44:25 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2004-03-02 19:44:25 +0000 |
commit | 7b7b3ba1c34f12ff9200b5f1431e47125eb9ee15 (patch) | |
tree | 27d3bd15742a0bcffdbe6c23234cde2d8647870b /net-im | |
parent | Fixed data directory location in sample config. (Manifest recommit) (diff) | |
download | gentoo-2-7b7b3ba1c34f12ff9200b5f1431e47125eb9ee15.tar.gz gentoo-2-7b7b3ba1c34f12ff9200b5f1431e47125eb9ee15.tar.bz2 gentoo-2-7b7b3ba1c34f12ff9200b5f1431e47125eb9ee15.zip |
Adding debug USE flag
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/guifications/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/guifications/guifications-1.5.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-im/guifications/ChangeLog b/net-im/guifications/ChangeLog index b72b957a2aea..a7f7c60d33cb 100644 --- a/net-im/guifications/ChangeLog +++ b/net-im/guifications/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/guifications # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/guifications/ChangeLog,v 1.1 2004/02/18 18:32:05 rizzo Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/guifications/ChangeLog,v 1.2 2004/03/02 19:44:25 rizzo Exp $ + + 02 Mar 2004; Don Seiler <rizzo@gentoo.org>; guifications-1.5.ebuild: + Adding debug USE flag *guifications-1.5 (18 Feb 2004) diff --git a/net-im/guifications/guifications-1.5.ebuild b/net-im/guifications/guifications-1.5.ebuild index c8e1921ac65c..4c91c5fc8023 100644 --- a/net-im/guifications/guifications-1.5.ebuild +++ b/net-im/guifications/guifications-1.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/guifications/guifications-1.5.ebuild,v 1.1 2004/02/18 18:32:05 rizzo Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/guifications/guifications-1.5.ebuild,v 1.2 2004/03/02 19:44:25 rizzo Exp $ DESCRIPTION="Guifications are graphical notification plugin for the open source instant message client gaim" HOMEPAGE="http://guifications.sourceforge.net" @@ -10,7 +10,7 @@ RESTRICT="nomirror" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" -IUSE="" +IUSE="debug" DEPEND=">=net-im/gaim-0.75-r8" #RDEPEND="" @@ -19,11 +19,11 @@ DEPEND=">=net-im/gaim-0.75-r8" src_compile() { local myconf - myconf="--with-gaim=/usr/include/gaim" + myconf=`use_enable debug` + myconf="${myconf} --with-gaim=/usr/include/gaim" econf ${myconf} || die "econf failure" emake || die "emake failure" - #make || die } src_install() { |