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

(-)audio/gnump3d/Makefile (-1 / +1 lines)
Lines 7-13 Link Here
7
#
7
#
8
8
9
PORTNAME=	gnump3d
9
PORTNAME=	gnump3d
10
PORTVERSION=	2.2
10
PORTVERSION=	2.3
11
CATEGORIES=	audio
11
CATEGORIES=	audio
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
(-)audio/gnump3d/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (gnump3d-2.2.tar.bz2) = fc3d6b4ad2d3ebf14c29536c8cc6a514
1
MD5 (gnump3d-2.3.tar.bz2) = 35f795d8ad2b5c1164456330ac52fa21
(-)audio/gnump3d/files/patch-bin::gnump3d2 (-27 / +27 lines)
Lines 1-6 Link Here
1
--- bin/gnump3d2.orig	Tue Feb  4 18:25:13 2003
1
--- bin/gnump3d2.orig	Tue Apr 29 06:18:15 2003
2
+++ bin/gnump3d2	Mon Feb 10 09:22:35 2003
2
+++ bin/gnump3d2	Tue Apr 29 06:21:39 2003
3
@@ -2397,9 +2397,9 @@
3
@@ -2234,9 +2234,9 @@
4
   {
4
   {
5
       $CONFIG_FILE = $ENV{"HOME"} . "/.gnump3drc";
5
       $CONFIG_FILE = $ENV{"HOME"} . "/.gnump3drc";
6
   }
6
   }
Lines 12-39 Link Here
12
   }
12
   }
13
   elsif ( -e "gnump3d.conf" )
13
   elsif ( -e "gnump3d.conf" )
14
   {
14
   {
15
@@ -2534,8 +2534,8 @@
15
@@ -2371,8 +2371,8 @@
16
   $PORT          = getConfig( "port" )            || 8888;
16
   $PORT          = getConfig( "port", 8888 );
17
   $bind_address  = getConfig( "binding_host" )    || "";
17
   $bind_address  = getConfig( "binding_host", "" );
18
   $host          = getConfig( "hostname" )        || "localhost";
18
   $host          = getConfig( "hostname", "localhost" );
19
-  $theme_dir     = getConfig( "theme_directory" ) || "/usr/share/gnump3d";
19
-  $theme_dir     = getConfig( "theme_directory", "/usr/share/gnump3d" );
20
-  $plugin_dir    = getConfig( "plugin_directory" )|| "/usr/lib/perl5/gnump3d/plugins";
20
-  $plugin_dir    = getConfig( "plugin_directory",  "/usr/lib/perl5/gnump3d/plugins" );
21
+  $theme_dir     = getConfig( "theme_directory" ) || "%%PREFIX%%/share/gnump3d";
21
+  $theme_dir     = getConfig( "theme_directory", "%%PREFIX%%/share/gnump3d" );
22
+  $plugin_dir    = getConfig( "plugin_directory" )|| "%%PERL_SITELIBDIR%%/gnump3d/plugins";
22
+  $plugin_dir    = getConfig( "plugin_directory",  "%%PERL_SITELIBDIR%%/gnump3d/plugins" );
23
   $always_stream = getConfig( "always_stream" )   || 1;
23
   $always_stream = getConfig( "always_stream", 1 );
24
   $access_log    = getConfig( "logfile" )         || "/var/log/gnump3d/access.log";
24
   $access_log    = getConfig( "logfile", "/var/log/gnump3d/access.log" );
25
   $error_log     = getConfig( "errorlog" )        || "/var/log/gnump3d/error.log";
25
   $error_log     = getConfig( "errorlog", "/var/log/gnump3d/error.log" );
26
@@ -2543,11 +2543,11 @@
26
@@ -2380,11 +2380,11 @@
27
   $client_host   = getConfig( "use_client_host" ) || 1;
27
   $client_host   = getConfig( "use_client_host", 1 );
28
   $default_theme = getConfig( "theme" )           || "default";
28
   $default_theme = getConfig( "theme", "default" );
29
   $TIMEOUT       = getConfig( "read_time" )       || 10;
29
   $TIMEOUT       = getConfig( "read_time", 10 );
30
-  $STATSPROG     = getConfig( "stats_program" )   || "/usr/bin/gnump3d-top";
30
-  $STATSPROG     = getConfig( "stats_program", "/usr/bin/gnump3d-top" );
31
+  $STATSPROG     = getConfig( "stats_program" )   || "%%PREFIX%%/bin/gnump3d-top";
31
+  $STATSPROG     = getConfig( "stats_program", "%%PREFIX%%/bin/gnump3d-top" );
32
   $STATSARGS     = getConfig( "stats_args" )      || "--count=40";
32
   $STATSARGS     = getConfig( "stats_arguments", "" );
33
   $play_all      = getConfig( "play_all_text" )   || "Play All";
33
   $play_all      = getConfig( "play_all_text", "Play All" );
34
   $play_rec      = getConfig( "play_recursively_text" ) || "Play Recursively";
34
   $play_rec      = getConfig( "play_recursively_text",  "Play Recursively" );
35
-  $mime_file     = getConfig( "mime_file" )       || "/etc/gnump3d/mime.types";
35
-  $mime_file     = getConfig( "mime_file",  "/etc/gnump3d/mime.types" );
36
+  $mime_file     = getConfig( "mime_file" )       || "%%PREFIX%%/etc/gnump3d/mime.types";
36
+  $mime_file     = getConfig( "mime_file",  "%%PREFIX%%/etc/gnump3d/mime.types" );
37
   $enable_browse = getConfig( "enable_browsing" ) || 1;
37
   $enable_browse = getConfig( "enable_browsing", 1 );
38
   $sort_order    = getConfig( "sort_order" )      || '$SONGNAME';
38
   $sort_order    = getConfig( "sort_order", '$SONGNAME' );
39
 
39
 
(-)audio/gnump3d/files/patch-etc::gnump3d.conf (-30 / +28 lines)
Lines 1-6 Link Here
1
--- etc/gnump3d.conf.orig	Tue Feb  4 18:25:13 2003
1
--- etc/gnump3d.conf.orig	Tue Apr 29 06:18:15 2003
2
+++ etc/gnump3d.conf	Mon Feb 10 09:08:29 2003
2
+++ etc/gnump3d.conf	Tue Apr 29 06:26:17 2003
3
@@ -145,7 +145,7 @@
3
@@ -163,7 +163,7 @@
4
 # path if you don't have it installed upon the $PATH of the user
4
 # path if you don't have it installed upon the $PATH of the user
5
 # who starts the server:
5
 # who starts the server:
6
 #
6
 #
Lines 9-15 Link Here
9
 #
9
 #
10
 #
10
 #
11
 #  For example you may change the default number of lines which are
11
 #  For example you may change the default number of lines which are
12
@@ -359,13 +359,13 @@
12
@@ -382,13 +382,13 @@
13
 # theme variable below you specify which set of templates you wish
13
 # theme variable below you specify which set of templates you wish
14
 # the server to use.
14
 # the server to use.
15
 #
15
 #
Lines 19-73 Link Here
19
 #
19
 #
20
-#  eg. To use the templates in '/usr/share/gnump3d/simple/' then you
20
-#  eg. To use the templates in '/usr/share/gnump3d/simple/' then you
21
+#  eg. To use the templates in '%%PREFIX%%/share/gnump3d/simple/' then you
21
+#  eg. To use the templates in '%%PREFIX%%/share/gnump3d/simple/' then you
22
 #      should set 'theme=simple'
22
 #      should set theme to be 'simple'
23
 #
23
 #
24
-#      To use the templates in '/usr/share/gnump3d/twin/' then you
24
-#      To use the templates in '/usr/share/gnump3d/twin/' then you
25
+#      To use the templates in '%%PREFIX%%/share/gnump3d/twin/' then you
25
+#      To use the templates in '%%PREFIX%%/share/gnump3d/twin/' then you
26
 #      should set 'theme=twin'
26
 #      should set theme to be 'twin'
27
 #
27
 #
28
 #  When the server is running you may set the theme from your browser
28
 #  When the server is running you may set the theme from your browser
29
@@ -392,7 +392,7 @@
29
@@ -415,7 +415,7 @@
30
 # location.
30
 # location.
31
 #
31
 #
32
 ##
32
 ##
33
-# theme_directory = /usr/share/gnump3d/themes/
33
-# theme_directory = /usr/share/gnump3d/
34
+# theme_directory = %%PREFIX%%/share/gnump3d/themes/
34
+# theme_directory = %%PREFIX%%/share/gnump3d/
35
 ##
35
 ##
36
 
36
 
37
 
37
 
38
@@ -574,11 +574,11 @@
38
@@ -568,13 +568,13 @@
39
 # downsampled it will be quoted in '"' characters.
40
 #
39
 #
41
 #
40
 #
42
-# downsample_mp3_binary = /usr/bin/lame
43
+# downsample_mp3_binary = %%LOCALBASE%%/bin/lame
44
 # downsample_mp3_args   = --mp3input --resample 32 -b 33 $FILENAME -
45
 #
41
 #
42
-#downsample_high_mp3   = /usr/bin/lame  --mp3input --resample 32 -b 33 
43
-#downsample_medium_mp3 = /usr/bin/lame  --mp3input --resample 24 -b 24
44
-#downsample_low_mp3    = /usr/bin/lame  --mp3input --resample 16 -b 16 
45
-#
46
-#downsample_high_ogg   = /usr/bin/oggenc --mp3input --resample 32 -b 44
47
-#downsample_medium_ogg = /usr/bin/oggenc --mp3input --resample 24 -b 44
48
-#downsample_low_ogg    = /usr/bin/oggenc --mp3input --resample 16 -b 44
49
+#downsample_high_mp3   = %%LOCALBASE%%/bin/lame  --mp3input --resample 32 -b 33 
50
+#downsample_medium_mp3 = %%LOCALBASE%%/bin/lame  --mp3input --resample 24 -b 24
51
+#downsample_low_mp3    = %%LOCALBASE%%/bin/lame  --mp3input --resample 16 -b 16 
52
+#
53
+#downsample_high_ogg   = %%LOCALBASE%%/bin/oggenc --mp3input --resample 32 -b 44
54
+#downsample_medium_ogg = %%LOCALBASE%%/bin/oggenc --mp3input --resample 24 -b 44
55
+#downsample_low_ogg    = %%LOCALBASE%%/bin/oggenc --mp3input --resample 16 -b 44
46
 #
56
 #
47
-# downsample_ogg_binary = /usr/bin/oggenc
48
+# downsample_ogg_binary = %%LOCALBASE%%/bin/oggenc
49
 # downsample_ogg_args = --mp3input --resample 32 -b 44 $FILENAME -
50
 #
51
 #
52
@@ -586,7 +586,7 @@
53
 # binary.  So if you have .midi files you wish to downsample, (dunno if
54
 # that's possible but just for example), you would create lines like this
55
 #
56
-#     downsample_midi_binary = /usr/bin/mythic-downsampler.
57
+#     downsample_midi_binary = %%LOCALBASE%%/bin/mythic-downsampler.
58
 #     downsample_midi_args   = --new-rate 3bps --output - $FILENAME
59
 
57
 
60
 #
58
 #
61
@@ -609,7 +609,7 @@
59
@@ -597,7 +597,7 @@
62
 #  This next setting allows you to change the location from which the
60
 #  This next setting allows you to change the location from which the
63
 # plugins are loaded.
61
 # plugins are loaded.
64
 #
62
 #
65
-# plugin_directory = /usr/lib/perl5/gnump3d/plugins
63
-# plugin_directory = /usr/lib/perl5/gnump3d/plugins
66
+# plugin_directory = %%PERL_SITELIBDIR%%/gnump3d/plugins
64
+# plugin_directory = %%PERL_SITELIBDIR%%/gnump3d/plugins
67
 #
65
 #
68
 
66
 #
69
 
67
 #  NOTE: the following directory should be correctly filled in by
70
@@ -671,7 +671,7 @@
68
@@ -669,7 +669,7 @@
71
 # used by default.  If not point this next file to wherever your mime
69
 # used by default.  If not point this next file to wherever your mime
72
 # types file is located:
70
 # types file is located:
73
 #
71
 #
(-)audio/gnump3d/pkg-plist (+6 lines)
Lines 15-25 Link Here
15
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/playlist.pm
15
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/playlist.pm
16
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/COPYING.pm
16
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/COPYING.pm
17
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/bug.pm
17
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/bug.pm
18
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/info.pm
18
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/last.pm
19
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/last.pm
20
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/now.pm
19
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/playlist.pm
21
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/playlist.pm
20
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/prefs.pm
22
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/prefs.pm
21
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/search.pm
23
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/search.pm
22
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/stats.pm
24
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/stats.pm
25
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/tagreader.pm
23
share/gnump3d/LaFrere/AUTHOR
26
share/gnump3d/LaFrere/AUTHOR
24
share/gnump3d/LaFrere/config.ini
27
share/gnump3d/LaFrere/config.ini
25
share/gnump3d/LaFrere/error.html
28
share/gnump3d/LaFrere/error.html
Lines 56-61 Link Here
56
share/gnump3d/Thexder/stats.html
59
share/gnump3d/Thexder/stats.html
57
share/gnump3d/default/AUTHOR
60
share/gnump3d/default/AUTHOR
58
share/gnump3d/default/error.html
61
share/gnump3d/default/error.html
62
share/gnump3d/default/footer.tmpl
63
share/gnump3d/default/header.tmpl
59
share/gnump3d/default/index.html
64
share/gnump3d/default/index.html
60
share/gnump3d/default/plugin.html
65
share/gnump3d/default/plugin.html
61
share/gnump3d/default/results.html
66
share/gnump3d/default/results.html
Lines 63-68 Link Here
63
share/gnump3d/default/stats.html
68
share/gnump3d/default/stats.html
64
share/gnump3d/default/style.css
69
share/gnump3d/default/style.css
65
share/gnump3d/nausicaa/AUTHOR
70
share/gnump3d/nausicaa/AUTHOR
71
share/gnump3d/nausicaa/config.ini
66
share/gnump3d/nausicaa/error.html
72
share/gnump3d/nausicaa/error.html
67
share/gnump3d/nausicaa/index.html
73
share/gnump3d/nausicaa/index.html
68
share/gnump3d/nausicaa/plugin.html
74
share/gnump3d/nausicaa/plugin.html

Return to bug 51667