diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-06 10:28:38 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-06 10:28:38 +0100 |
commit | dcb1c23c32e71a2e5bfffb276ff616da60f2fd98 (patch) | |
tree | 974186a42202a5682998a4ecbce6bc9040fed49e /dev-libs | |
parent | app-doc/eclass-manpages: Drop old (diff) | |
download | gentoo-dcb1c23c32e71a2e5bfffb276ff616da60f2fd98.tar.gz gentoo-dcb1c23c32e71a2e5bfffb276ff616da60f2fd98.tar.bz2 gentoo-dcb1c23c32e71a2e5bfffb276ff616da60f2fd98.zip |
dev-libs/luise-bin: Drop old (EAPI 0)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/luise-bin/luise-bin-0.1.1.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-libs/luise-bin/luise-bin-0.1.1.ebuild b/dev-libs/luise-bin/luise-bin-0.1.1.ebuild deleted file mode 100644 index c1ffd9dd703c..000000000000 --- a/dev-libs/luise-bin/luise-bin-0.1.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit multilib - -MY_PN="LUIse" - -DESCRIPTION="Programming interface for the Wallbraun LCD-USB-Interface" -HOMEPAGE="http://wallbraun-electronics.de/downloadssite/" -SRC_URI="http://www.wallbraun-electronics.de/downloads/${MY_PN}_${PV}.tar.gz" - -LICENSE="BSD GPL-2+" -SLOT="0" -KEYWORDS="-* amd64 x86" -IUSE="doc examples" - -DEPEND="=virtual/libusb-0*" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_PN}_${PV}" -src_install() { - if use x86 ; then - insinto /usr/include - doins 32bit/luise.h - dolib.so 32bit/libluise.so.0.1.1 - fi - if use amd64 ; then - insinto /usr/include - doins 64bit/luise.h - newlib.so 64bit/libluise_64.so.0.1.1 libluise.so.0.1.1 - fi - dosym /usr/$(get_libdir)/libluise.so{.0.1.1,} - - newdoc doc/readme README - use doc && dodoc doc/docu_luise011_Linux.pdf - if use examples ; then - docinto examples - dodoc samples/luise-test/* - fi -} |