diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-04-17 20:29:30 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-04-17 20:29:30 +0000 |
commit | 5a8578e25cf548107affc5be6f496a90f17e26ca (patch) | |
tree | e5ebcaa0a4974cd50a67a827880809c4573e23a7 /dev-embedded | |
parent | unmasked clamav-0.93 (diff) | |
download | gentoo-2-5a8578e25cf548107affc5be6f496a90f17e26ca.tar.gz gentoo-2-5a8578e25cf548107affc5be6f496a90f17e26ca.tar.bz2 gentoo-2-5a8578e25cf548107affc5be6f496a90f17e26ca.zip |
old
Diffstat (limited to 'dev-embedded')
-rw-r--r-- | dev-embedded/libftdi/libftdi-0.9.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-embedded/libftdi/libftdi-0.9.ebuild b/dev-embedded/libftdi/libftdi-0.9.ebuild deleted file mode 100644 index e211eb9665d2..000000000000 --- a/dev-embedded/libftdi/libftdi-0.9.ebuild +++ /dev/null @@ -1,38 +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/libftdi/libftdi-0.9.ebuild,v 1.5 2008/04/11 15:41:28 vapier Exp $ - -DESCRIPTION="Userspace access to FTDI USB interface chips" -HOMEPAGE="http://www.intra2net.com/opensource/ftdi/" -SRC_URI="http://www.intra2net.com/opensource/ftdi/TGZ/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="" - -DEPEND=">=dev-libs/libusb-0.1.7 - app-doc/doxygen" - -src_unpack() { - unpack ${A} - sed -i -e "s/^SUBDIRS = src examples doc/SUBDIRS = src doc/" "${S}"/Makefile.in -} - -src_install() { - emake DESTDIR="${D}" install || die "Installation failed" - dodoc ChangeLog README - for MANPAGE in doc/man/man3/* ; do doman ${MANPAGE} ; done - insinto /usr/share/doc/${PF} - doins -r doc/html -} - -pkg_postinst() { - elog "If you want to compile the examples, you need to :" - elog " tar xvfz ${PORTAGE_ACTUAL_DISTDIR}/${A}" - elog " cd ${PF}" - elog " ./configure" - elog " cd examples" - elog " sed -i -e 's/\$(top_builddir)\/src\/libftdi.la/\/usr\/lib\/libftdi.la/' Makefile*" - elog " make" -} |