public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/lingot: ChangeLog lingot-0.9.0.ebuild
@ 2011-06-09  8:43 Tim Harder (radhermit)
  0 siblings, 0 replies; 3+ messages in thread
From: Tim Harder (radhermit) @ 2011-06-09  8:43 UTC (permalink / raw
  To: gentoo-commits

radhermit    11/06/09 08:43:05

  Modified:             ChangeLog
  Added:                lingot-0.9.0.ebuild
  Log:
  Version bump. Update to EAPI 4.
  
  (Portage version: 2.2.0_alpha38/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  media-sound/lingot/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lingot/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	13 Apr 2010 16:46:44 -0000	1.6
+++ ChangeLog	9 Jun 2011 08:43:05 -0000	1.7
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/lingot
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/ChangeLog,v 1.6 2010/04/13 16:46:44 ssuominen Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/ChangeLog,v 1.7 2011/06/09 08:43:05 radhermit Exp $
+
+*lingot-0.9.0 (09 Jun 2011)
+
+  09 Jun 2011; Tim Harder <radhermit@gentoo.org> +lingot-0.9.0.ebuild:
+  Version bump. Update to EAPI 4.
 
 *lingot-0.8.1 (13 Apr 2010)
 



1.1                  media-sound/lingot/lingot-0.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild?rev=1.1&content-type=text/plain

Index: lingot-0.9.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild,v 1.1 2011/06/09 08:43:05 radhermit Exp $

EAPI=4
inherit autotools eutils

DESCRIPTION="LINGOT Is Not a Guitar-Only Tuner"
HOMEPAGE="http://www.nongnu.org/lingot"
SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa jack"

RDEPEND="x11-libs/gtk+:2
	>=gnome-base/libglade-2
	alsa? ( media-libs/alsa-lib )
	jack? ( >=media-sound/jack-audio-connection-kit-0.102 )"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	dev-util/intltool
	sys-devel/gettext"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-0.7.6-clean-install.patch
	eautoreconf
}

src_configure() {
	econf \
		$(use_enable alsa) \
		$(use_enable jack)
}

src_install() {
	emake DESTDIR="${D}" lingotdocdir="/usr/share/doc/${PF}" install
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/lingot: ChangeLog lingot-0.9.0.ebuild
@ 2011-06-11 21:26 Tim Harder (radhermit)
  0 siblings, 0 replies; 3+ messages in thread
From: Tim Harder (radhermit) @ 2011-06-11 21:26 UTC (permalink / raw
  To: gentoo-commits

radhermit    11/06/11 21:26:52

  Modified:             ChangeLog lingot-0.9.0.ebuild
  Log:
  Fix dependencies.
  
  (Portage version: 2.2.0_alpha38/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  media-sound/lingot/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lingot/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	9 Jun 2011 08:43:05 -0000	1.7
+++ ChangeLog	11 Jun 2011 21:26:52 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lingot
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/ChangeLog,v 1.7 2011/06/09 08:43:05 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/ChangeLog,v 1.8 2011/06/11 21:26:52 radhermit Exp $
+
+  11 Jun 2011; Tim Harder <radhermit@gentoo.org> lingot-0.9.0.ebuild:
+  Fix dependencies.
 
 *lingot-0.9.0 (09 Jun 2011)
 



1.2                  media-sound/lingot/lingot-0.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild?r1=1.1&r2=1.2

Index: lingot-0.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lingot-0.9.0.ebuild	9 Jun 2011 08:43:05 -0000	1.1
+++ lingot-0.9.0.ebuild	11 Jun 2011 21:26:52 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild,v 1.1 2011/06/09 08:43:05 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild,v 1.2 2011/06/11 21:26:52 radhermit Exp $
 
 EAPI=4
 inherit autotools eutils
@@ -15,7 +15,10 @@
 IUSE="alsa jack"
 
 RDEPEND="x11-libs/gtk+:2
-	>=gnome-base/libglade-2
+	x11-libs/gdk-pixbuf:2
+	x11-libs/pango
+	dev-libs/glib:2
+	gnome-base/libglade:2.0
 	alsa? ( media-libs/alsa-lib )
 	jack? ( >=media-sound/jack-audio-connection-kit-0.102 )"
 DEPEND="${RDEPEND}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/lingot: ChangeLog lingot-0.9.0.ebuild
@ 2011-06-12  8:48 Tim Harder (radhermit)
  0 siblings, 0 replies; 3+ messages in thread
From: Tim Harder (radhermit) @ 2011-06-12  8:48 UTC (permalink / raw
  To: gentoo-commits

radhermit    11/06/12 08:48:42

  Modified:             ChangeLog lingot-0.9.0.ebuild
  Log:
  Fix jack support.
  
  (Portage version: 2.2.0_alpha38/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  media-sound/lingot/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lingot/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	11 Jun 2011 21:26:52 -0000	1.8
+++ ChangeLog	12 Jun 2011 08:48:42 -0000	1.9
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/lingot
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/ChangeLog,v 1.8 2011/06/11 21:26:52 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/ChangeLog,v 1.9 2011/06/12 08:48:42 radhermit Exp $
+
+  12 Jun 2011; Tim Harder <radhermit@gentoo.org> lingot-0.9.0.ebuild,
+  +files/lingot-0.9.0-jack.patch:
+  Fix jack support.
 
   11 Jun 2011; Tim Harder <radhermit@gentoo.org> lingot-0.9.0.ebuild:
   Fix dependencies.



1.3                  media-sound/lingot/lingot-0.9.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild?r1=1.2&r2=1.3

Index: lingot-0.9.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lingot-0.9.0.ebuild	11 Jun 2011 21:26:52 -0000	1.2
+++ lingot-0.9.0.ebuild	12 Jun 2011 08:48:42 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild,v 1.2 2011/06/11 21:26:52 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/lingot-0.9.0.ebuild,v 1.3 2011/06/12 08:48:42 radhermit Exp $
 
 EAPI=4
 inherit autotools eutils
@@ -27,7 +27,9 @@
 	sys-devel/gettext"
 
 src_prepare() {
-	epatch "${FILESDIR}"/${PN}-0.7.6-clean-install.patch
+	epatch "${FILESDIR}"/${PN}-0.7.6-clean-install.patch \
+		"${FILESDIR}"/${P}-jack.patch
+
 	eautoreconf
 }
 






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-06-12  8:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-11 21:26 [gentoo-commits] gentoo-x86 commit in media-sound/lingot: ChangeLog lingot-0.9.0.ebuild Tim Harder (radhermit)
  -- strict thread matches above, loose matches on Subject: below --
2011-06-12  8:48 Tim Harder (radhermit)
2011-06-09  8:43 Tim Harder (radhermit)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox