summaryrefslogtreecommitdiff
blob: 17d811758eabe426ce8f99951e909e584cf570ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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.4 2008/02/23 14:40:36 ranger 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"
}