diff options
author | Jonas Stein <news@jonasstein.de> | 2016-08-23 21:08:34 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-08-23 21:37:26 +0200 |
commit | 48fb59b033d90d806ab304d4680ca2548333ab36 (patch) | |
tree | 9039d0888c3c2a7ef00d6680ea41e66d229a5dfd /media-gfx/dpic/dpic-20160824.ebuild | |
parent | dev-qt/qtquickcontrols: arm stable, bug #586180 (diff) | |
download | gentoo-48fb59b033d90d806ab304d4680ca2548333ab36.tar.gz gentoo-48fb59b033d90d806ab304d4680ca2548333ab36.tar.bz2 gentoo-48fb59b033d90d806ab304d4680ca2548333ab36.zip |
media-gfx/dpic: version bump to 20160824.
* add upstream section to metadata
* bump to 20160824
Closes: https://github.com/gentoo/gentoo/pull/2131
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'media-gfx/dpic/dpic-20160824.ebuild')
-rw-r--r-- | media-gfx/dpic/dpic-20160824.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/media-gfx/dpic/dpic-20160824.ebuild b/media-gfx/dpic/dpic-20160824.ebuild new file mode 100644 index 000000000000..55b3c3296238 --- /dev/null +++ b/media-gfx/dpic/dpic-20160824.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Converts PIC plots into pstricks, PGF/TikZ, PostScript, MetaPost and TeX" +HOMEPAGE="https://ece.uwaterloo.ca/~aplevich/dpic" +SRC_URI="https://ece.uwaterloo.ca/~aplevich/dpic/${PN}-2016.08.24.tar.gz" + +# dpic: BSD-2, dpicdoc.pdf: CC-BY-3.0, p2c: GPL +LICENSE="BSD-2 CC-BY-3.0 GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${PN}-2016.08.24" + +DOCS=( "README" "doc/dpicdoc.pdf" ) + +src_install () { + dobin ${PN} + doman doc/${PN}.1 + + einstalldocs + + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} |