summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-06-27 22:35:53 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-06-27 22:35:53 +0000
commit3c0e535d2adf2f90f5edee6762c329a9ce0f9140 (patch)
tree9e45e559828a39f1a613e7c5199ade876e8a46f8 /dev-embedded
parentRemove old. (diff)
downloadgentoo-2-3c0e535d2adf2f90f5edee6762c329a9ce0f9140.tar.gz
gentoo-2-3c0e535d2adf2f90f5edee6762c329a9ce0f9140.tar.bz2
gentoo-2-3c0e535d2adf2f90f5edee6762c329a9ce0f9140.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-embedded')
-rw-r--r--dev-embedded/libftdi/ChangeLog6
-rw-r--r--dev-embedded/libftdi/libftdi-0.17.ebuild48
-rw-r--r--dev-embedded/libftdi/libftdi-0.18.ebuild55
3 files changed, 5 insertions, 104 deletions
diff --git a/dev-embedded/libftdi/ChangeLog b/dev-embedded/libftdi/ChangeLog
index d861b788be96..56fd8a926511 100644
--- a/dev-embedded/libftdi/ChangeLog
+++ b/dev-embedded/libftdi/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-embedded/libftdi
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.68 2015/05/13 10:46:17 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.69 2015/06/27 22:35:53 mrueg Exp $
+
+ 27 Jun 2015; Manuel Rüger <mrueg@gentoo.org> -libftdi-0.17.ebuild,
+ -libftdi-0.18.ebuild:
+ Remove old.
*libftdi-1.2 (13 May 2015)
diff --git a/dev-embedded/libftdi/libftdi-0.17.ebuild b/dev-embedded/libftdi/libftdi-0.17.ebuild
deleted file mode 100644
index 6dec8635c6a2..000000000000
--- a/dev-embedded/libftdi/libftdi-0.17.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.17.ebuild,v 1.3 2010/06/22 20:27:28 vapier Exp $
-
-EAPI="2"
-
-DESCRIPTION="Userspace access to FTDI USB interface chips"
-HOMEPAGE="http://www.intra2net.com/en/developer/libftdi/"
-SRC_URI="http://www.intra2net.com/en/developer/libftdi/download/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 sparc x86"
-IUSE="cxx doc examples python"
-
-RDEPEND="virtual/libusb:0
- cxx? ( dev-libs/boost )
- python? ( dev-lang/python )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-src_prepare() {
- # don't bother building examples as we dont want the binaries
- # installed and the Makefile has broken install targets
- sed -i '/^SUBDIRS =/s:examples::' Makefile.in
- sed -i 's:@top_buildir@:@top_builddir@:' bindings/python/setup.py.in #298607
-}
-
-src_configure() {
- use doc || export ac_cv_path_DOXYGEN=true
- econf \
- $(use_enable cxx libftdipp) \
- $(use_enable python python-binding)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "Installation failed"
- 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
-}
diff --git a/dev-embedded/libftdi/libftdi-0.18.ebuild b/dev-embedded/libftdi/libftdi-0.18.ebuild
deleted file mode 100644
index 51396e6415c1..000000000000
--- a/dev-embedded/libftdi/libftdi-0.18.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.18.ebuild,v 1.2 2010/09/09 18:04:18 vapier Exp $
-
-EAPI="2"
-
-if [[ ${PV} == 9999* ]] ; then
- EGIT_REPO_URI="git://developer.intra2net.com/libftdi"
- inherit git autotools
-else
- SRC_URI="http://www.intra2net.com/en/developer/libftdi/download/${P}.tar.gz"
- KEYWORDS="amd64 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"
-
-RDEPEND="virtual/libusb:0
- cxx? ( dev-libs/boost )
- python? ( dev-lang/python )"
-DEPEND="${RDEPEND}
- 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)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- 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
-}