diff options
author | 2011-03-25 02:04:26 +0000 | |
---|---|---|
committer | 2011-03-25 02:04:26 +0000 | |
commit | 9db957a3197a0daf634d2b28e3fb5de0f60baa76 (patch) | |
tree | 624aa3c5f723bf4822f21d7b817eeea3ad602887 /sys-libs | |
parent | old (diff) | |
download | gentoo-2-9db957a3197a0daf634d2b28e3fb5de0f60baa76.tar.gz gentoo-2-9db957a3197a0daf634d2b28e3fb5de0f60baa76.tar.bz2 gentoo-2-9db957a3197a0daf634d2b28e3fb5de0f60baa76.zip |
Version bump #360331 by Stefan Richter.
(Portage version: 2.2.0_alpha26/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/libraw1394/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/libraw1394/libraw1394-2.0.7.ebuild | 27 |
2 files changed, 34 insertions, 2 deletions
diff --git a/sys-libs/libraw1394/ChangeLog b/sys-libs/libraw1394/ChangeLog index f35420294e69..7f3bd5349bb3 100644 --- a/sys-libs/libraw1394/ChangeLog +++ b/sys-libs/libraw1394/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libraw1394 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libraw1394/ChangeLog,v 1.58 2010/04/16 09:54:55 pacho Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libraw1394/ChangeLog,v 1.59 2011/03/25 02:04:26 vapier Exp $ + +*libraw1394-2.0.7 (25 Mar 2011) + + 25 Mar 2011; Mike Frysinger <vapier@gentoo.org> +libraw1394-2.0.7.ebuild: + Version bump #360331 by Stefan Richter. 16 Apr 2010; Pacho Ramos <pacho@gentoo.org> libraw1394-2.0.4.ebuild: amd64 stable, bug 305071 diff --git a/sys-libs/libraw1394/libraw1394-2.0.7.ebuild b/sys-libs/libraw1394/libraw1394-2.0.7.ebuild new file mode 100644 index 000000000000..e9868c3bce55 --- /dev/null +++ b/sys-libs/libraw1394/libraw1394-2.0.7.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libraw1394/libraw1394-2.0.7.ebuild,v 1.1 2011/03/25 02:04:26 vapier Exp $ + +EAPI="2" + +DESCRIPTION="library that provides direct access to the IEEE 1394 bus" +HOMEPAGE="http://ieee1394.wiki.kernel.org/" +SRC_URI="mirror://kernel/linux/libs/ieee1394/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="" + +RDEPEND="!<media-libs/libdc1394-1.2.2" + +src_configure() { + econf \ + --disable-dependency-tracking \ + --without-fw-dir +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README +} |