diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-10-01 18:12:27 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-10-01 18:12:27 +0000 |
commit | cf3d3cbfebef5476e1ac473f1e90a321322a73d1 (patch) | |
tree | f996e832abfd999300a46b4c576195640a2d0a27 /app-text | |
parent | Fix examples installation, broken by previous update. (diff) | |
download | gentoo-2-cf3d3cbfebef5476e1ac473f1e90a321322a73d1.tar.gz gentoo-2-cf3d3cbfebef5476e1ac473f1e90a321322a73d1.tar.bz2 gentoo-2-cf3d3cbfebef5476e1ac473f1e90a321322a73d1.zip |
clean up
(Portage version: 2.1.3.9)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/txt2tags/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/txt2tags/files/50txt2tags-gentoo.el | 5 | ||||
-rw-r--r-- | app-text/txt2tags/files/digest-txt2tags-2.1 | 3 | ||||
-rw-r--r-- | app-text/txt2tags/files/digest-txt2tags-2.3 | 3 | ||||
-rw-r--r-- | app-text/txt2tags/txt2tags-2.1.ebuild | 84 | ||||
-rw-r--r-- | app-text/txt2tags/txt2tags-2.3.ebuild | 77 |
6 files changed, 5 insertions, 173 deletions
diff --git a/app-text/txt2tags/ChangeLog b/app-text/txt2tags/ChangeLog index 1e476e80ec77..ae451767d7a7 100644 --- a/app-text/txt2tags/ChangeLog +++ b/app-text/txt2tags/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/txt2tags # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/ChangeLog,v 1.31 2007/09/28 14:37:59 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/ChangeLog,v 1.32 2007/10/01 18:12:26 opfer Exp $ + + 01 Oct 2007; Christian Faulhammer <opfer@gentoo.org> + -files/50txt2tags-gentoo.el, -txt2tags-2.1.ebuild, -txt2tags-2.3.ebuild: + clean up 28 Sep 2007; Christoph Mende <angelos@gentoo.org> txt2tags-2.3-r1.ebuild: Stable on amd64 wrt bug #182295 diff --git a/app-text/txt2tags/files/50txt2tags-gentoo.el b/app-text/txt2tags/files/50txt2tags-gentoo.el deleted file mode 100644 index 9f1f30550f7a..000000000000 --- a/app-text/txt2tags/files/50txt2tags-gentoo.el +++ /dev/null @@ -1,5 +0,0 @@ - -;;; txt2tags site-lisp configuration - -(add-to-list 'load-path "@SITELISP@") -(load "txt2tags-mode") diff --git a/app-text/txt2tags/files/digest-txt2tags-2.1 b/app-text/txt2tags/files/digest-txt2tags-2.1 deleted file mode 100644 index 8470bb384bee..000000000000 --- a/app-text/txt2tags/files/digest-txt2tags-2.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 05a0ddcd76aaca72584a12520c764034 txt2tags-2.1.tgz 593028 -RMD160 e54c1e3ae34ec2f0d4c3535dcfaa8db179402f17 txt2tags-2.1.tgz 593028 -SHA256 ddfbab5a94204a476db0af0def8551e591aedfa22aeee1dea2f430bb35eec462 txt2tags-2.1.tgz 593028 diff --git a/app-text/txt2tags/files/digest-txt2tags-2.3 b/app-text/txt2tags/files/digest-txt2tags-2.3 deleted file mode 100644 index 3efa052ecd62..000000000000 --- a/app-text/txt2tags/files/digest-txt2tags-2.3 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 0514bb01161183808dc8be105c032677 txt2tags-2.3.tgz 880164 -RMD160 320abbee12eb8be5e35d02068c0ff8db17734d6c txt2tags-2.3.tgz 880164 -SHA256 27759aceb384ab333db9ead28274dbd6cf0101c661564e155aa4252f9ec6bda5 txt2tags-2.3.tgz 880164 diff --git a/app-text/txt2tags/txt2tags-2.1.ebuild b/app-text/txt2tags/txt2tags-2.1.ebuild deleted file mode 100644 index 340a8415be92..000000000000 --- a/app-text/txt2tags/txt2tags-2.1.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/txt2tags-2.1.ebuild,v 1.10 2007/01/28 06:11:49 genone Exp $ - -inherit elisp-common - -IUSE="emacs tk" - -DESCRIPTION="Txt2tags is a tool for generating marked up documents (HTML, SGML, ...) from a plain text file with markup." -SRC_URI="http://txt2tags.sourceforge.net/src/${P}.tgz" -HOMEPAGE="http://txt2tags.sourceforge.net/" - -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="x86 sparc ppc amd64" -DEPEND="virtual/python - tk? ( dev-lang/tk ) - emacs? ( virtual/emacs )" - -pkg_setup() { - - # need to test if the tk support in python is working - if use tk; then - if ! python -c "import _tkinter" 2>&1 > /dev/null ; then - echo - eerror "You have requested tk, but your build of Python" - eerror "doesnt support import _tkinter. You may need to" - eerror "remerge dev-lang/python, or build ${P}" - eerror "with USE=\"-tk\"" - die - fi - fi -} - -src_compile() { - if use emacs; then - elisp-comp extras/txt2tags-mode.el - fi -} - -SITEFILE="50${PN}-gentoo.el" - -src_install() { - dobin t2tconv txt2tags - - dodoc README* TEAM TODO ChangeLog* doc/txt2tagsrc - dohtml -r doc/* - insinto /usr/share/doc/${PF} - doins doc/userguide.pdf - # samples go into "samples" doc directory - docinto samples - dodoc samples/abuseme.* samples/sample.* - docinto samples/css - dodoc samples/css/* - docinto samples/img - dodoc samples/img/* - # extras go into "extras" doc directory - docinto extras - dodoc extras/* - - newman doc/manpage.man txt2tags.1 - - # emacs support - if use emacs; then - elisp-install ${PN} extras/txt2tags-mode.el - elisp-site-file-install ${FILESDIR}/${SITEFILE} - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen - echo - elog "NOTE: the format of .t2t files has changed between versions" - elog "1.7 -> 2.0. To convert your .t2t files to the new format," - elog "use the included t2tconv script:" - elog - elog " t2tconv file1.t2t file2.t2t ..." - echo -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/app-text/txt2tags/txt2tags-2.3.ebuild b/app-text/txt2tags/txt2tags-2.3.ebuild deleted file mode 100644 index 8d8ec52836be..000000000000 --- a/app-text/txt2tags/txt2tags-2.3.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/txt2tags-2.3.ebuild,v 1.3 2007/08/20 16:15:26 grobian Exp $ - -inherit elisp-common - -IUSE="emacs tk" - -DESCRIPTION="Txt2tags is a tool for generating marked up documents (HTML, SGML, ...) from a plain text file with markup." -SRC_URI="http://txt2tags.sourceforge.net/src/${P}.tgz" -HOMEPAGE="http://txt2tags.sourceforge.net/" - -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -DEPEND="virtual/python - tk? ( dev-lang/tk ) - emacs? ( virtual/emacs )" - -pkg_setup() { - - # need to test if the tk support in python is working - if use tk; then - if ! python -c "import _tkinter" 2>&1 > /dev/null ; then - echo - eerror "You have requested tk, but your build of Python" - eerror "doesnt support import _tkinter. You may need to" - eerror "remerge dev-lang/python, or build ${P}" - eerror "with USE=\"-tk\"" - die - fi - fi -} - -src_compile() { - if use emacs; then - elisp-comp extras/txt2tags-mode.el - fi -} - -SITEFILE="50${PN}-gentoo.el" - -src_install() { - dobin txt2tags - - dodoc README* TEAM TODO ChangeLog* doc/txt2tagsrc - dohtml -r doc/* - insinto /usr/share/doc/${PF} - doins doc/userguide.pdf - # samples go into "samples" doc directory - docinto samples - dodoc samples/sample.* - docinto samples/css - dodoc samples/css/* - docinto samples/img - dodoc samples/img/* - # extras go into "extras" doc directory - docinto extras - dodoc extras/* - - newman doc/manpage.man txt2tags.1 - - # emacs support - if use emacs; then - elisp-install ${PN} extras/txt2tags-mode.el - elisp-site-file-install ${FILESDIR}/${SITEFILE} - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} |