public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/mup: ChangeLog mup-5.6.ebuild
@ 2010-05-05 18:27 Thomas Beierlein (tomjbe)
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Beierlein (tomjbe) @ 2010-05-05 18:27 UTC (permalink / raw
  To: gentoo-commits

tomjbe      10/05/05 18:27:22

  Modified:             ChangeLog
  Added:                mup-5.6.ebuild
  Log:
  Version bump.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.32                 media-sound/mup/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mup/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	5 May 2010 17:19:19 -0000	1.31
+++ ChangeLog	5 May 2010 18:27:22 -0000	1.32
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/mup
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mup/ChangeLog,v 1.31 2010/05/05 17:19:19 tomjbe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mup/ChangeLog,v 1.32 2010/05/05 18:27:22 tomjbe Exp $
+
+*mup-5.6 (05 May 2010)
+
+  05 May 2010; Thomas Beierlein <tomjbe@gentoo.org> +mup-5.6.ebuild,
+  +files/mup-5.6-Makefile.patch:
+  Version bump.
 
   05 May 2010; Thomas Beierlein <tomjbe@gentoo.org> mup-5.4.ebuild:
   Use /usr/$(get_libdir) instead hardcoded /usr/lib; Resolves Bug #281424.



1.1                  media-sound/mup/mup-5.6.ebuild

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

Index: mup-5.6.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mup/mup-5.6.ebuild,v 1.1 2010/05/05 18:27:22 tomjbe Exp $

EAPI=2
inherit eutils multilib toolchain-funcs

DESCRIPTION="Program for printing music scores"
HOMEPAGE="http://www.arkkra.com/"
SRC_URI="ftp://ftp.arkkra.com/pub/unix/mup${PV//.}src.tar.gz"

LICENSE="Arkkra"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""

RDEPEND="x11-libs/libX11
	x11-libs/libXext
	x11-libs/fltk:1.1
	x11-libs/libXpm
	media-libs/jpeg
	media-libs/libpng"
DEPEND="${RDEPEND}
	x11-proto/xproto"

src_prepare() {
	epatch "${FILESDIR}"/${P}-Makefile.patch
	sed -i -e "s:/lib:/$(get_libdir):g" Makefile || die "sed failed"
}

src_compile() {
	emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" \
		CFLAGS="${CFLAGS}" || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc docs/{*.txt,README0}
	dohtml docs/{*.html,uguide/*}
	docinto sample
	dodoc docs/{*.mup,*.ps}
}






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

* [gentoo-commits] gentoo-x86 commit in media-sound/mup: ChangeLog mup-5.6.ebuild
@ 2011-03-10  9:21 Tim Harder (radhermit)
  0 siblings, 0 replies; 2+ messages in thread
From: Tim Harder (radhermit) @ 2011-03-10  9:21 UTC (permalink / raw
  To: gentoo-commits

radhermit    11/03/10 09:21:10

  Modified:             ChangeLog mup-5.6.ebuild
  Log:
  Fix compile issues with fltk (bug #352867).
  
  (Portage version: 2.2.0_alpha26/cvs/Linux x86_64)

Revision  Changes    Path
1.34                 media-sound/mup/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mup/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	28 Feb 2011 18:07:45 -0000	1.33
+++ ChangeLog	10 Mar 2011 09:21:10 -0000	1.34
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/mup
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mup/ChangeLog,v 1.33 2011/02/28 18:07:45 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mup/ChangeLog,v 1.34 2011/03/10 09:21:10 radhermit Exp $
+
+  10 Mar 2011; Tim Harder <radhermit@gentoo.org> mup-5.6.ebuild,
+  +files/mup-5.6-fltk-fixes.patch:
+  Fix compile issues with fltk (bug #352867).
 
   28 Feb 2011; Samuli Suominen <ssuominen@gentoo.org> mup-5.4.ebuild,
   mup-5.6.ebuild:



1.3                  media-sound/mup/mup-5.6.ebuild

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

Index: mup-5.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mup/mup-5.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mup-5.6.ebuild	28 Feb 2011 18:07:45 -0000	1.2
+++ mup-5.6.ebuild	10 Mar 2011 09:21:10 -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/mup/mup-5.6.ebuild,v 1.2 2011/02/28 18:07:45 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mup/mup-5.6.ebuild,v 1.3 2011/03/10 09:21:10 radhermit Exp $
 
 EAPI=2
 inherit eutils multilib toolchain-funcs
@@ -25,6 +25,7 @@
 
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-Makefile.patch
+	epatch "${FILESDIR}"/${P}-fltk-fixes.patch
 	sed -i -e "s:/lib:/$(get_libdir):g" Makefile || die "sed failed"
 }
 






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

end of thread, other threads:[~2011-03-10  9:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-05 18:27 [gentoo-commits] gentoo-x86 commit in media-sound/mup: ChangeLog mup-5.6.ebuild Thomas Beierlein (tomjbe)
  -- strict thread matches above, loose matches on Subject: below --
2011-03-10  9:21 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