diff options
author | Hanno Böck <hanno@gentoo.org> | 2006-12-05 14:11:44 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2006-12-05 14:11:44 +0000 |
commit | 3f81725cb436b2eb5794e022fd9ee868b313e8df (patch) | |
tree | 6925a6df311b1712639856aada01a6670a08401b /media-libs/schroedinger | |
parent | Marked ~hppa (bug #155518). (diff) | |
download | gentoo-2-3f81725cb436b2eb5794e022fd9ee868b313e8df.tar.gz gentoo-2-3f81725cb436b2eb5794e022fd9ee868b313e8df.tar.bz2 gentoo-2-3f81725cb436b2eb5794e022fd9ee868b313e8df.zip |
schroedinger bump
(Portage version: 2.1.2_rc2-r5)
Diffstat (limited to 'media-libs/schroedinger')
-rw-r--r-- | media-libs/schroedinger/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/schroedinger/files/digest-schroedinger-0.3.0.0 | 3 | ||||
-rw-r--r-- | media-libs/schroedinger/schroedinger-0.3.0.0.ebuild | 36 |
3 files changed, 45 insertions, 1 deletions
diff --git a/media-libs/schroedinger/ChangeLog b/media-libs/schroedinger/ChangeLog index 7ffb8066ab1c..e280237b9fe2 100644 --- a/media-libs/schroedinger/ChangeLog +++ b/media-libs/schroedinger/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/schroedinger # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/ChangeLog,v 1.3 2006/07/12 14:43:35 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/ChangeLog,v 1.4 2006/12/05 14:11:44 hanno Exp $ + +*schroedinger-0.3.0.0 (05 Dec 2006) + + 05 Dec 2006; Hanno Boeck <hanno@gentoo.org> +schroedinger-0.3.0.0.ebuild: + Version bump. 12 Jul 2006; Danny van Dyk <kugelfang@gentoo.org> schroedinger-0.2.0.0.ebuild: diff --git a/media-libs/schroedinger/files/digest-schroedinger-0.3.0.0 b/media-libs/schroedinger/files/digest-schroedinger-0.3.0.0 new file mode 100644 index 000000000000..d788025239e3 --- /dev/null +++ b/media-libs/schroedinger/files/digest-schroedinger-0.3.0.0 @@ -0,0 +1,3 @@ +MD5 42769f589ab730af9ea317b4ecdbf8d9 schroedinger-0.3.0.0.tar.gz 460764 +RMD160 29d0e40b75f05fb54ffeb1b7f97dca9239d83404 schroedinger-0.3.0.0.tar.gz 460764 +SHA256 0c3eb68e3102fcd8c4af025814b7ee9414807752af0de32db8eff9be3852a50b schroedinger-0.3.0.0.tar.gz 460764 diff --git a/media-libs/schroedinger/schroedinger-0.3.0.0.ebuild b/media-libs/schroedinger/schroedinger-0.3.0.0.ebuild new file mode 100644 index 000000000000..335324809d26 --- /dev/null +++ b/media-libs/schroedinger/schroedinger-0.3.0.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/schroedinger-0.3.0.0.ebuild,v 1.1 2006/12/05 14:11:44 hanno Exp $ + +DESCRIPTION="C-based libraries and GStreamer plugins for the Dirac video codec" +HOMEPAGE="http://schrodinger.sourceforge.net/" +SRC_URI="mirror://sourceforge/schrodinger/${P}.tar.gz" + +LICENSE="|| ( MPL-1.1 LGPL-2.1 GPL-2 MIT )" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="debug profile examples doc" + +RDEPEND=">=dev-libs/liboil-0.3.10 + doc? ( dev-util/gtk-doc ) + >=media-libs/gstreamer-0.10 + >=media-libs/gst-plugins-base-0.10 + profile? ( dev-util/valgrind )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + econf \ + $(use_enable debug) \ + $(use_enable profile profiling) \ + $(use_enable profile valgrind) \ + $(use_enable profile gcov) \ + $(use_enable examples) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make install DESTDIR="${D}" || die "make install failed" + dodoc ChangeLog +} |