diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 15:42:38 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 15:42:38 +0000 |
commit | 6328fb6f159283c80659f58e3116d51a3deceb42 (patch) | |
tree | da15a1337b04b23e79bf89170bbbbf066af409b3 /dev-embedded/libftd2xx | |
parent | Remove old (diff) | |
download | gentoo-2-6328fb6f159283c80659f58e3116d51a3deceb42.tar.gz gentoo-2-6328fb6f159283c80659f58e3116d51a3deceb42.tar.bz2 gentoo-2-6328fb6f159283c80659f58e3116d51a3deceb42.zip |
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-embedded/libftd2xx')
-rw-r--r-- | dev-embedded/libftd2xx/ChangeLog | 7 | ||||
-rw-r--r-- | dev-embedded/libftd2xx/libftd2xx-0.4.13-r1.ebuild | 48 |
2 files changed, 5 insertions, 50 deletions
diff --git a/dev-embedded/libftd2xx/ChangeLog b/dev-embedded/libftd2xx/ChangeLog index 2c83c2e7ffa4..030201d01fd7 100644 --- a/dev-embedded/libftd2xx/ChangeLog +++ b/dev-embedded/libftd2xx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-embedded/libftd2xx -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftd2xx/ChangeLog,v 1.5 2011/02/22 17:02:24 hwoarang Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftd2xx/ChangeLog,v 1.6 2012/05/10 15:42:38 ago Exp $ + + 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -libftd2xx-0.4.13-r1.ebuild: + Remove old *libftd2xx-0.4.16-r1 (22 Feb 2011) diff --git a/dev-embedded/libftd2xx/libftd2xx-0.4.13-r1.ebuild b/dev-embedded/libftd2xx/libftd2xx-0.4.13-r1.ebuild deleted file mode 100644 index 6cbd7ccde257..000000000000 --- a/dev-embedded/libftd2xx/libftd2xx-0.4.13-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftd2xx/libftd2xx-0.4.13-r1.ebuild,v 1.2 2008/10/26 20:03:14 vapier Exp $ - -inherit multilib - -MY_P="${PN}${PV}" - -DESCRIPTION="Library that allows a direct access to a USB device" -HOMEPAGE="http://www.ftdichip.com/" -SRC_URI="http://www.ftdichip.com/Drivers/D2XX/Linux/${MY_P}.tar.gz" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="examples" - -RDEPEND="amd64? ( app-emulation/emul-linux-x86-baselibs )" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - has_multilib_profile && ABI="x86" -} - -src_install() { - local ftdifile="${PN}.so.${PV}" - local ftdisym="${PN}.so.0 ${PN}.so" - - insinto /usr/include - doins ftd2xx.h || die "doins failed" - doins WinTypes.h || die "doins failed" - - dolib.so ${ftdifile} || die "dolib.so failed" - local i - for i in ${ftdisym} ; do - dosym ${ftdifile} /usr/$(get_libdir)/${i} - done - - if use examples ; then - insinto /usr/share/doc/${PF} - doins -r sample || die "doins failed" - insinto /usr/share/doc/${PF}/sample - doins -r lib_table || die "doins failed" - fi - - dodoc Config.txt FAQ.txt README.dat -} |