diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-04-07 15:04:39 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-04-07 15:04:39 +0000 |
commit | 5a6ed6ce4768da7fa699a56c34ba23e1e47f965a (patch) | |
tree | 7917c0a25219edecd6673f1e7bc3e0fc24bc9900 /dev-tcltk | |
parent | Fixed license, #362451 (diff) | |
download | gentoo-2-5a6ed6ce4768da7fa699a56c34ba23e1e47f965a.tar.gz gentoo-2-5a6ed6ce4768da7fa699a56c34ba23e1e47f965a.tar.bz2 gentoo-2-5a6ed6ce4768da7fa699a56c34ba23e1e47f965a.zip |
QA on ebuilds style, making repoman happy
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/tktable/tktable-2.10.ebuild | 4 | ||||
-rw-r--r-- | dev-tcltk/tktable/tktable-2.9.ebuild | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-tcltk/tktable/tktable-2.10.ebuild b/dev-tcltk/tktable/tktable-2.10.ebuild index 8495e4331c93..0136738762eb 100644 --- a/dev-tcltk/tktable/tktable-2.10.ebuild +++ b/dev-tcltk/tktable/tktable-2.10.ebuild @@ -1,10 +1,11 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tktable/tktable-2.10.ebuild,v 1.5 2011/04/07 15:01:35 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tktable/tktable-2.10.ebuild,v 1.6 2011/04/07 15:04:39 jlec Exp $ EAPI="2" MY_P="Tktable${PV}" + DESCRIPTION="full-featured 2D table widget" HOMEPAGE="http://tktable.sourceforge.net/" SRC_URI="mirror://sourceforge/tktable/${MY_P}.tar.gz" @@ -15,6 +16,7 @@ SLOT="0" IUSE="" DEPEND=">=dev-lang/tk-8.0" +RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_P} diff --git a/dev-tcltk/tktable/tktable-2.9.ebuild b/dev-tcltk/tktable/tktable-2.9.ebuild index e1dae1bbaf51..0a212e4327d9 100644 --- a/dev-tcltk/tktable/tktable-2.9.ebuild +++ b/dev-tcltk/tktable/tktable-2.9.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tktable/tktable-2.9.ebuild,v 1.6 2011/04/07 15:01:37 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tktable/tktable-2.9.ebuild,v 1.7 2011/04/07 15:04:39 jlec Exp $ MY_P="Tktable${PV}" + DESCRIPTION="full-featured 2D table widget" HOMEPAGE="http://tktable.sourceforge.net/" SRC_URI="mirror://sourceforge/tktable/${MY_P}.tar.gz" @@ -13,6 +14,7 @@ SLOT="0" IUSE="" DEPEND=">=dev-lang/tk-8.0" +RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_P} @@ -24,10 +26,10 @@ src_unpack() { } src_compile() { - econf || die + econf emake || die } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die } |