diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-06-12 20:30:10 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-06-12 20:30:10 +0000 |
commit | 3fac23a446c97fdecadaa1db284827db82272898 (patch) | |
tree | 5ee4d8ebb97358fba95b35e0c1629eaa6d82edcd /app-text | |
parent | python-any-r1 & waf-utils to the rescue. (diff) | |
download | gentoo-2-3fac23a446c97fdecadaa1db284827db82272898.tar.gz gentoo-2-3fac23a446c97fdecadaa1db284827db82272898.tar.bz2 gentoo-2-3fac23a446c97fdecadaa1db284827db82272898.zip |
Bump to EAPI=5. python-single-r1 to the rescue.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/txt2tags/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/txt2tags/txt2tags-2.6-r1.ebuild | 81 |
2 files changed, 87 insertions, 1 deletions
diff --git a/app-text/txt2tags/ChangeLog b/app-text/txt2tags/ChangeLog index 782218148034..bc82524a5e3f 100644 --- a/app-text/txt2tags/ChangeLog +++ b/app-text/txt2tags/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/txt2tags # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/ChangeLog,v 1.51 2015/03/09 19:15:33 rafaelmartins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/ChangeLog,v 1.52 2015/06/12 20:30:10 mgorny Exp $ + +*txt2tags-2.6-r1 (12 Jun 2015) + + 12 Jun 2015; Michał Górny <mgorny@gentoo.org> +txt2tags-2.6-r1.ebuild: + Bump to EAPI=5. python-single-r1 to the rescue. 09 Mar 2015; Rafael G. Martins <rafaelmartins@gentoo.org> metadata.xml: adopted package. diff --git a/app-text/txt2tags/txt2tags-2.6-r1.ebuild b/app-text/txt2tags/txt2tags-2.6-r1.ebuild new file mode 100644 index 000000000000..820eeea8bb19 --- /dev/null +++ b/app-text/txt2tags/txt2tags-2.6-r1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/txt2tags/txt2tags-2.6-r1.ebuild,v 1.1 2015/06/12 20:30:10 mgorny Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="tk?" + +inherit eutils elisp-common python-single-r1 + +DESCRIPTION="A tool for generating marked up documents (HTML, SGML, ...) from a plain text file with markup" +HOMEPAGE="http://txt2tags.org/" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" +IUSE="emacs tk vim-syntax" + +DEPEND="${PYTHON_DEPS} + tk? ( dev-lang/tk ) + vim-syntax? ( + || ( + app-editors/vim + app-editors/gvim + ) + ) + emacs? ( virtual/emacs )" + +RDEPEND="${DEPEND}" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +SITEFILE="51${PN}-gentoo.el" + +src_compile() { + if use emacs; then + elisp-compile extras/txt2tags-mode.el || die "elisp-compile failed" + fi +} + +src_install() { + dobin txt2tags + + dodoc README ChangeLog* + dodoc doc/*.{pdf,t2t} + dodoc -r samples extras + newman doc/manpage.man txt2tags.1 + + # make .po files + for pofile in "${S}"/po/*.po; do + msgfmt -o ${pofile%%.po}.mo ${pofile} + done + domo po/*.mo + + # emacs support + if use emacs; then + elisp-install ${PN} extras/txt2tags-mode.{el,elc} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + fi + + if use vim-syntax; then + insinto /usr/share/vim/vimfiles/syntax/ + doins extras/txt2tags.vim || die + + echo 'au BufNewFile,BufRead *.t2t set ft=txt2tags' > "${T}/${PN}.vim" + insinto /usr/share/vim/vimfiles/ftdetect + doins "${T}/${PN}.vim" || die + fi + + python_fix_shebang "${D}" +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |