diff options
author | Brandy Westcott <brandy@gentoo.org> | 2003-11-05 23:55:23 +0000 |
---|---|---|
committer | Brandy Westcott <brandy@gentoo.org> | 2003-11-05 23:55:23 +0000 |
commit | fa016b9d5d79ca3cf91f812946aebbdbab00900b (patch) | |
tree | 6652e9dbb6f1fd65892a6d16c2cb8173f4ff3921 /dev-util/tkcvs/tkcvs-7.1.4.ebuild | |
parent | Fix manifest. (diff) | |
download | historical-fa016b9d5d79ca3cf91f812946aebbdbab00900b.tar.gz historical-fa016b9d5d79ca3cf91f812946aebbdbab00900b.tar.bz2 historical-fa016b9d5d79ca3cf91f812946aebbdbab00900b.zip |
Version bumped to 7.1.4. Closes bug #32391.
Diffstat (limited to 'dev-util/tkcvs/tkcvs-7.1.4.ebuild')
-rw-r--r-- | dev-util/tkcvs/tkcvs-7.1.4.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-util/tkcvs/tkcvs-7.1.4.ebuild b/dev-util/tkcvs/tkcvs-7.1.4.ebuild new file mode 100644 index 000000000000..1b63cb4a8f28 --- /dev/null +++ b/dev-util/tkcvs/tkcvs-7.1.4.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/tkcvs/tkcvs-7.1.4.ebuild,v 1.1 2003/11/05 23:55:14 brandy Exp $ + +MY_P=${PN}_${PV//./_} +S=${WORKDIR}/${MY_P} +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="~x86" + +RDEPEND=">=dev-lang/tk-8.3 + dev-util/cvs + sys-apps/diffutils" + +src_compile() { + echo "It's tcl, you don't need to compile. ;)" +} + +src_install() { + dodir /usr/lib /usr/bin /usr/lib/tkcvs/ /usr/lib/tkcvs/bitmaps + + ./doinstall.tcl -nox -finallib /usr/lib ${D}/usr || die + + # Move man pages to FHS compliant locations + dodir /usr/share/man/man1 + mv ${D}/usr/man/man1/* ${D}/usr/share/man/man1 + rm -rf ${D}/usr/man + + insinto /usr/lib/tkcvs/bitmaps + doins tkdiff/tkdiff.xbm + + # Add docs...this is important + dodoc CHANGELOG COPYING FAQ README.tkcvs README.windows + + docinto tkdiff + dodoc tkdiff/COPYING + + docinto tkcvs + dodoc tkcvs/vendor.readme +} |