diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-09-27 10:05:40 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-09-27 10:05:40 +0000 |
commit | 425efb32d293594f01c0630f65dba987d8233526 (patch) | |
tree | a98c82248295d97438257e66112a32f6352c2843 /dev-util/tkcvs | |
parent | Updated mask for glibc (diff) | |
download | historical-425efb32d293594f01c0630f65dba987d8233526.tar.gz historical-425efb32d293594f01c0630f65dba987d8233526.tar.bz2 historical-425efb32d293594f01c0630f65dba987d8233526.zip |
bugfix version bump
Diffstat (limited to 'dev-util/tkcvs')
-rw-r--r-- | dev-util/tkcvs/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/tkcvs/files/digest-tkcvs-7.03 | 1 | ||||
-rw-r--r-- | dev-util/tkcvs/tkcvs-7.03.ebuild | 39 |
3 files changed, 49 insertions, 1 deletions
diff --git a/dev-util/tkcvs/ChangeLog b/dev-util/tkcvs/ChangeLog index 5cf876bf4000..772402626f53 100644 --- a/dev-util/tkcvs/ChangeLog +++ b/dev-util/tkcvs/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-util/tkcvs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-util/tkcvs/ChangeLog,v 1.1 2002/02/01 21:53:29 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/tkcvs/ChangeLog,v 1.2 2002/09/27 10:05:40 seemant Exp $ + +*tkcvs-7.03 (27 Sep 2002) + + 27 Sep 2002; Seemant Kulleen <seemant@gentoo.org> tkcvs-7.03.ebuild + files/digest-tkcvs-7.03 : + + Upstream bugfix version bump. This one is reported by users to actually + work. Thanks to: gilles_gros@yahoo.com (Gilles G) in bug #8385 *tkcvs-6.4-r2 (1 Feb 2002) diff --git a/dev-util/tkcvs/files/digest-tkcvs-7.03 b/dev-util/tkcvs/files/digest-tkcvs-7.03 new file mode 100644 index 000000000000..7192fdeaca31 --- /dev/null +++ b/dev-util/tkcvs/files/digest-tkcvs-7.03 @@ -0,0 +1 @@ +MD5 ef4bc8916234fac04f9e809faa416f8d tkcvs-7_03.tar.gz 218921 diff --git a/dev-util/tkcvs/tkcvs-7.03.ebuild b/dev-util/tkcvs/tkcvs-7.03.ebuild new file mode 100644 index 000000000000..271494bb75d1 --- /dev/null +++ b/dev-util/tkcvs/tkcvs-7.03.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/tkcvs/tkcvs-7.03.ebuild,v 1.1 2002/09/27 10:05:40 seemant Exp $ + +MY_P=${PN}-${PV/./_} +S=${WORKDIR}/${MY_P} +DESCRIPTION="TkCVS" +SRC_URI="http://www.twobarleycorns.net/${MY_P}.tar.gz" +HOMEPAGE="http://www.twobarleycorns.net/tkcvs.html" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 sparc sparc64" + +RDEPEND=">=dev-lang/tk-8.1.1" + +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 ${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 + + # Add docs...this is important + dodoc CHANGELOG COPYING FAQ README.tkcvs README.windows + + docinto tkdiff + dodoc tkdiff/PATCHES tkdiff/COPYING + + docinto tkcvs + dodoc tkcvs/vendor.readme +} |