diff options
author | 2007-07-27 19:29:46 +0000 | |
---|---|---|
committer | 2007-07-27 19:29:46 +0000 | |
commit | 4e68fe71a69383fdefaebfedf0524e491367d364 (patch) | |
tree | 59b9a757136d0b69171dfac46146918c10ff9b55 /media-sound/glmix | |
parent | Clean up. (diff) | |
download | gentoo-2-4e68fe71a69383fdefaebfedf0524e491367d364.tar.gz gentoo-2-4e68fe71a69383fdefaebfedf0524e491367d364.tar.bz2 gentoo-2-4e68fe71a69383fdefaebfedf0524e491367d364.zip |
Version bump.
(Portage version: 2.1.3_rc9)
Diffstat (limited to 'media-sound/glmix')
-rw-r--r-- | media-sound/glmix/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/glmix/files/digest-glmix-0.3 | 3 | ||||
-rw-r--r-- | media-sound/glmix/glmix-0.3.ebuild | 33 |
3 files changed, 42 insertions, 1 deletions
diff --git a/media-sound/glmix/ChangeLog b/media-sound/glmix/ChangeLog index 21f0f0ea69a8..d0b2cbd39cb4 100644 --- a/media-sound/glmix/ChangeLog +++ b/media-sound/glmix/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/glmix # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/glmix/ChangeLog,v 1.7 2007/02/22 00:59:45 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/glmix/ChangeLog,v 1.8 2007/07/27 19:29:46 drac Exp $ + +*glmix-0.3 (27 Jul 2007) + + 27 Jul 2007; Samuli Suominen <drac@gentoo.org> +glmix-0.3.ebuild: + Version bump. 22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/media-sound/glmix/files/digest-glmix-0.3 b/media-sound/glmix/files/digest-glmix-0.3 new file mode 100644 index 000000000000..b65fc49d1c69 --- /dev/null +++ b/media-sound/glmix/files/digest-glmix-0.3 @@ -0,0 +1,3 @@ +MD5 2b38cb166228dfd056843cc78e74db09 glmix-0.3.tar.gz 17500 +RMD160 2e1381b9dc67090a348d101e217b65e43f84e3a4 glmix-0.3.tar.gz 17500 +SHA256 901bbd5817e9a49426c2a143c09a251b83907e2a8f621ba231c19549e90884a8 glmix-0.3.tar.gz 17500 diff --git a/media-sound/glmix/glmix-0.3.ebuild b/media-sound/glmix/glmix-0.3.ebuild new file mode 100644 index 000000000000..0b87e23d4149 --- /dev/null +++ b/media-sound/glmix/glmix-0.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/glmix/glmix-0.3.ebuild,v 1.1 2007/07/27 19:29:46 drac Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="A 3D widget for mixing up to eight JACK audio streams down to stereo" +HOMEPAGE="http://devel.tlrmx.org/audio" +SRC_URI="http://devel.tlrmx.org/audio/source/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="media-sound/jack-audio-connection-kit + >=x11-libs/gtkglext-1 + >=x11-libs/gtk+-2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + local libs="gtk+-2.0 gtkglext-1.0 jack pango" + emake CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS} $(pkg-config --cflags ${libs})" \ + LDFLAGS="${LDFLAGS} $(pkg-config --libs ${libs})" || die "emake failed." +} + +src_install() { + dobin ${PN} + dodoc README TODO + make_desktop_entry ${PN} "GL Mixer" +} |