diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-12-11 17:06:35 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-12-11 17:06:35 +0100 |
commit | 4d356eca43a710a901ad5e3075a56dc27ea82d37 (patch) | |
tree | 885f455431dfd7f922886c5476888ca4a2b77635 /dev-libs/libserialport | |
parent | dev-libs/libserialport: Stabilize 0.1.1-r1 amd64, #828931 (diff) | |
download | gentoo-4d356eca43a710a901ad5e3075a56dc27ea82d37.tar.gz gentoo-4d356eca43a710a901ad5e3075a56dc27ea82d37.tar.bz2 gentoo-4d356eca43a710a901ad5e3075a56dc27ea82d37.zip |
dev-libs/libserialport: drop 0.1.1
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-libs/libserialport')
-rw-r--r-- | dev-libs/libserialport/libserialport-0.1.1.ebuild | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-libs/libserialport/libserialport-0.1.1.ebuild b/dev-libs/libserialport/libserialport-0.1.1.ebuild deleted file mode 100644 index b6824186f222..000000000000 --- a/dev-libs/libserialport/libserialport-0.1.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -if [[ ${PV} == "9999" ]]; then - EGIT_REPO_URI="git://sigrok.org/${PN}" - inherit autotools git-r3 -else - SRC_URI="https://sigrok.org/download/source/${PN}/${P}.tar.gz" - KEYWORDS="amd64 x86" -fi - -DESCRIPTION="Cross platform serial port access library" -HOMEPAGE="https://sigrok.org/wiki/Libserialport" - -LICENSE="LGPL-3" -SLOT="0" -IUSE="static-libs" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - - [[ ${PV} == "9999" ]] && eautoreconf -} - -src_configure() { - econf $(use_enable static-libs static) -} - -src_install() { - default - - find "${ED}" -name '*.la' -type f -delete || die -} |