diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-05-02 06:03:44 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-05-02 06:03:44 +0000 |
commit | 3c59d1f669deda554bbb2dd6ba94e49ea7b0ceec (patch) | |
tree | 52e493cc07509283261d221f5d8a3108b3d6571b /dev-tcltk/mysqltcl/mysqltcl-2.50.ebuild | |
parent | Fix USE=static in other ebuilds too. (diff) | |
download | gentoo-2-3c59d1f669deda554bbb2dd6ba94e49ea7b0ceec.tar.gz gentoo-2-3c59d1f669deda554bbb2dd6ba94e49ea7b0ceec.tar.bz2 gentoo-2-3c59d1f669deda554bbb2dd6ba94e49ea7b0ceec.zip |
Respect LDFLAGS, #336129
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk/mysqltcl/mysqltcl-2.50.ebuild')
-rw-r--r-- | dev-tcltk/mysqltcl/mysqltcl-2.50.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/dev-tcltk/mysqltcl/mysqltcl-2.50.ebuild b/dev-tcltk/mysqltcl/mysqltcl-2.50.ebuild index bc2070c9b859..5d61d27bc0cd 100644 --- a/dev-tcltk/mysqltcl/mysqltcl-2.50.ebuild +++ b/dev-tcltk/mysqltcl/mysqltcl-2.50.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/mysqltcl/mysqltcl-2.50.ebuild,v 1.6 2006/11/23 17:37:23 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/mysqltcl/mysqltcl-2.50.ebuild,v 1.7 2011/05/02 06:03:44 jlec Exp $ DESCRIPTION="TCL MySQL Interface" HOMEPAGE="http://www.xdobry.de/mysqltcl/" @@ -11,17 +11,18 @@ SLOT="0" KEYWORDS="~x86 ~amd64 ~ppc" IUSE="" -DEPEND=">=dev-lang/tcl-8.1.0 +DEPEND=" + dev-lang/tcl virtual/mysql" +RDEPEND="${DEPEND}" src_compile() { - econf || die + econf emake || die } src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS COPYING README README-msqltcl ChangeLog + emake DESTDIR="${D}" install || die + dodoc AUTHORS README README-msqltcl ChangeLog dohtml doc/mysqltcl.html - prepalldocs } |