public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/libfishsound: ChangeLog libfishsound-1.0.0.ebuild
@ 2010-03-11 10:56 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-03-11 10:56 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/03/11 10:56:58

  Modified:             ChangeLog
  Added:                libfishsound-1.0.0.ebuild
  Log:
  Version bump. Use pregenerated docs and install to correct path wrt #294276.
  (Portage version: 2.2_rc66/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  media-libs/libfishsound/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	8 Mar 2010 06:35:48 -0000	1.8
+++ ChangeLog	11 Mar 2010 10:56:57 -0000	1.9
@@ -1,6 +1,13 @@
 # ChangeLog for media-libs/libfishsound
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.8 2010/03/08 06:35:48 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.9 2010/03/11 10:56:57 ssuominen Exp $
+
+*libfishsound-1.0.0 (11 Mar 2010)
+
+  11 Mar 2010; Samuli Suominen <ssuominen@gentoo.org>
+  +libfishsound-1.0.0.ebuild:
+  Version bump. Use pregenerated docs and install to correct path wrt
+  #294276.
 
   08 Mar 2010; Sebastian Pipping <sping@gentoo.org>
   libfishsound-0.9.1.ebuild, libfishsound-0.9.2.ebuild:



1.1                  media-libs/libfishsound/libfishsound-1.0.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild?rev=1.1&content-type=text/plain

Index: libfishsound-1.0.0.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild,v 1.1 2010/03/11 10:56:57 ssuominen Exp $

EAPI=2

DESCRIPTION="Simple programming interface for decoding and encoding audio data using vorbis or speex"
HOMEPAGE="http://www.xiph.org/fishsound/"
SRC_URI="http://downloads.xiph.org/releases/libfishsound/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="flac speex"

RDEPEND="media-libs/libvorbis
	media-libs/libogg
	flac? ( media-libs/flac )
	speex? ( media-libs/speex )"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

src_prepare() {
	sed -i \
		-e 's:doxygen:doxygen-dummy:' \
		configure || die
}

src_configure() {
	local myconf=""
	use flac || myconf="${myconf} --disable-flac"
	use speex || myconf="${myconf} --disable-speex"

	econf \
		--disable-dependency-tracking \
		${myconf}
}

src_install() {
	emake DESTDIR="${D}" \
		docdir="${D}/usr/share/doc/${PF}" install || die
	dodoc AUTHORS ChangeLog README
}






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libfishsound: ChangeLog libfishsound-1.0.0.ebuild
@ 2010-03-11 11:33 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-03-11 11:33 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/03/11 11:33:23

  Modified:             ChangeLog libfishsound-1.0.0.ebuild
  Log:
  Remove "Requires" from fishsound.pc to avoid including -I/usr/include/FLAC in cflags (FLAC/assert.h will collide with system assert.h).
  (Portage version: 2.2_rc66/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 media-libs/libfishsound/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	11 Mar 2010 10:56:57 -0000	1.9
+++ ChangeLog	11 Mar 2010 11:33:22 -0000	1.10
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/libfishsound
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.9 2010/03/11 10:56:57 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.10 2010/03/11 11:33:22 ssuominen Exp $
+
+  11 Mar 2010; Samuli Suominen <ssuominen@gentoo.org>
+  libfishsound-1.0.0.ebuild, +files/libfishsound-1.0.0-pc.patch:
+  Remove "Requires" from fishsound.pc to avoid including -I/usr/include/FLAC
+  in cflags (FLAC/assert.h will collide with system assert.h).
 
 *libfishsound-1.0.0 (11 Mar 2010)
 



1.3                  media-libs/libfishsound/libfishsound-1.0.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild?r1=1.2&r2=1.3

Index: libfishsound-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libfishsound-1.0.0.ebuild	11 Mar 2010 11:18:37 -0000	1.2
+++ libfishsound-1.0.0.ebuild	11 Mar 2010 11:33:22 -0000	1.3
@@ -1,8 +1,9 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild,v 1.2 2010/03/11 11:18:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild,v 1.3 2010/03/11 11:33:22 ssuominen Exp $
 
 EAPI=2
+inherit eutils
 
 DESCRIPTION="Simple programming interface for decoding and encoding audio data using vorbis or speex"
 HOMEPAGE="http://www.xiph.org/fishsound/"
@@ -11,17 +12,17 @@
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="speex"
-# flac
+IUSE="flac speex"
 
 RDEPEND="media-libs/libvorbis
 	media-libs/libogg
+	flac? ( media-libs/flac )
 	speex? ( media-libs/speex )"
-# flac? ( media-libs/flac )
 DEPEND="${RDEPEND}
 	dev-util/pkgconfig"
 
 src_prepare() {
+	epatch "${FILESDIR}"/${P}-pc.patch
 	sed -i \
 		-e 's:doxygen:doxygen-dummy:' \
 		configure || die
@@ -29,10 +30,7 @@
 
 src_configure() {
 	local myconf=""
-	# FLAC pkg-config file is broken and shouldn't append -I/usr/include/FLAC
-	# because of e.g. assert.h
-	# use flac ||
-	myconf="${myconf} --disable-flac"
+	use flac || myconf="${myconf} --disable-flac"
 	use speex || myconf="${myconf} --disable-speex"
 
 	econf \






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libfishsound: ChangeLog libfishsound-1.0.0.ebuild
@ 2012-05-23 16:21 Johannes Huber (johu)
  0 siblings, 0 replies; 3+ messages in thread
From: Johannes Huber (johu) @ 2012-05-23 16:21 UTC (permalink / raw
  To: gentoo-commits

johu        12/05/23 16:21:03

  Modified:             ChangeLog libfishsound-1.0.0.ebuild
  Log:
  Stable for x86, wrt bug #393779
  
  (Portage version: 2.2.0_alpha107/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 media-libs/libfishsound/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libfishsound/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libfishsound/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libfishsound/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	23 May 2012 13:58:15 -0000	1.13
+++ ChangeLog	23 May 2012 16:21:03 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libfishsound
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.13 2012/05/23 13:58:15 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.14 2012/05/23 16:21:03 johu Exp $
+
+  23 May 2012; Johannes Huber <johu@gentoo.org> libfishsound-1.0.0.ebuild:
+  Stable for x86, wrt bug #393779
 
   23 May 2012; Johannes Huber <johu@gentoo.org> libfishsound-1.0.0.ebuild:
   Restrict tests for now, acked by yngwin bug #395153.



1.7                  media-libs/libfishsound/libfishsound-1.0.0.ebuild

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

Index: libfishsound-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libfishsound-1.0.0.ebuild	23 May 2012 13:58:15 -0000	1.6
+++ libfishsound-1.0.0.ebuild	23 May 2012 16:21:03 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild,v 1.6 2012/05/23 13:58:15 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-1.0.0.ebuild,v 1.7 2012/05/23 16:21:03 johu Exp $
 
 EAPI=2
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="flac speex"
 
 RDEPEND="media-libs/libvorbis






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

end of thread, other threads:[~2012-05-23 16:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-11 10:56 [gentoo-commits] gentoo-x86 commit in media-libs/libfishsound: ChangeLog libfishsound-1.0.0.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-11 11:33 Samuli Suominen (ssuominen)
2012-05-23 16:21 Johannes Huber (johu)

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