diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2014-04-08 19:47:55 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2014-04-08 19:47:55 +0000 |
commit | 56476c727a542f16b9ccb2503a6d8fa0a03f758d (patch) | |
tree | 7647b9b5dbeba18052c49f9a8a8f5293be0ccc0f /dev-tex/circuit_macros | |
parent | Remove old version. (diff) | |
download | gentoo-2-56476c727a542f16b9ccb2503a6d8fa0a03f758d.tar.gz gentoo-2-56476c727a542f16b9ccb2503a6d8fa0a03f758d.tar.bz2 gentoo-2-56476c727a542f16b9ccb2503a6d8fa0a03f758d.zip |
Version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-tex/circuit_macros')
-rw-r--r-- | dev-tex/circuit_macros/ChangeLog | 8 | ||||
-rw-r--r-- | dev-tex/circuit_macros/circuit_macros-7.8.4.ebuild | 54 |
2 files changed, 61 insertions, 1 deletions
diff --git a/dev-tex/circuit_macros/ChangeLog b/dev-tex/circuit_macros/ChangeLog index a26043189ec6..5f7427fd7c6c 100644 --- a/dev-tex/circuit_macros/ChangeLog +++ b/dev-tex/circuit_macros/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-tex/circuit_macros # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/circuit_macros/ChangeLog,v 1.9 2014/04/08 19:43:39 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/circuit_macros/ChangeLog,v 1.10 2014/04/08 19:47:55 calchan Exp $ + +*circuit_macros-7.8.4 (08 Apr 2014) + + 08 Apr 2014; Denis Dupeyron <calchan@gentoo.org> + +circuit_macros-7.8.4.ebuild: + Version bump. 08 Apr 2014; Denis Dupeyron <calchan@gentoo.org> -circuit_macros-7.7.2.ebuild: diff --git a/dev-tex/circuit_macros/circuit_macros-7.8.4.ebuild b/dev-tex/circuit_macros/circuit_macros-7.8.4.ebuild new file mode 100644 index 000000000000..65383275b853 --- /dev/null +++ b/dev-tex/circuit_macros/circuit_macros-7.8.4.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/circuit_macros/circuit_macros-7.8.4.ebuild,v 1.1 2014/04/08 19:47:55 calchan Exp $ + +EAPI=5 + +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_compile() { + : +} + +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 +} |