View | Details | Raw Unified | Return to bug 96787
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	musicbrainz
8
PORTNAME=	musicbrainz
9
PORTVERSION=	0.2.0
9
PORTVERSION=	0.2.1
10
CATEGORIES=	audio ruby
10
CATEGORIES=	audio ruby
11
MASTER_SITES=	http://www.pablotron.org/download/
11
MASTER_SITES=	http://www.pablotron.org/download/
12
PKGNAMEPREFIX=	${RUBY_PKGNAMEPREFIX}
12
PKGNAMEPREFIX=	${RUBY_PKGNAMEPREFIX}
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (ruby/mb-ruby-0.2.0.tar.gz) = dc71a78de28c2a9e07403a3c63c9bea5
1
MD5 (ruby/mb-ruby-0.2.1.tar.gz) = 7116788d85a150b63502501b1eea9690
2
SHA256 (ruby/mb-ruby-0.2.0.tar.gz) = 4f3e59b5d23b394a69c6f8ceaefe87e38dc98e11704abe2251fc9c7d507cef6e
2
SHA256 (ruby/mb-ruby-0.2.1.tar.gz) = 4bf7cd1665c85a668b20f2a03540d46324f4d3eac061e9938adeebc41d6781fb
3
SIZE (ruby/mb-ruby-0.2.0.tar.gz) = 11877
3
SIZE (ruby/mb-ruby-0.2.1.tar.gz) = 31304
(-)files/patch-extconf.rb (-6 / +6 lines)
Lines 1-15 Link Here
1
--- extconf.rb.orig	Sat Aug 21 19:41:02 2004
1
--- extconf.rb.orig	Thu May  4 19:53:01 2006
2
+++ extconf.rb	Sun Dec 26 05:17:30 2004
2
+++ extconf.rb	Thu May  4 19:54:13 2006
3
@@ -1,8 +1,8 @@
3
@@ -1,9 +1,9 @@
4
 require 'mkmf'
4
 require 'mkmf'
5
 
5
 
6
-$LD_FLAGS = "-lstdc++ -lm"
6
-$LD_FLAGS = "-lstdc++ -lm"
7
+$LDFLAGS="-L${PREFIX}/lib -lstdc++ -lm" 
7
+$LDFLAGS="-L${PREFIX}/lib -lstdc++ -lm"
8
 
8
 
9
-have_library('m', 'pow') and
9
 have_func('pow', 'math.h') and
10
 # note, this causes problems in cygwin.  any suggestions?
10
-have_library('stdc++', '__cxa_rethrow') and
11
-have_library('stdc++', '__cxa_rethrow') and
11
-have_library('musicbrainz', 'mb_Query') and
12
-have_library('musicbrainz', 'mb_Query') and
12
+have_library('m') and
13
+have_library('stdc++') and 
13
+have_library('stdc++') and 
14
+have_library('musicbrainz') and
14
+have_library('musicbrainz') and
15
 create_makefile('musicbrainz')
15
 create_makefile('musicbrainz')

Return to bug 96787