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

(-)audio/gnump3d/Makefile (-38 / +35 lines)
Lines 7-62 Link Here
7
#
7
#
8
8
9
PORTNAME=	gnump3d
9
PORTNAME=	gnump3d
10
PORTVERSION=	1.0
10
PORTVERSION=	2.2
11
PORTREVISION=	2
12
CATEGORIES=	audio
11
CATEGORIES=	audio
13
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
14
MASTER_SITE_SUBDIR=	${PORTNAME}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
15
14
16
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	ports@FreeBSD.org
17
16
17
RUN_DEPENDS=	lame:${PORTSDIR}/audio/lame \
18
		oggenc:${PORTSDIR}/audio/mp32ogg
19
18
USE_BZIP2=	yes
20
USE_BZIP2=	yes
19
USE_PERL5=	yes
21
USE_PERL5=	yes
20
USE_REINPLACE=	yes
22
NO_BUILD=	yes
21
USE_GMAKE=	yes
22
USE_AUTOCONF_VER=	253
23
USE_LIBTOOL=	yes
24
LIBTOOLFLAGS=	# none
25
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
26
CONFIGURE_ENV=	CONFIG_SHELL="${SH}" \
27
		CPPFLAGS="-I${LOCALBASE}/include" \
28
		LDFLAGS="-L${LOCALBASE}/lib"
29
CONFIGURE_ARGS=	--libdir=${PREFIX}/lib/gnump3d
30
# Avoid triggering automake
31
MAKE_ARGS=	ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOHEADER="${TRUE}" \
32
		AUTOMAKE="${TRUE}"
33
34
MAN1=	gnump3d.1 gnump3d.conf.1 gnump3d-top.1
35
36
.if !defined(WITHOUT_VORBIS)
37
LIB_DEPENDS=	vorbis.2:${PORTSDIR}/audio/libvorbis
38
CONFIGURE_ARGS+=	--with-vorbis
39
.endif
40
23
41
pre-everything::
24
MAN1=		gnump3d.1 gnump3d-top.1 gnump3d.conf.1
42
.if !defined(WITHOUT_VORBIS)
43
	@${ECHO_MSG}
44
	@${ECHO_MSG} "If you want to compile without Ogg/Vorbis support,"
45
	@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITHOUT_VORBIS=yes\""
46
	@${ECHO_MSG}
47
.endif
48
25
49
post-patch:
26
CONFDIR=	${PREFIX}/etc/${PORTNAME}
50
	@${REINPLACE_CMD} -e 's|-D_THREAD_SAFE|${PTHREAD_CFLAGS}|g ; \
27
PERL_SITELIBDIR=	${PREFIX}/lib/perl5/site_perl/${PERL_VER}
51
		 s|-pthread|${PTHREAD_LIBS}|g' ${WRKSRC}/aclocal.m4
52
28
53
pre-configure:
29
post-patch:
54
.for dir in libltdl mplib
30
.for file in bin/gnump3d-top bin/gnump3d2 etc/gnump3d.conf man/gnump3d.conf.1
55
	@(cd ${WRKSRC}/${dir} && ${SETENV} ${AUTOCONF_ENV} ${AUTOCONF} \
31
	@${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|g ; \
56
		${AUTOCONF_ARGS})
32
		 s|%%LOCALBASE%%|${LOCALBASE}|g ; \
33
		 s|%%PERL_SITELIBDIR%%|${PERL_SITELIBDIR}|g' ${WRKSRC}/${file}
57
.endfor
34
.endfor
58
35
59
post-install:
36
do-install:
60
	@${MKDIR} /var/log/gnump3d
37
.for file in gnump3d-top gnump3d2
38
	${INSTALL_SCRIPT} ${WRKSRC}/bin/${file} ${PREFIX}/bin
39
.endfor
40
	${LN} -sf gnump3d2 ${PREFIX}/bin/gnump3d
41
.for file in gnump3d.1 gnump3d-top.1 gnump3d.conf.1
42
	${INSTALL_MAN} ${WRKSRC}/man/${file} ${MANPREFIX}/man/man1
43
.endfor
44
	${MKDIR} ${PERL_SITELIBDIR}
45
	cd ${WRKSRC}/lib && ${FIND} . | \
46
		cpio -pdm -L -R ${LIBOWN}:${LIBGRP} ${PERL_SITELIBDIR}
47
	${MKDIR} ${DATADIR}
48
	cd ${WRKSRC}/templates && ${FIND} . | \
49
		cpio -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${DATADIR}
50
	${MKDIR} ${CONFDIR}
51
	${INSTALL_DATA} ${WRKSRC}/etc/mime.types ${CONFDIR}
52
	${INSTALL_DATA} ${WRKSRC}/etc/gnump3d.conf \
53
		${CONFDIR}/gnump3d.conf-default
54
.if !exists(${PREFIX}/etc/${PORTNAME}/gnump3d.conf)
55
	cd ${CONFDIR} && ${CP} gnump3d.conf-default gnump3d.conf
56
.endif
57
	${MKDIR} /var/log/${PORTNAME}
61
58
62
.include <bsd.port.mk>
59
.include <bsd.port.mk>
(-)audio/gnump3d/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (gnump3d-1.0.tar.bz2) = 842d03a1e0421422c1a94c2c86273991
1
MD5 (gnump3d-2.2.tar.bz2) = fc3d6b4ad2d3ebf14c29536c8cc6a514
(-)audio/gnump3d/files/patch-aclocal.m4 (-10 lines)
Lines 1-10 Link Here
1
--- aclocal.m4.orig	Mon Jan 27 21:52:25 2003
2
+++ aclocal.m4	Mon Jan 27 21:52:56 2003
3
@@ -164,6 +164,7 @@
4
 
5
 # This can be used to rebuild libtool when needed
6
 LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
7
+$ac_aux_dir/ltconfig $LIBTOOL_DEPS
8
 
9
 # Always use our own libtool.
10
 LIBTOOL='$(SHELL) $(top_builddir)/libtool'
(-)audio/gnump3d/files/patch-bin::gnump3d-top (+17 lines)
Line 0 Link Here
1
--- bin/gnump3d-top.orig	Tue Feb  4 18:25:13 2003
2
+++ bin/gnump3d-top	Mon Feb 10 09:24:01 2003
3
@@ -63,12 +63,12 @@
4
 {
5
     $DEFAULT_CONFIG = $ENV{"HOME"} . "/.gnump3drc";
6
 }
7
-elsif ( -e "/etc/gnump3d/gnump3d.conf" )
8
+elsif ( -e "%%PREFIX%%/etc/gnump3d/gnump3d.conf" )
9
 {
10
     #
11
     # Otherwise the system wide one.
12
     #
13
-    $DEFAULT_CONFIG = "/etc/gnump3d/gnump3d.conf";
14
+    $DEFAULT_CONFIG = "%%PREFIX%%/etc/gnump3d/gnump3d.conf";
15
 }
16
 elsif ( -e "gnump3d.conf" )
17
 {
(-)audio/gnump3d/files/patch-bin::gnump3d2 (+39 lines)
Line 0 Link Here
1
--- bin/gnump3d2.orig	Tue Feb  4 18:25:13 2003
2
+++ bin/gnump3d2	Mon Feb 10 09:22:35 2003
3
@@ -2397,9 +2397,9 @@
4
   {
5
       $CONFIG_FILE = $ENV{"HOME"} . "/.gnump3drc";
6
   }
7
-  elsif ( -e "/etc/gnump3d/gnump3d.conf" )
8
+  elsif ( -e "%%PREFIX%%/etc/gnump3d/gnump3d.conf" )
9
   {
10
-      $CONFIG_FILE = "/etc/gnump3d/gnump3d.conf";
11
+      $CONFIG_FILE = "%%PREFIX%%/etc/gnump3d/gnump3d.conf";
12
   }
13
   elsif ( -e "gnump3d.conf" )
14
   {
15
@@ -2534,8 +2534,8 @@
16
   $PORT          = getConfig( "port" )            || 8888;
17
   $bind_address  = getConfig( "binding_host" )    || "";
18
   $host          = getConfig( "hostname" )        || "localhost";
19
-  $theme_dir     = getConfig( "theme_directory" ) || "/usr/share/gnump3d";
20
-  $plugin_dir    = getConfig( "plugin_directory" )|| "/usr/lib/perl5/gnump3d/plugins";
21
+  $theme_dir     = getConfig( "theme_directory" ) || "%%PREFIX%%/share/gnump3d";
22
+  $plugin_dir    = getConfig( "plugin_directory" )|| "%%PERL_SITELIBDIR%%/gnump3d/plugins";
23
   $always_stream = getConfig( "always_stream" )   || 1;
24
   $access_log    = getConfig( "logfile" )         || "/var/log/gnump3d/access.log";
25
   $error_log     = getConfig( "errorlog" )        || "/var/log/gnump3d/error.log";
26
@@ -2543,11 +2543,11 @@
27
   $client_host   = getConfig( "use_client_host" ) || 1;
28
   $default_theme = getConfig( "theme" )           || "default";
29
   $TIMEOUT       = getConfig( "read_time" )       || 10;
30
-  $STATSPROG     = getConfig( "stats_program" )   || "/usr/bin/gnump3d-top";
31
+  $STATSPROG     = getConfig( "stats_program" )   || "%%PREFIX%%/bin/gnump3d-top";
32
   $STATSARGS     = getConfig( "stats_args" )      || "--count=40";
33
   $play_all      = getConfig( "play_all_text" )   || "Play All";
34
   $play_rec      = getConfig( "play_recursively_text" ) || "Play Recursively";
35
-  $mime_file     = getConfig( "mime_file" )       || "/etc/gnump3d/mime.types";
36
+  $mime_file     = getConfig( "mime_file" )       || "%%PREFIX%%/etc/gnump3d/mime.types";
37
   $enable_browse = getConfig( "enable_browsing" ) || 1;
38
   $sort_order    = getConfig( "sort_order" )      || '$SONGNAME';
39
 
(-)audio/gnump3d/files/patch-etc::gnump3d.conf (+78 lines)
Line 0 Link Here
1
--- etc/gnump3d.conf.orig	Tue Feb  4 18:25:13 2003
2
+++ etc/gnump3d.conf	Mon Feb 10 09:08:29 2003
3
@@ -145,7 +145,7 @@
4
 # path if you don't have it installed upon the $PATH of the user
5
 # who starts the server:
6
 #
7
-# stats_program = /usr/bin/gnump3d-top
8
+# stats_program = %%PREFIX%%/bin/gnump3d-top
9
 #
10
 #
11
 #  For example you may change the default number of lines which are
12
@@ -359,13 +359,13 @@
13
 # theme variable below you specify which set of templates you wish
14
 # the server to use.
15
 #
16
-#  The theme directory defaults to /usr/share/gnump3d - but may be
17
+#  The theme directory defaults to %%PREFIX%%/share/gnump3d - but may be
18
 # changed via the 'theme_directory' setting given below.
19
 #
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
22
 #      should set 'theme=simple'
23
 #
24
-#      To use the templates in '/usr/share/gnump3d/twin/' then you
25
+#      To use the templates in '%%PREFIX%%/share/gnump3d/twin/' then you
26
 #      should set 'theme=twin'
27
 #
28
 #  When the server is running you may set the theme from your browser
29
@@ -392,7 +392,7 @@
30
 # location.
31
 #
32
 ##
33
-# theme_directory = /usr/share/gnump3d/themes/
34
+# theme_directory = %%PREFIX%%/share/gnump3d/themes/
35
 ##
36
 
37
 
38
@@ -574,11 +574,11 @@
39
 # downsampled it will be quoted in '"' characters.
40
 #
41
 #
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
 #
46
 #
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
 
60
 #
61
@@ -609,7 +609,7 @@
62
 #  This next setting allows you to change the location from which the
63
 # plugins are loaded.
64
 #
65
-# plugin_directory = /usr/lib/perl5/gnump3d/plugins
66
+# plugin_directory = %%PERL_SITELIBDIR%%/gnump3d/plugins
67
 #
68
 
69
 
70
@@ -671,7 +671,7 @@
71
 # used by default.  If not point this next file to wherever your mime
72
 # types file is located:
73
 #
74
-#  mime_file = /etc/gnump3d/mime.types
75
+#  mime_file = %%PREFIX%%/etc/gnump3d/mime.types
76
 #
77
 #
78
 
(-)audio/gnump3d/files/patch-man::gnump3d.conf.1 (+11 lines)
Line 0 Link Here
1
--- man/gnump3d.conf.1.orig	Tue Feb  4 18:25:13 2003
2
+++ man/gnump3d.conf.1	Fri Feb  7 01:04:28 2003
3
@@ -18,7 +18,7 @@
4
 .B gnump3d.conf
5
 .Sp
6
 By default the configuration file lives in 
7
-.B /etc/gnump3d/gnump3d.conf
8
+.B %%PREFIX%%/etc/gnump3d/gnump3d.conf
9
 but the server may instead read the personal configuration file
10
 .B
11
 ~/.gnump3drc
(-)audio/gnump3d/files/patch-man_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/audio/gnump3d/files/patch-man_Makefile.in,v 1.1 2002/08/14 21:42:10 naddy Exp $
3
4
--- man/Makefile.in.orig	Wed Aug 14 02:19:33 2002
5
+++ man/Makefile.in	Wed Aug 14 02:19:52 2002
6
@@ -85,7 +85,7 @@
7
 STRIP = @STRIP@
8
 VERSION = @VERSION@
9
 
10
-man_MANS = gnump3d.1 gnump3d-top.1 gnump3d.conf.1 gnump3d-config.1
11
+man_MANS = gnump3d.1 gnump3d-top.1 gnump3d.conf.1
12
 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
13
 CONFIG_HEADER = ../src/config.h
14
 CONFIG_CLEAN_FILES = 
(-)audio/gnump3d/files/patch-plugins_bug.cc (-14 lines)
Lines 1-14 Link Here
1
--- plugins/bug.cc.orig	Fri Nov 29 04:33:21 2002
2
+++ plugins/bug.cc	Mon Dec  2 19:27:02 2002
3
@@ -40,6 +40,11 @@
4
 #include <sys/utsname.h>
5
 
6
 
7
+#ifdef HAVE_PTHREAD
8
+# include <pthread.h>
9
+#endif
10
+
11
+
12
 #include "debug.h"
13
 #include "iplugin.h"
14
 #include "request.h"
(-)audio/gnump3d/files/patch-plugins_last20.cc (-14 lines)
Lines 1-14 Link Here
1
--- plugins/last20.cc.orig	Fri Nov 29 04:33:21 2002
2
+++ plugins/last20.cc	Mon Dec  2 19:29:11 2002
3
@@ -40,6 +40,11 @@
4
 #include <fstream.h>
5
 
6
 
7
+#ifdef HAVE_PTHREAD
8
+# include <pthread.h>
9
+#endif
10
+
11
+
12
 #include "debug.h"
13
 #include "files.h"
14
 #include "iplugin.h"
(-)audio/gnump3d/files/patch-plugins_now.cc (-14 lines)
Lines 1-14 Link Here
1
--- plugins/now.cc.orig	Fri Nov 29 04:33:21 2002
2
+++ plugins/now.cc	Mon Dec  2 19:30:10 2002
3
@@ -40,6 +40,11 @@
4
 #include <fstream.h>
5
 
6
 
7
+#ifdef HAVE_PTHREAD
8
+# include <pthread.h>
9
+#endif
10
+
11
+
12
 #include "debug.h"
13
 #include "iplugin.h"
14
 #include "files.h"
(-)audio/gnump3d/files/patch-plugins_playlist.cc (-15 lines)
Lines 1-15 Link Here
1
--- plugins/playlist.cc.orig	Fri Nov 29 04:33:21 2002
2
+++ plugins/playlist.cc	Mon Dec  2 19:35:39 2002
3
@@ -39,6 +39,12 @@
4
 #include <stdio.h>
5
 #include <stdlib.h>
6
 
7
+
8
+#ifdef HAVE_PTHREAD 
9
+# include <pthread.h>
10
+#endif
11
+
12
+
13
 #include "debug.h"
14
 #include "iplugin.h"
15
 #include "files.h"
(-)audio/gnump3d/files/patch-plugins_search.cc (-15 lines)
Lines 1-15 Link Here
1
--- plugins/search.cc.orig	Fri Nov 29 04:33:21 2002
2
+++ plugins/search.cc	Mon Dec  2 19:31:03 2002
3
@@ -38,6 +38,12 @@
4
 #include <stdio.h>
5
 #include <stdlib.h>
6
 
7
+
8
+#ifdef HAVE_PTHREAD 
9
+# include <pthread.h>
10
+#endif
11
+
12
+
13
 #include "files.h"
14
 #include "debug.h"
15
 #include "dirs.h"
(-)audio/gnump3d/files/patch-plugins_stats.cc (-14 lines)
Lines 1-14 Link Here
1
--- plugins/stats.cc.orig	Fri Nov 29 04:33:21 2002
2
+++ plugins/stats.cc	Mon Dec  2 19:32:09 2002
3
@@ -39,6 +39,11 @@
4
 #include <stdlib.h>
5
 
6
 
7
+#ifdef HAVE_PTHREAD 
8
+# include <pthread.h>
9
+#endif
10
+
11
+
12
 #include "debug.h"
13
 #include "request.h"
14
 #include "settings.h"
(-)audio/gnump3d/files/patch-plugins_theme.cc (-15 lines)
Lines 1-15 Link Here
1
--- plugins/theme.cc.orig	Fri Nov 29 04:33:21 2002
2
+++ plugins/theme.cc	Mon Dec  2 19:34:54 2002
3
@@ -39,6 +39,12 @@
4
 #include <stdio.h>
5
 #include <stdlib.h>
6
 
7
+
8
+#ifdef HAVE_PTHREAD 
9
+# include <pthread.h>
10
+#endif
11
+
12
+
13
 #include "debug.h"
14
 #include "dirs.h"
15
 #include "files.h"
(-)audio/gnump3d/files/patch-plugins_version.cc (-15 lines)
Lines 1-15 Link Here
1
--- plugins/version.cc.orig	Fri Nov 29 04:33:21 2002
2
+++ plugins/version.cc	Mon Dec  2 19:36:44 2002
3
@@ -38,6 +38,12 @@
4
 #include <stdio.h>
5
 #include <stdlib.h>
6
 
7
+
8
+#ifdef HAVE_PTHREAD 
9
+# include <pthread.h>
10
+#endif
11
+
12
+
13
 #include "debug.h"
14
 #include "iplugin.h"
15
 #include "plugin.h"
(-)audio/gnump3d/files/patch-scripts_Makefile.in (-20 lines)
Lines 1-20 Link Here
1
2
$FreeBSD: ports/audio/gnump3d/files/patch-scripts_Makefile.in,v 1.2 2002/08/20 19:26:03 naddy Exp $
3
4
--- scripts/Makefile.in.orig	Sun Aug 18 13:47:54 2002
5
+++ scripts/Makefile.in	Tue Aug 20 17:07:07 2002
6
@@ -195,11 +195,9 @@
7
 
8
 
9
 install:
10
-	mkdir -p $(DESTDIR)$(bindir)
11
-	cp gnump3d-config $(DESTDIR)$(bindir)
12
-	cp gnump3d-top $(DESTDIR)$(bindir)
13
-	chmod 755 $(DESTDIR)$(bindir)/gnump3d-config
14
-	chmod 755 $(DESTDIR)$(bindir)/gnump3d-top
15
+	$(mkinstalldirs) $(DESTDIR)$(bindir)
16
+#	$(INSTALL_SCRIPT) gnump3d-config $(DESTDIR)$(bindir)
17
+	$(INSTALL_SCRIPT) gnump3d-top $(DESTDIR)$(bindir)
18
 
19
 uninstall:
20
 	rm -f $(DESTDIR)$(bindir)/gnump3d-config
(-)audio/gnump3d/files/patch-scripts_gnump3d-top.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/audio/gnump3d/files/patch-scripts_gnump3d-top.in,v 1.2 2003/01/02 02:10:13 adamw Exp $
3
4
--- scripts/gnump3d-top.in.orig	Fri Nov 29 04:33:21 2002
5
+++ scripts/gnump3d-top.in	Mon Dec  2 19:13:54 2002
6
@@ -30,7 +30,7 @@
7
 
8
 #  The default logfile which we read if there is no
9
 # --config options supplied on the command line.
10
-my $DEFAULT_CONFIG = "/etc/gnump3d/gnump3d.conf";
11
+my $DEFAULT_CONFIG = "@prefix@/etc/gnump3d/gnump3d.conf";
12
 
13
 #
14
 #  Options set by the command line arguments.
(-)audio/gnump3d/files/patch-src_request.cc (-13 lines)
Lines 1-13 Link Here
1
--- src/request.cc.orig	Fri Nov 29 04:33:21 2002
2
+++ src/request.cc	Mon Dec  2 19:25:06 2002
3
@@ -54,6 +54,10 @@
4
 # include <unistd.h>
5
 #endif /* HAVE_UNISTD_H */
6
 
7
+#ifdef HAVE_PTHREAD
8
+# include <pthread.h>
9
+#endif
10
+
11
 
12
 #include "base64.h"
13
 #include "debug.h"
(-)audio/gnump3d/files/patch-templates_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/audio/gnump3d/files/patch-templates_Makefile.in,v 1.2 2002/08/20 19:26:03 naddy Exp $
3
4
--- templates/Makefile.in.orig	Sun Aug 18 13:47:52 2002
5
+++ templates/Makefile.in	Tue Aug 20 17:08:55 2002
6
@@ -192,7 +192,7 @@
7
 install:
8
 	mkdir -p $(DESTDIR)$(sysconfdir)/gnump3d
9
 	cp gnump3d.conf $(DESTDIR)$(sysconfdir)/gnump3d/gnump3d.conf-default
10
-	if ! test -e $(DESTDIR)$(sysconfdir)/gnump3d/gnump3d.conf; then mv $(DESTDIR)$(sysconfdir)/gnump3d/gnump3d.conf-default $(DESTDIR)$(sysconfdir)/gnump3d/gnump3d.conf; fi
11
+	if ! test -e $(DESTDIR)$(sysconfdir)/gnump3d/gnump3d.conf; then cp $(DESTDIR)$(sysconfdir)/gnump3d/gnump3d.conf-default $(DESTDIR)$(sysconfdir)/gnump3d/gnump3d.conf; fi
12
 	cp -R default $(DESTDIR)$(sysconfdir)/gnump3d
13
 	cp -R simple $(DESTDIR)$(sysconfdir)/gnump3d
14
 	cp -R split $(DESTDIR)$(sysconfdir)/gnump3d
(-)audio/gnump3d/files/patch-templates_gnump3d.conf (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/audio/gnump3d/files/patch-templates_gnump3d.conf,v 1.1 2002/08/14 21:42:10 naddy Exp $
3
4
--- templates/gnump3d.conf.orig	Wed Aug 14 02:11:42 2002
5
+++ templates/gnump3d.conf	Wed Aug 14 02:13:23 2002
6
@@ -143,7 +143,7 @@
7
 # you run the server as a user such as 'nobody', and allow people read-only
8
 # access to your audio files.
9
 #
10
-user = nobody
11
+user = www
12
 
13
 
14
 #
(-)audio/gnump3d/pkg-plist (-67 / +100 lines)
Lines 1-74 Link Here
1
@comment $FreeBSD: ports/audio/gnump3d/pkg-plist,v 1.11 2003/01/07 01:28:49 adamw Exp $
1
@comment $FreeBSD: ports/audio/gnump3d/pkg-plist,v 1.11 2003/01/07 01:28:49 adamw Exp $
2
bin/gnump3d
2
bin/gnump3d
3
bin/gnump3d-top
3
bin/gnump3d-top
4
etc/gnump3d/LaFrere/config.ini
4
bin/gnump3d2
5
etc/gnump3d/LaFrere/error.html
6
etc/gnump3d/LaFrere/index.html
7
etc/gnump3d/LaFrere/logo.png
8
etc/gnump3d/LaFrere/plugin.html
9
etc/gnump3d/LaFrere/results.html
10
etc/gnump3d/LaFrere/search.html
11
etc/gnump3d/LaFrere/stats.html
12
etc/gnump3d/default/error.html
13
etc/gnump3d/default/index.html
14
etc/gnump3d/default/plugin.html
15
etc/gnump3d/default/results.html
16
etc/gnump3d/default/search.html
17
etc/gnump3d/default/stats.html
18
etc/gnump3d/default/style.css
19
@unexec if cmp -s %D/etc/gnump3d/gnump3d.conf %D/etc/gnump3d/gnump3d.conf-default; then rm -f %D/etc/gnump3d/gnump3d.conf; fi
5
@unexec if cmp -s %D/etc/gnump3d/gnump3d.conf %D/etc/gnump3d/gnump3d.conf-default; then rm -f %D/etc/gnump3d/gnump3d.conf; fi
20
etc/gnump3d/gnump3d.conf-default
6
etc/gnump3d/gnump3d.conf-default
21
@exec [ -f %B/gnump3d.conf ] || cp %B/%f %B/gnump3d.conf
7
@exec [ -f %B/gnump3d.conf ] || cp %B/%f %B/gnump3d.conf
22
etc/gnump3d/nausicaa/error.html
8
etc/gnump3d/mime.types
23
etc/gnump3d/nausicaa/index.html
9
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/IP.pm
24
etc/gnump3d/nausicaa/plugin.html
10
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/base64.pm
25
etc/gnump3d/nausicaa/results.html
11
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/config.pm
26
etc/gnump3d/nausicaa/search.html
12
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/files.pm
27
etc/gnump3d/nausicaa/stats.html
13
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/mp3info.pm
28
etc/gnump3d/nausicaa/style.css
14
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/oggtagreader.pm
29
etc/gnump3d/redgrey/error.html
15
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/playlist.pm
30
etc/gnump3d/redgrey/index.html
16
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/COPYING.pm
31
etc/gnump3d/redgrey/plugin.html
17
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/bug.pm
32
etc/gnump3d/redgrey/results.html
18
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/last.pm
33
etc/gnump3d/redgrey/search.html
19
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/playlist.pm
34
etc/gnump3d/redgrey/stats.html
20
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/prefs.pm
35
etc/gnump3d/simple/config.ini
21
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/search.pm
36
etc/gnump3d/simple/error.html
22
lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins/stats.pm
37
etc/gnump3d/simple/index.html
23
share/gnump3d/LaFrere/AUTHOR
38
etc/gnump3d/simple/plugin.html
24
share/gnump3d/LaFrere/config.ini
39
etc/gnump3d/simple/results.html
25
share/gnump3d/LaFrere/error.html
40
etc/gnump3d/simple/search.html
26
share/gnump3d/LaFrere/index.html
41
etc/gnump3d/simple/stats.html
27
share/gnump3d/LaFrere/logo.png
42
etc/gnump3d/split/config.ini
28
share/gnump3d/LaFrere/plugin.html
43
etc/gnump3d/split/error.html
29
share/gnump3d/LaFrere/results.html
44
etc/gnump3d/split/index.html
30
share/gnump3d/LaFrere/search.html
45
etc/gnump3d/split/plugin.html
31
share/gnump3d/LaFrere/stats.html
46
etc/gnump3d/split/results.html
32
share/gnump3d/Thexder/AUTHOR
47
etc/gnump3d/split/search.html
33
share/gnump3d/Thexder/config.ini
48
etc/gnump3d/split/stats.html
34
share/gnump3d/Thexder/dig_temp2_01.jpg
49
lib/gnump3d/bug.la
35
share/gnump3d/Thexder/dig_temp2_02.jpg
50
lib/gnump3d/bug.so
36
share/gnump3d/Thexder/dig_temp2_03.gif
51
lib/gnump3d/last20.la
37
share/gnump3d/Thexder/dig_temp2_04.jpg
52
lib/gnump3d/last20.so
38
share/gnump3d/Thexder/dig_temp2_06.jpg
53
lib/gnump3d/now.la
39
share/gnump3d/Thexder/dig_temp2_08.jpg
54
lib/gnump3d/now.so
40
share/gnump3d/Thexder/dig_temp2_10.jpg
55
lib/gnump3d/playlist.la
41
share/gnump3d/Thexder/dig_temp2_12.jpg
56
lib/gnump3d/playlist.so
42
share/gnump3d/Thexder/dig_temp2_14.jpg
57
lib/gnump3d/search.la
43
share/gnump3d/Thexder/error.html
58
lib/gnump3d/search.so
44
share/gnump3d/Thexder/hr.gif
59
lib/gnump3d/stats.la
45
share/gnump3d/Thexder/index.html
60
lib/gnump3d/stats.so
46
share/gnump3d/Thexder/link_1.jpg
61
lib/gnump3d/theme.la
47
share/gnump3d/Thexder/link_2.jpg
62
lib/gnump3d/theme.so
48
share/gnump3d/Thexder/link_3.jpg
63
lib/gnump3d/version.la
49
share/gnump3d/Thexder/link_4.jpg
64
lib/gnump3d/version.so
50
share/gnump3d/Thexder/link_5.jpg
65
@dirrm lib/gnump3d
51
share/gnump3d/Thexder/logo7.jpg
66
@exec mkdir -p /var/log/gnump3d
52
share/gnump3d/Thexder/plugin.html
53
share/gnump3d/Thexder/results.html
54
share/gnump3d/Thexder/search.html
55
share/gnump3d/Thexder/spacer.gif
56
share/gnump3d/Thexder/stats.html
57
share/gnump3d/default/AUTHOR
58
share/gnump3d/default/error.html
59
share/gnump3d/default/index.html
60
share/gnump3d/default/plugin.html
61
share/gnump3d/default/results.html
62
share/gnump3d/default/search.html
63
share/gnump3d/default/stats.html
64
share/gnump3d/default/style.css
65
share/gnump3d/nausicaa/AUTHOR
66
share/gnump3d/nausicaa/error.html
67
share/gnump3d/nausicaa/index.html
68
share/gnump3d/nausicaa/plugin.html
69
share/gnump3d/nausicaa/results.html
70
share/gnump3d/nausicaa/search.html
71
share/gnump3d/nausicaa/stats.html
72
share/gnump3d/nausicaa/style.css
73
share/gnump3d/redgrey/AUTHOR
74
share/gnump3d/redgrey/error.html
75
share/gnump3d/redgrey/index.html
76
share/gnump3d/redgrey/plugin.html
77
share/gnump3d/redgrey/results.html
78
share/gnump3d/redgrey/search.html
79
share/gnump3d/redgrey/stats.html
80
share/gnump3d/simple/AUTHOR
81
share/gnump3d/simple/config.ini
82
share/gnump3d/simple/error.html
83
share/gnump3d/simple/index.html
84
share/gnump3d/simple/plugin.html
85
share/gnump3d/simple/results.html
86
share/gnump3d/simple/search.html
87
share/gnump3d/simple/stats.html
88
share/gnump3d/split/AUTHOR
89
share/gnump3d/split/config.ini
90
share/gnump3d/split/error.html
91
share/gnump3d/split/index.html
92
share/gnump3d/split/plugin.html
93
share/gnump3d/split/results.html
94
share/gnump3d/split/search.html
95
share/gnump3d/split/stats.html
96
@dirrm share/gnump3d/split
97
@dirrm share/gnump3d/simple
98
@dirrm share/gnump3d/redgrey
99
@dirrm share/gnump3d/nausicaa
100
@dirrm share/gnump3d/default
101
@dirrm share/gnump3d/Thexder
102
@dirrm share/gnump3d/LaFrere
103
@dirrm lib/perl5/site_perl/%%PERL_VER%%/gnump3d/plugins
104
@dirrm lib/perl5/site_perl/%%PERL_VER%%/gnump3d
105
@unexec rmdir %D/etc/gnump3d 2>/dev/null || true
67
@unexec rmdir /var/log/gnump3d 2>/dev/null || true
106
@unexec rmdir /var/log/gnump3d 2>/dev/null || true
68
@dirrm etc/gnump3d/split
107
@exec mkdir -p /var/log/gnump3d
69
@dirrm etc/gnump3d/simple
70
@dirrm etc/gnump3d/redgrey
71
@dirrm etc/gnump3d/nausicaa
72
@dirrm etc/gnump3d/default
73
@dirrm etc/gnump3d/LaFrere
74
@dirrm etc/gnump3d

Return to bug 48146