public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/peercast: ChangeLog peercast-0.1218-r1.ebuild
@ 2009-05-08 15:38 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; only message in thread
From: Samuli Suominen (ssuominen) @ 2009-05-08 15:38 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/05/08 15:38:32

  Modified:             ChangeLog peercast-0.1218-r1.ebuild
  Log:
  Fix hardcoded g++ which was used for linking wrt #221945
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.20                 media-sound/peercast/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/peercast/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/peercast/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/peercast/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/peercast/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	7 Jul 2008 20:59:25 -0000	1.19
+++ ChangeLog	8 May 2009 15:38:32 -0000	1.20
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/peercast
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/peercast/ChangeLog,v 1.19 2008/07/07 20:59:25 maekke Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/peercast/ChangeLog,v 1.20 2009/05/08 15:38:32 ssuominen Exp $
+
+  08 May 2009; Samuli Suominen <ssuominen@gentoo.org>
+  peercast-0.1218-r1.ebuild:
+  Fix hardcoded g++ which was used for linking wrt #221945
 
   07 Jul 2008; Markus Meier <maekke@gentoo.org> peercast-0.1218-r1.ebuild:
   amd64/x86 stable, bug #220281



1.3                  media-sound/peercast/peercast-0.1218-r1.ebuild

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

Index: peercast-0.1218-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/peercast/peercast-0.1218-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- peercast-0.1218-r1.ebuild	7 Jul 2008 20:59:25 -0000	1.2
+++ peercast-0.1218-r1.ebuild	8 May 2009 15:38:32 -0000	1.3
@@ -1,35 +1,34 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/peercast/peercast-0.1218-r1.ebuild,v 1.2 2008/07/07 20:59:25 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/peercast/peercast-0.1218-r1.ebuild,v 1.3 2009/05/08 15:38:32 ssuominen Exp $
 
 inherit eutils toolchain-funcs flag-o-matic base
 
-IUSE=""
-
-S=${WORKDIR}
-
 DESCRIPTION="A client and server for Peercast P2P-radio network"
 HOMEPAGE="http://www.peercast.org"
-
 SRC_URI="http://www.peercast.org/src/${P}-src.tgz"
 
 LICENSE="GPL-2"
-
 SLOT="0"
 KEYWORDS="amd64 x86"
+IUSE=""
 
-DEPEND=""
 RDEPEND=""
-PATCHES=(	"${FILESDIR}/${P}-CVE-2008-2040.patch"
-		"${FILESDIR}/${PN}-0.1216-makefile.patch"
-		"${FILESDIR}/${PN}-0.1216-amd64.patch"	)
+DEPEND=""
+
+S=${WORKDIR}
+
+PATCHES=( "${FILESDIR}/${P}-CVE-2008-2040.patch"
+	"${FILESDIR}/${PN}-0.1216-makefile.patch"
+	"${FILESDIR}/${PN}-0.1216-amd64.patch" )
 
 src_compile() {
 	append-ldflags -pthread
 
 	cd "${S}"/ui/linux
-	emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" AR="$(tc-getAR)" \
-		LDFLAGS="${LDFLAGS}" || die "emake failed"
+	emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" \
+		AR="$(tc-getAR)" LDFLAGS="${LDFLAGS}" \
+		LD="$(tc-getCXX)" || die "emake failed"
 }
 
 src_install() {






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-05-08 15:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-08 15:38 [gentoo-commits] gentoo-x86 commit in media-sound/peercast: ChangeLog peercast-0.1218-r1.ebuild Samuli Suominen (ssuominen)

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