summaryrefslogtreecommitdiff
path: root/dev-embedded/parapin/parapin-1.5.0.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2021-10-08 23:06:07 +0100
committerV3n3RiX <venerix@koprulu.sector>2021-10-08 23:06:07 +0100
commite23a08d0c97a0cc415aaa165da840b056f93c997 (patch)
tree4c5f7db60483518201fef36f8cc0712789a08db2 /dev-embedded/parapin/parapin-1.5.0.ebuild
parent391b5b359a346aff490103da7dddc85047f83830 (diff)
gentoo resync : 08.10.2021
Diffstat (limited to 'dev-embedded/parapin/parapin-1.5.0.ebuild')
-rw-r--r--dev-embedded/parapin/parapin-1.5.0.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-embedded/parapin/parapin-1.5.0.ebuild b/dev-embedded/parapin/parapin-1.5.0.ebuild
deleted file mode 100644
index 0c172e5d1c89..000000000000
--- a/dev-embedded/parapin/parapin-1.5.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# 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
-}