diff options
author | 2016-07-20 12:34:49 -0600 | |
---|---|---|
committer | 2016-07-21 10:54:27 -0600 | |
commit | 30c9ae5322cb8c0863055770c7c417021c2efbb8 (patch) | |
tree | e54ddf755c4d509f93872b3472ae66006bc564eb /dev-tex/circuit_macros/circuit_macros-8.4.1.ebuild | |
parent | sys-kernel/hardened-sources: remove oldest stable kernel, bug #572604 (diff) | |
download | gentoo-30c9ae5322cb8c0863055770c7c417021c2efbb8.tar.gz gentoo-30c9ae5322cb8c0863055770c7c417021c2efbb8.tar.bz2 gentoo-30c9ae5322cb8c0863055770c7c417021c2efbb8.zip |
dev-tex/circuit_macros: bump to 8.4.1
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-tex/circuit_macros/circuit_macros-8.4.1.ebuild')
-rw-r--r-- | dev-tex/circuit_macros/circuit_macros-8.4.1.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-tex/circuit_macros/circuit_macros-8.4.1.ebuild b/dev-tex/circuit_macros/circuit_macros-8.4.1.ebuild new file mode 100644 index 000000000000..a4619f9dcf75 --- /dev/null +++ b/dev-tex/circuit_macros/circuit_macros-8.4.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit texlive-common + +DESCRIPTION="M4 Macros for Electric circuit diagrams in TeX or LaTeX" +HOMEPAGE="https://ece.uwaterloo.ca/~aplevich/Circuit_macros/" +SRC_URI="https://ece.uwaterloo.ca/~aplevich/Circuit_macros/Circuit_macros.tar.gz -> circuit_macros-${PV}.tar.gz" + +LICENSE="LPPL-1.3c" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples +script" + +DEPEND="" +RDEPEND="|| ( app-text/texlive[graphics] app-text/texlive[pstricks] ) + media-gfx/dpic + sys-devel/m4 + script? ( app-text/texlive[graphics] + dev-texlive/texlive-latexextra )" + +S="${WORKDIR}/Circuit_macros${PV}" + +src_install() { + insinto /usr/share/${PN} + doins *.m4 + insinto /usr/share/texmf-site/tex/latex/${PN} + doins boxdims.sty + dodoc README CHANGES Makefile doc/CMman.pdf + rm -f doc/CMman.pdf + use doc && dodoc -r doc + use examples && dodoc -r examples + use script && dobin "${FILESDIR}/cm2pdf" + docompress -x \ + /usr/share/doc/${PF}/Makefile \ + /usr/share/doc/${PF}/doc \ + /usr/share/doc/${PF}/examples +} + +pkg_postinst() { + etexmf-update + use script && einfo "cm2pdf was installed to automatically create PDFs. Run cm2pdf --help for usage help." +} + +pkg_postrm() { + etexmf-update +} |