diff options
author | 2009-10-14 04:47:48 +0000 | |
---|---|---|
committer | 2009-10-14 04:47:48 +0000 | |
commit | 653a1648097a745445b844835b4016732e30a188 (patch) | |
tree | f56898e6340f334fe24bbe9ab8797c5140b766e3 /media-libs/schroedinger | |
parent | tidy (diff) | |
download | gentoo-2-653a1648097a745445b844835b4016732e30a188.tar.gz gentoo-2-653a1648097a745445b844835b4016732e30a188.tar.bz2 gentoo-2-653a1648097a745445b844835b4016732e30a188.zip |
version bump
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/schroedinger')
-rw-r--r-- | media-libs/schroedinger/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/schroedinger/schroedinger-1.0.8.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/media-libs/schroedinger/ChangeLog b/media-libs/schroedinger/ChangeLog index 65c2dc559004..3fad04c8db49 100644 --- a/media-libs/schroedinger/ChangeLog +++ b/media-libs/schroedinger/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/schroedinger # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/ChangeLog,v 1.35 2009/10/05 10:12:14 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/ChangeLog,v 1.36 2009/10/14 04:47:48 aballier Exp $ + +*schroedinger-1.0.8 (14 Oct 2009) + + 14 Oct 2009; Alexis Ballier <aballier@gentoo.org> + +schroedinger-1.0.8.ebuild: + version bump 05 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> schroedinger-1.0.7-r2.ebuild: diff --git a/media-libs/schroedinger/schroedinger-1.0.8.ebuild b/media-libs/schroedinger/schroedinger-1.0.8.ebuild new file mode 100644 index 000000000000..467d8d02c3f6 --- /dev/null +++ b/media-libs/schroedinger/schroedinger-1.0.8.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/schroedinger-1.0.8.ebuild,v 1.1 2009/10/14 04:47:48 aballier Exp $ + +EAPI=2 +inherit libtool + +DESCRIPTION="C-based libraries and GStreamer plugins for the Dirac video codec" +HOMEPAGE="http://www.diracvideo.org" +SRC_URI="http://www.diracvideo.org/download/${PN}/${P}.tar.gz" + +LICENSE="|| ( MPL-1.1 LGPL-2.1 GPL-2 MIT )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=dev-libs/liboil-0.3.16" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_prepare() { + elibtoolize +} + +src_configure() { + econf \ + --disable-dependency-tracking \ + --disable-gtk-doc +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS NEWS TODO +} |