public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jeroen Roovers" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/parapin/
Date: Wed, 10 Oct 2018 07:08:32 +0000 (UTC)	[thread overview]
Message-ID: <1539155310.f6769214511c2b4ccfcabb737238a7698537f252.jer@gentoo> (raw)

commit:     f6769214511c2b4ccfcabb737238a7698537f252
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 10 07:01:42 2018 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Oct 10 07:08:30 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6769214

dev-embedded/parapin: Versions 1.5.0 1.5.1_beta1

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>

 dev-embedded/parapin/Manifest                   |  2 ++
 dev-embedded/parapin/parapin-1.5.0.ebuild       | 38 +++++++++++++++++++++++
 dev-embedded/parapin/parapin-1.5.1_beta1.ebuild | 40 +++++++++++++++++++++++++
 3 files changed, 80 insertions(+)

diff --git a/dev-embedded/parapin/Manifest b/dev-embedded/parapin/Manifest
index 50e5b0f5f35..698f8ca65a3 100644
--- a/dev-embedded/parapin/Manifest
+++ b/dev-embedded/parapin/Manifest
@@ -1 +1,3 @@
 DIST parapin-1.0.0.tar.gz 240771 BLAKE2B 3c211d43028f1ee4b09568eae2408b96c9b3c1ecce5b81f3fd520ea3f480bb06044e99e04e7776b8a2b6cf7f99e57f2dcf186aea2ba9afbe4c31b9e0be3bc894 SHA512 43e4066b649bec8519c98052451ab1beb720c9c8086bbd045bb013e3c12c7e83bf0411ac4b8e7006c3acbc6d1487b918d26df65b246469e6c7e008a0e26874d9
+DIST parapin-1.5.0.tgz 249552 BLAKE2B 2a6621ec21542c35dbcae48f1bb93cd36621878b3bdfcb75f3b22aaa861e730a0f9f80f0d83eb4335d7d3b4c6c471e83003da5daea6dddc87b6e3c86ef2c7229 SHA512 732a2e4145f9dc2b765ecd1fd52d56409e69f4e3dc885f10d37661ab551604b986c95466e7d45265a268f7e759f6aa65537d1a8efcdd57d2d8b0ddfd3484728d
+DIST parapin-1.5.1-beta1.tgz 279115 BLAKE2B cce949828fec7654917da54be30ac6ed07baad615180adebbd12caba0c994e62ae95cc10a00c3653d23fe75afbe0721d6da901829a99a89ab355ea059c99d0f5 SHA512 3bc1a0a9fef5fd5f8efd84220e7e257a100d618d168332fe09c1331c38fc48e339bfda3f216713f454f43487fd7227036d8f1025ccc851806ae69326bfae97e0

diff --git a/dev-embedded/parapin/parapin-1.5.0.ebuild b/dev-embedded/parapin/parapin-1.5.0.ebuild
new file mode 100644
index 00000000000..0c172e5d1c8
--- /dev/null
+++ b/dev-embedded/parapin/parapin-1.5.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="A parallel port pin programming library"
+HOMEPAGE="http://parapin.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+
+LICENSE="LGPL-2.1"
+IUSE="doc"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+
+DEPEND="doc? ( dev-tex/latex2html )"
+
+src_compile() {
+	# Note 2.4 and 2.6 makefiles are identical for the targets used
+	emake -f Makefile-2.4 CC=$(tc-getCC)
+	use doc && emake -C doc html
+}
+
+src_install() {
+	dolib.a libparapin.a
+	insopts -m0444;	insinto /usr/include; doins parapin.h
+
+	dodoc README
+	if use doc; then
+		cd "${S}"/doc/${PN}
+		docinto html
+		dodoc *.html *.css *.png
+
+		cd "${S}"/examples
+		docinto examples
+		dodoc *.c
+	fi
+}

diff --git a/dev-embedded/parapin/parapin-1.5.1_beta1.ebuild b/dev-embedded/parapin/parapin-1.5.1_beta1.ebuild
new file mode 100644
index 00000000000..51556291ee4
--- /dev/null
+++ b/dev-embedded/parapin/parapin-1.5.1_beta1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="A parallel port pin programming library"
+HOMEPAGE="http://parapin.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P/_/-}.tgz"
+
+LICENSE="LGPL-2.1"
+IUSE="doc"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+
+DEPEND="doc? ( dev-tex/latex2html )"
+
+S=${WORKDIR}/${P/_/-}
+
+src_compile() {
+	# Note 2.4 and 2.6 makefiles are identical for the targets used
+	emake -f Makefile-2.4 CC=$(tc-getCC)
+	use doc && emake -C doc html
+}
+
+src_install() {
+	dolib.a libparapin.a
+	insopts -m0444;	insinto /usr/include; doins parapin.h
+
+	dodoc README
+	if use doc; then
+		cd "${S}"/doc/${PN}
+		docinto html
+		dodoc *.html *.css *.png
+
+		cd "${S}"/examples
+		docinto examples
+		dodoc *.c
+	fi
+}


             reply	other threads:[~2018-10-10  7:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-10  7:08 Jeroen Roovers [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-10-04 21:35 [gentoo-commits] repo/gentoo:master commit in: dev-embedded/parapin/ Michał Górny
2023-06-08 11:23 Viorel Munteanu

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=1539155310.f6769214511c2b4ccfcabb737238a7698537f252.jer@gentoo \
    --to=jer@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