| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/sys-libs/libraw1394/Attic/libraw1394-2.0.7.ebuild,v 1.1 2011/03/25 02:04:26 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/sys-libs/libraw1394/Attic/libraw1394-2.0.7.ebuild,v 1.2 2011/09/03 09:09:33 scarabeus Exp $ |
| 4 | |
4 | |
| 5 | EAPI="2" |
5 | EAPI=4 |
| 6 | |
6 | |
| 7 | DESCRIPTION="library that provides direct access to the IEEE 1394 bus" |
7 | DESCRIPTION="library that provides direct access to the IEEE 1394 bus" |
| 8 | HOMEPAGE="http://ieee1394.wiki.kernel.org/" |
8 | HOMEPAGE="http://ieee1394.wiki.kernel.org/" |
| 9 | SRC_URI="mirror://kernel/linux/libs/ieee1394/${P}.tar.gz" |
9 | SRC_URI="mirror://kernel/linux/libs/ieee1394/${P}.tar.gz" |
| 10 | |
10 | |
| … | |
… | |
| 13 | KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" |
13 | KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" |
| 14 | IUSE="" |
14 | IUSE="" |
| 15 | |
15 | |
| 16 | RDEPEND="!<media-libs/libdc1394-1.2.2" |
16 | RDEPEND="!<media-libs/libdc1394-1.2.2" |
| 17 | |
17 | |
|
|
18 | DOCS=( AUTHORS ChangeLog NEWS README ) |
|
|
19 | |
| 18 | src_configure() { |
20 | src_configure() { |
| 19 | econf \ |
21 | econf \ |
| 20 | --disable-dependency-tracking \ |
|
|
| 21 | --without-fw-dir |
22 | --without-fw-dir |
| 22 | } |
23 | } |
| 23 | |
|
|
| 24 | src_install() { |
|
|
| 25 | emake DESTDIR="${D}" install || die |
|
|
| 26 | dodoc AUTHORS ChangeLog NEWS README |
|
|
| 27 | } |
|
|