From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/abcm2ps/
Date: Thu, 25 May 2017 15:06:38 +0000 (UTC) [thread overview]
Message-ID: <1495724782.d1ebc68d7655c5dff28da92a795e7e37bfe664b9.aballier@gentoo> (raw)
commit: d1ebc68d7655c5dff28da92a795e7e37bfe664b9
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu May 25 14:58:19 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu May 25 15:06:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1ebc68d
media-sound/abcm2ps: Bump to 8.13.10
Package-Manager: Portage-2.3.6, Repoman-2.3.2
media-sound/abcm2ps/Manifest | 1 +
media-sound/abcm2ps/abcm2ps-8.13.10.ebuild | 48 ++++++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/media-sound/abcm2ps/Manifest b/media-sound/abcm2ps/Manifest
index 17b1d6a38d2..899e8d8bced 100644
--- a/media-sound/abcm2ps/Manifest
+++ b/media-sound/abcm2ps/Manifest
@@ -1,3 +1,4 @@
DIST abcm2ps-8.12.9.tar.gz 238669 SHA256 72b8f40964234edf2043bdc83527c37989bbb5fb3b4c108c2ef3cd1883399af4 SHA512 77aa36fccfe508dcd132619c1a372d2b5a22957a58795610aec4eed0e4f5c9dc268298dcd86691a26b8e0b126d38c4c61ba4766a5a39adbd8279985a74229cd5 WHIRLPOOL 63ee2d76a9fd80e56b419e22db9d9a9d132343049293d927ec179b3b5665ddc564b63c08f454b568b62f4e7200da7152a2cf2cd2e7a93e99b75d3fd8a178a601
+DIST abcm2ps-8.13.10.tar.gz 249235 SHA256 96a8133b587b8b8b92d485f52848134eb587379ff308b708a8e0bb64224bd90a SHA512 21e5c985c9b4ac0ba49973661f74bd6244a386030622919b6c8d5a220e5064b933929ddda0d025ad02638413d0b34c2687bb5370a858604c6a5e9a6b084369a4 WHIRLPOOL b8806d01afa991b523a27ed445c968c9ad40bdf03964e937052277b08371f0e0adfe73d6252ba5fb5e4dd2e8fbe7bee6161b36979c4c08913d7fe677b9d50bc8
DIST abcm2ps-8.13.9.tar.gz 248893 SHA256 372bc6d5bb5ba087b71abeb6240c806f940a59e9664f46e5f4f1faec52e815a7 SHA512 7ce6efe605c073674ec7f30d26a34848e22a5c9f97058431243ee17598e35ebc991b760bc99847294f860f6b936e3ae2f504d2de842a487f226e32c47fac438e WHIRLPOOL 19a1219c5024b913e2bc5d6599c592e70cb110e751e39ce7cdf84bcc61a95afea0419dad08c6f4e29b63c14e12f24a6bd77203750c42f7503f00daf943b2d471
DIST transpose_abc.pl 21045 SHA256 bd6960872bfbc9f71f183f36d533ea33b8cf62a6027b447f0b0b8adfa25a2848 SHA512 dc2623608a7b59d7e0c4d25160e69f696f170e9938dc3e035edbaf6f0163b4c6139892ec8734ea2aaba997507dcf32208562e898690600dc3c199046d4d151f3 WHIRLPOOL 81e327bbd76b40826adab06f7756c79c60289b21432b792c848db3ba1354528fa4f1a074cba890b6087cfac6e712427c6cbb2c9e6679c8ced22c362f6ec005f3
diff --git a/media-sound/abcm2ps/abcm2ps-8.13.10.ebuild b/media-sound/abcm2ps/abcm2ps-8.13.10.ebuild
new file mode 100644
index 00000000000..2d4a35b5889
--- /dev/null
+++ b/media-sound/abcm2ps/abcm2ps-8.13.10.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit toolchain-funcs
+
+DESCRIPTION="A program to convert abc files to Postscript files"
+HOMEPAGE="http://moinejf.free.fr/"
+SRC_URI="http://moinejf.free.fr/${P}.tar.gz
+ http://moinejf.free.fr/transpose_abc.pl"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="examples pango"
+
+RDEPEND="pango? ( x11-libs/pango media-libs/freetype:2 )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+src_configure() {
+ econf \
+ --enable-a4 \
+ --enable-deco-is-roll \
+ $(use_enable pango)
+}
+
+src_compile() {
+ emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
+}
+
+src_install() {
+ dobin abcm2ps
+
+ insinto /usr/share/${PN}
+ doins *.fmt
+
+ dodoc Changes README *.txt
+
+ if use examples ; then
+ docinto examples
+ dodoc *.{abc,eps}
+ docompress -x /usr/share/doc/${PF}/examples
+ fi
+
+ docinto contrib
+ dodoc "${DISTDIR}"/transpose_abc.pl
+}
next reply other threads:[~2017-05-25 15:06 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-25 15:06 Alexis Ballier [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-02-11 12:15 [gentoo-commits] repo/gentoo:master commit in: media-sound/abcm2ps/ Miroslav Šulc
2024-02-11 3:39 Sam James
2024-02-11 3:39 Sam James
2024-01-10 9:47 Miroslav Šulc
2023-01-24 6:45 Miroslav Šulc
2023-01-22 19:04 Sam James
2023-01-22 19:04 Sam James
2022-12-20 8:58 Miroslav Šulc
2022-03-02 21:48 Miroslav Šulc
2022-03-02 8:45 Jakov Smolić
2022-03-02 8:45 Jakov Smolić
2022-01-30 9:19 Miroslav Šulc
2021-08-19 5:47 Miroslav Šulc
2021-08-19 1:25 Agostino Sarubbo
2021-08-18 12:58 Agostino Sarubbo
2021-07-16 7:15 Miroslav Šulc
2021-04-19 20:54 Sam James
2021-02-04 7:58 Agostino Sarubbo
2021-02-03 23:55 Thomas Deutschmann
2021-01-01 3:13 Sam James
2021-01-01 3:13 Sam James
2020-01-18 3:39 Tim Harder
2019-06-04 22:00 Andreas Sturmlechner
2019-06-04 22:00 Andreas Sturmlechner
2019-06-04 20:54 Agostino Sarubbo
2019-04-08 16:37 Aaron Bauman
2019-04-03 4:46 Tim Harder
2019-03-30 9:59 Andreas Sturmlechner
2017-07-13 6:11 Tim Harder
2017-06-26 8:37 Alexis Ballier
2017-05-25 15:06 Alexis Ballier
2017-04-23 11:11 Alexis Ballier
2017-04-03 8:34 Tim Harder
2017-02-09 13:10 Alexis Ballier
2017-01-06 9:42 Alexis Ballier
2016-12-29 13:04 Alexis Ballier
2016-12-09 5:53 Tim Harder
2016-12-09 5:53 Tim Harder
2016-12-09 5:53 Tim Harder
2016-11-04 0:45 Tim Harder
2016-11-04 0:45 Tim Harder
2016-11-04 0:45 Tim Harder
2016-10-26 22:35 Tim Harder
2016-09-24 1:13 Tim Harder
2016-08-19 2:31 Tim Harder
2016-08-19 2:31 Tim Harder
2016-08-19 2:31 Tim Harder
2015-08-29 13:58 Alexis Ballier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1495724782.d1ebc68d7655c5dff28da92a795e7e37bfe664b9.aballier@gentoo \
--to=aballier@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox