summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Ferri <mescalinum@gentoo.org>2009-05-10 15:23:15 +0000
committerFederico Ferri <mescalinum@gentoo.org>2009-05-10 15:23:15 +0000
commit1cb86c56022cccd59a3bcc68721b9868fd273d4a (patch)
tree2386930476d383ff9d2df1e29fb3103432dbf2f7 /dev-tcltk
parentVersion bump. (diff)
downloadgentoo-2-1cb86c56022cccd59a3bcc68721b9868fd273d4a.tar.gz
gentoo-2-1cb86c56022cccd59a3bcc68721b9868fd273d4a.tar.bz2
gentoo-2-1cb86c56022cccd59a3bcc68721b9868fd273d4a.zip
bump to version 1.11.1, bug #259043
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk')
-rw-r--r--dev-tcltk/tcllib/ChangeLog9
-rw-r--r--dev-tcltk/tcllib/tcllib-1.11.1.ebuild27
2 files changed, 34 insertions, 2 deletions
diff --git a/dev-tcltk/tcllib/ChangeLog b/dev-tcltk/tcllib/ChangeLog
index 243f8fea5b14..59a24dc9c39d 100644
--- a/dev-tcltk/tcllib/ChangeLog
+++ b/dev-tcltk/tcllib/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-tcltk/tcllib
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.24 2008/10/26 11:35:16 mescalinum Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.25 2009/05/10 15:23:15 mescalinum Exp $
+
+*tcllib-1.11.1 (10 May 2009)
+
+ 10 May 2009; Federico Ferri <mescalinum@gentoo.org> +tcllib-1.11.1.ebuild:
+ bump to version 1.11.1, bug #259043
*tcllib-1.11 (26 Oct 2008)
diff --git a/dev-tcltk/tcllib/tcllib-1.11.1.ebuild b/dev-tcltk/tcllib/tcllib-1.11.1.ebuild
new file mode 100644
index 000000000000..96b0817df73c
--- /dev/null
+++ b/dev-tcltk/tcllib/tcllib-1.11.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/tcllib-1.11.1.ebuild,v 1.1 2009/05/10 15:23:15 mescalinum Exp $
+
+DESCRIPTION="Tcl Standard Library."
+HOMEPAGE="http://www.tcl.tk/software/tcllib/"
+SRC_URI="mirror://sourceforge/tcllib/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="examples"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~s390 ~sparc ~x86 ~x86-fbsd"
+
+DEPEND=">=dev-lang/tcl-8.4"
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+
+ dodoc ChangeLog DESCRIPTION.txt README* STATUS devdoc/*.txt
+ dohtml devdoc/*.html
+ if use examples ; then
+ for f in $(find examples -type f); do
+ docinto $(dirname $f)
+ dodoc $f
+ done
+ fi
+}