diff options
author | 2009-03-07 16:19:23 +0000 | |
---|---|---|
committer | 2009-03-07 16:19:23 +0000 | |
commit | 249eaad32e549d80c5b816bc33c29dfc7b9c1337 (patch) | |
tree | 2b11064e5040e8e1bf4799a1fd48c68be81f0be6 /dev-util/tkcvs/tkcvs-8.2.ebuild | |
parent | stable x86, bug 244026 (diff) | |
download | gentoo-2-249eaad32e549d80c5b816bc33c29dfc7b9c1337.tar.gz gentoo-2-249eaad32e549d80c5b816bc33c29dfc7b9c1337.tar.bz2 gentoo-2-249eaad32e549d80c5b816bc33c29dfc7b9c1337.zip |
Bump to 8.2. Fixes #259850
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/tkcvs/tkcvs-8.2.ebuild')
-rw-r--r-- | dev-util/tkcvs/tkcvs-8.2.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-util/tkcvs/tkcvs-8.2.ebuild b/dev-util/tkcvs/tkcvs-8.2.ebuild new file mode 100644 index 000000000000..58899ee78899 --- /dev/null +++ b/dev-util/tkcvs/tkcvs-8.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/tkcvs/tkcvs-8.2.ebuild,v 1.1 2009/03/07 16:19:23 patrick Exp $ + +inherit eutils + +MY_P=${PN}_${PV//./_} +DESCRIPTION="TkCVS is a Tcl/Tk-based graphical interface to CVS." +SRC_URI="http://www.twobarleycorns.net/${MY_P}.tar.gz" +HOMEPAGE="http://www.twobarleycorns.net/tkcvs.html" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND=">=dev-lang/tk-8.4" +RDEPEND="${DEPEND} + dev-util/cvs + dev-util/subversion + sys-apps/diffutils + dev-tcltk/tkdiff" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + cd "${S}" + sed -e "/set MANDIR/s/man man1/share man man1/" \ + -e "/set LIBDIR/s/lib/$(get_libdir)/" \ + -i doinstall.tcl || die +} + +src_install() { + # bug 66030 + unset DISPLAY + ./doinstall.tcl -nox "${D}"/usr || die + + # dev-tcktk/tkdiff + rm "${D}"/usr/bin/tkdiff + + # Add docs...this is important + dodoc CHANGELOG FAQ +} |