diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-02-20 15:37:43 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-02-20 15:37:43 +0000 |
commit | 913688556bc85ff395c7ed295249b6048a4012b2 (patch) | |
tree | 766dd73f55568ca004b39328aedad55b616aaa81 /dev-tcltk/tcllib | |
parent | Version bump. (diff) | |
download | gentoo-2-913688556bc85ff395c7ed295249b6048a4012b2.tar.gz gentoo-2-913688556bc85ff395c7ed295249b6048a4012b2.tar.bz2 gentoo-2-913688556bc85ff395c7ed295249b6048a4012b2.zip |
dev-tcltk/tcllib: Version Bump
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
Diffstat (limited to 'dev-tcltk/tcllib')
-rw-r--r-- | dev-tcltk/tcllib/ChangeLog | 10 | ||||
-rw-r--r-- | dev-tcltk/tcllib/metadata.xml | 2 | ||||
-rw-r--r-- | dev-tcltk/tcllib/tcllib-1.15.ebuild | 33 |
3 files changed, 42 insertions, 3 deletions
diff --git a/dev-tcltk/tcllib/ChangeLog b/dev-tcltk/tcllib/ChangeLog index 1fb0c5b64d7c..755f9ef6ba79 100644 --- a/dev-tcltk/tcllib/ChangeLog +++ b/dev-tcltk/tcllib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-tcltk/tcllib -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.34 2012/06/19 15:35:14 jlec Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.35 2013/02/20 15:37:43 jlec Exp $ + +*tcllib-1.15 (20 Feb 2013) + + 20 Feb 2013; Justin Lecher <jlec@gentoo.org> +tcllib-1.15.ebuild, + metadata.xml: + Version Bump 19 Jun 2012; Justin Lecher <jlec@gentoo.org> -tcllib-1.6.1.ebuild, -tcllib-1.11.ebuild, -tcllib-1.11.1.ebuild, tcllib-1.14.ebuild: diff --git a/dev-tcltk/tcllib/metadata.xml b/dev-tcltk/tcllib/metadata.xml index 815cc916f2b6..70ac40499556 100644 --- a/dev-tcltk/tcllib/metadata.xml +++ b/dev-tcltk/tcllib/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>tcltk</herd> + <herd>tcltk</herd> </pkgmetadata> diff --git a/dev-tcltk/tcllib/tcllib-1.15.ebuild b/dev-tcltk/tcllib/tcllib-1.15.ebuild new file mode 100644 index 000000000000..30147ab76567 --- /dev/null +++ b/dev-tcltk/tcllib/tcllib-1.15.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/tcllib-1.15.ebuild,v 1.1 2013/02/20 15:37:43 jlec Exp $ + +EAPI=5 + +DESCRIPTION="Tcl Standard Library" +HOMEPAGE="http://www.tcl.tk/software/tcllib/" +SRC_URI="mirror://sourceforge/tcllib/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +IUSE="examples" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~s390 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" + +RDEPEND="dev-lang/tcl" +DEPEND="${RDEPEND}" + +DOCS=( DESCRIPTION.txt STATUS ) + +src_install() { + default + + dodoc devdoc/*.txt + + dohtml devdoc/*.html + if use examples ; then + for f in $(find examples -type f); do + docinto $(dirname $f) + dodoc $f + done + fi +} |