public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tomas Chvatal (scarabeus)" <scarabeus@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/tunepimp: ChangeLog tunepimp-0.5.3-r2.ebuild
Date: Fri, 29 May 2009 12:14:54 +0000	[thread overview]
Message-ID: <E1MA0z8-00019B-Ef@stork.gentoo.org> (raw)

scarabeus    09/05/29 12:14:54

  Modified:             ChangeLog
  Added:                tunepimp-0.5.3-r2.ebuild
  Log:
  Revision bump. Fixing gcc issues. Per bug #271615. Thx to hirakendu for patch.
  (Portage version: 2.2_rc33/cvs/Linux i686)

Revision  Changes    Path
1.68                 media-libs/tunepimp/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tunepimp/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	27 Apr 2009 15:25:52 -0000	1.67
+++ ChangeLog	29 May 2009 12:14:54 -0000	1.68
@@ -1,6 +1,13 @@
 # ChangeLog for media-libs/tunepimp
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/ChangeLog,v 1.67 2009/04/27 15:25:52 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/ChangeLog,v 1.68 2009/05/29 12:14:54 scarabeus Exp $
+
+*tunepimp-0.5.3-r2 (29 May 2009)
+
+  29 May 2009; Tomáš Chvátal <scarabeus@gentoo.org>
+  +tunepimp-0.5.3-r2.ebuild, +files/tunepimp-0.5.3-gcc44.patch:
+  Revision bump. Fixing gcc issues. Per bug #271615. Thx to hirakendu for
+  patch.
 
   27 Apr 2009; Jeroen Roovers <jer@gentoo.org> tunepimp-0.5.3-r1:
   Marked ~hppa (bug #260777).



1.1                  media-libs/tunepimp/tunepimp-0.5.3-r2.ebuild

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

Index: tunepimp-0.5.3-r2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/tunepimp-0.5.3-r2.ebuild,v 1.1 2009/05/29 12:14:54 scarabeus Exp $

EAPI="1"

inherit eutils distutils autotools

MY_P="lib${P}"
S="${WORKDIR}/${MY_P}"

DESCRIPTION="TunePimp is a library to create MusicBrainz enabled tagging applications."
HOMEPAGE="http://www.musicbrainz.org/products/tunepimp"
SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
# Most use flags were void as not deterministic - needs a patch sooner or later.
#IUSE="flac mp3 readline perl python vorbis"
IUSE="python"

RDEPEND="sys-libs/zlib
	dev-libs/expat
	net-misc/curl
	>=media-libs/flac-1.1.2
	media-libs/libmad
	>=media-libs/musicbrainz-2.1.0:1
	media-libs/libofa
	media-libs/libvorbis
	!media-sound/trm
	sys-libs/readline"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

# parallel build is broken - https://bugs.gentoo.org/204174
MAKEOPTS="${MAKEOPTS} -j1"

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch \
		"${FILESDIR}/${P}-gcc43.patch" \
		"${FILESDIR}/${P}-libtool.patch" \
		"${FILESDIR}/${P}-build-fix.patch" \
		"${FILESDIR}/${P}-gcc44.patch"

	sed -i -e "s: tta::" configure.in

	eautoreconf
}

src_compile() {
	# We need to override distutils_src_compile, bug 160145
	econf || die 'econf failed'
	emake || die 'emake failed'
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS ChangeLog INSTALL README TODO || die "installing docs failed"

	if use python; then
		cd "${S}/python"
		distutils_src_install
		insinto /usr/share/doc/${PF}/examples/
		doins examples/* || die "installing examples failed"
	fi
}






             reply	other threads:[~2009-05-29 12:14 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-29 12:14 Tomas Chvatal (scarabeus) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-07-10 12:49 [gentoo-commits] gentoo-x86 commit in media-libs/tunepimp: ChangeLog tunepimp-0.5.3-r2.ebuild Samuli Suominen (ssuominen)
2009-08-15  8:49 Markus Meier (maekke)
2009-08-29 18:55 Gysbert Wassenaar (nixnut)
2009-09-27 14:24 Brent Baude (ranger)
2009-10-10 16:06 Raul Porcel (armin76)
2010-01-19  2:20 Jeroen Roovers (jer)
2010-01-22  0:26 Jonathan Callen (abcd)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1MA0z8-00019B-Ef@stork.gentoo.org \
    --to=scarabeus@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox