Gentoo Logo
Gentoo Spaceship




Note: Due to technical difficulties, the Archives are currently not up to date. GMANE provides an alternative service for most mailing lists.
c.f. bug 424647
List Archive: gentoo-commits
Navigation:
Lists: gentoo-commits: < Prev By Thread Next > < Prev By Date Next >
Headers:
To: gentoo-commits@g.o
From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
Subject: gentoo-x86 commit in gnustep-apps/cynthiune: ChangeLog cynthiune-0.9.5-r2.ebuild
Date: Tue, 09 Dec 2008 17:12:35 +0000
voyageur    08/12/09 17:12:34

  Modified:             ChangeLog
  Added:                cynthiune-0.9.5-r2.ebuild
  Log:
  Fix compilation with --as-needed, bug #250170
  (Portage version: 2.2_rc17/cvs/Linux 2.6.26-gentoo x86_64)

Revision  Changes    Path
1.19                 gnustep-apps/cynthiune/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-apps/cynthiune/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	21 Jul 2008 08:25:11 -0000	1.18
+++ ChangeLog	9 Dec 2008 17:12:34 -0000	1.19
@@ -1,6 +1,12 @@
 # ChangeLog for gnustep-apps/cynthiune
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/cynthiune/ChangeLog,v 1.18 2008/07/21 08:25:11 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/cynthiune/ChangeLog,v 1.19 2008/12/09 17:12:34 voyageur Exp $
+
+*cynthiune-0.9.5-r2 (09 Dec 2008)
+
+  09 Dec 2008; Bernard Cafarelli <voyageur@g.o>
+  +files/cynthiune-0.9.5-as-needed.patch, +cynthiune-0.9.5-r2.ebuild:
+  Fix compilation with --as-needed, bug #250170
 
   21 Jul 2008; Bernard Cafarelli <voyageur@g.o>
   cynthiune-0.9.5-r1.ebuild:



1.1                  gnustep-apps/cynthiune/cynthiune-0.9.5-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/cynthiune-0.9.5-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/cynthiune-0.9.5-r2.ebuild?rev=1.1&content-type=text/plain

Index: cynthiune-0.9.5-r2.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/cynthiune/cynthiune-0.9.5-r2.ebuild,v 1.1 2008/12/09 17:12:34 voyageur Exp $

inherit gnustep-2

S=${WORKDIR}/${P/c/C}

DESCRIPTION="Free software and romantic music player for GNUstep."
HOMEPAGE="http://organact.mine.nu/~wolfgang/cynthiune"
SRC_URI="http://organact.mine.nu/~wolfgang/cynthiune/${P/c/C}.tar.gz"

IUSE="arts esd flac mad modplug musepack timidity vorbis"

KEYWORDS="~amd64 ~ppc ~x86"
LICENSE="GPL-2"
SLOT="0"

RDEPEND="media-libs/audiofile
	media-libs/taglib
	arts? ( kde-base/arts )
	esd? ( media-sound/esound )
	flac? ( media-libs/flac )
	mad? ( media-libs/libid3tag
		media-libs/libmad )
	musepack? ( media-libs/libmpcdec )
	modplug? ( media-libs/libmodplug )
	timidity? ( media-sound/timidity++ )
	vorbis? ( >=media-libs/libogg-1.1.2
		>=media-libs/libvorbis-1.0.1-r2 )
	=media-libs/musicbrainz-2*"
DEPEND="${RDEPEND}
	mad? ( dev-util/pkgconfig )"

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

	epatch "${FILESDIR}"/${P}-flac-1.1.3.patch
	epatch "${FILESDIR}"/${P}-set-macro.patch
	epatch "${FILESDIR}"/${P}-NSCellExtensions.patch
	epatch "${FILESDIR}"/${P}-NSMutableDictionary.patch
	epatch "${FILESDIR}"/${P}-gnustep-make-2.patch
	epatch "${FILESDIR}"/${P}-as-needed.patch
}

cynthiune_get_config() {
	# Gentoo doesn't have libavi (any more)
	local myconf="disable-windowsmedia=yes"
	use arts || myconf="${myconf} disable-arts=yes"
	use esd || myconf="${myconf} disable-esound=yes"
	use flac || myconf="${myconf} disable-flac=yes disable-flactags=yes"
	use mad || myconf="${myconf} disable-mp3=yes disable-id3tag=yes"
	use modplug || myconf="${myconf} disable-mod=yes"
	use musepack || myconf="${myconf} disable-musepack=yes"
	use timidity || myconf="${myconf} disable-timidity=yes"
	use vorbis || myconf="${myconf} disable-ogg=yes disable-vorbistags=yes"

	echo ${myconf}
}

src_compile() {
	egnustep_env
	egnustep_make "$(cynthiune_get_config)" || die "make failed"
}

src_install() {
	egnustep_env
	egnustep_install "$(cynthiune_get_config)" || die
}





Navigation:
Lists: gentoo-commits: < Prev By Thread Next > < Prev By Date Next >
Previous by thread:
gentoo-x86 commit in gnustep-apps/cynthiune/files: cynthiune-0.9.5-as-needed.patch
Next by thread:
portage r12185 - in main/trunk/pym: _emerge portage
Previous by date:
gentoo-x86 commit in gnustep-apps/cynthiune/files: cynthiune-0.9.5-as-needed.patch
Next by date:
gentoo-x86 commit in dev-python/pydns: ChangeLog pydns-2.3.1.ebuild


Updated Jun 10, 2010

Summary: Archive of the gentoo-commits mailing list.

Donate to support our development efforts.

Copyright 2001-2013 Gentoo Foundation, Inc. Questions, Comments? Contact us.