dev-embedded/libftdi: Drop old
authorMikle Kolyada <zlogene@gentoo.org>
Thu, 26 Jul 2018 00:44:34 +0000 (03:44 +0300)
committerMikle Kolyada <zlogene@gentoo.org>
Thu, 26 Jul 2018 00:44:34 +0000 (03:44 +0300)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

dev-embedded/libftdi/Manifest
dev-embedded/libftdi/libftdi-0.19.ebuild [deleted file]

index 9e0b4670079729e57903b11ff960b29eae213079..652b1fabd0e471c77c54eac6d80a8a6a57901035 100644 (file)
@@ -1,4 +1,3 @@
-DIST libftdi-0.19.tar.gz 406671 BLAKE2B 47979967d8597584e46a5d9297ed24454d0583869110b52af7662a04a4b037ea57ec6ba133a61d355f0ccf1366b14195a8ccb13d7bb585264cdd1d528f2cf2d9 SHA512 c6deefe8c83063343321e8c2c6b6c1c2842a9f1caf4e54f47106c3c4aac638736f19fecf91582c6cc9f4917c4d140157440c360ce3a030dfb7fa027483bab972
 DIST libftdi-0.20.tar.gz 423570 BLAKE2B f0aa420a704e18c4257b99a4593dbaf46a15806d980b24909fe8678b36e74b568cd5915db1e14f8b904541334fbf3d18f069dc479a0bf66b2ea8e113611cb82b SHA512 540e5eb201a65936c3dbabff70c251deba1615874b11ff27c5ca16c39d71c150cf61758a68b541135a444fe32ab403b0fba0daf55c587647aaf9b3f400f1dee7
 DIST libftdi1-1.2.tar.bz2 100672 BLAKE2B 314ee2695324bc3f6adad56d7ff8fddabfb86714a689ee309afc6aa8498a19fc55d2ea8f4edf0c378d944494505def3faabf1d9c3bb98e6c228526c392d26f09 SHA512 d175e2b39dda880653a2e46db67e49a8921095e69eff6598159c3c31292d4ce76617c2f1617fd6727b08c930fcea335d8ef01857debbb60e7ac384b516d38a05
 DIST libftdi1-1.4.tar.bz2 109521 BLAKE2B 4186342afb2a0118c454230a925ccff2ed0aedd942cdd3afb1ac59519f1cd48db7f04421ecdb5aa6e53993666a903de00ce447fd81d00839806f8cc0d34c6e52 SHA512 dbab74f7bc35ca835b9c6dd5b70a64816948d65da1f73a9ece37a0f0f630bd0df1a676543acc517b02a718bc34ba4f7a30cbc48b6eed1c154c917f8ef0a358fc
diff --git a/dev-embedded/libftdi/libftdi-0.19.ebuild b/dev-embedded/libftdi/libftdi-0.19.ebuild
deleted file mode 100644 (file)
index 71475c7..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-if [[ ${PV} == 9999* ]] ; then
-       inherit git-r3 autotools
-       EGIT_REPO_URI="git://developer.intra2net.com/${PN}"
-else
-       SRC_URI="http://www.intra2net.com/en/developer/${PN}/download/${P}.tar.gz"
-       KEYWORDS="amd64 arm ppc ppc64 sparc x86"
-fi
-
-DESCRIPTION="Userspace access to FTDI USB interface chips"
-HOMEPAGE="http://www.intra2net.com/en/developer/libftdi/"
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="cxx doc examples python static-libs"
-
-RDEPEND="virtual/libusb:0
-       cxx? ( dev-libs/boost )
-       python? ( dev-lang/python )"
-DEPEND="${RDEPEND}
-       python? ( dev-lang/swig )
-       doc? ( app-doc/doxygen )"
-
-src_prepare() {
-       if [[ ${PV} == 9999* ]] ; then
-               mkdir -p m4
-               eautoreconf
-       fi
-}
-
-src_configure() {
-       econf \
-               $(use_enable cxx libftdipp) \
-               $(use_with doc docs) \
-               $(use_with examples) \
-               $(use_enable python python-binding) \
-               $(use_enable static-libs static)
-}
-
-src_install() {
-       emake DESTDIR="${D}" install || die
-       use static-libs || find "${D}" -name '*.la' -delete
-       dodoc ChangeLog README
-
-       if use doc ; then
-               doman doc/man/man3/*
-               dohtml doc/html/*
-       fi
-       if use examples ; then
-               docinto examples
-               dodoc examples/*.c
-       fi
-}