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

(-)net/gnome-mud/Makefile (-10 / +8 lines)
Lines 6-35 Link Here
6
#
6
#
7
7
8
PORTNAME=	gnome-mud
8
PORTNAME=	gnome-mud
9
PORTVERSION=	0.10.7
9
PORTVERSION=	0.11.2
10
PORTREVISION=	11
11
CATEGORIES=	net gnome
10
CATEGORIES=	net gnome
12
MASTER_SITES=	GNOME
11
MASTER_SITES=	GNOME
13
12
14
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	ports@FreeBSD.org
15
COMMENT=	GTK-based MUD client with triggers, aliases, colors, etc
14
COMMENT=	GTK-based MUD client with triggers, aliases, colors, etc
16
15
16
LIB_DEPENDS=	pcre.0:${PORTSDIR}/devel/pcre \
17
		gnet-2.0.0:${PORTSDIR}/net/gnet2
18
19
USE_BZIP2=	yes
20
USE_GNOME=	gnomehack gnomeprefix intlhack libglade2 vte
21
USE_GSTREAMER=	yes
17
USE_GETTEXT=	yes
22
USE_GETTEXT=	yes
18
USE_GNOME=	gnomehack gnometarget gnomeprefix intlhack libgnomeui \
19
		pygtk2 vte
20
USE_PYTHON=	yes
21
USE_GMAKE=	yes
23
USE_GMAKE=	yes
22
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
23
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
25
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
24
		LDFLAGS="-L${LOCALBASE}/lib"
26
		LDFLAGS="-L${LOCALBASE}/lib"
25
CONFIGURE_ARGS=	--enable-mccp
27
INSTALLS_ICONS=	yes
26
INSTALLS_OMF=	yes
28
INSTALLS_OMF=	yes
27
29
28
MAN6=		gnome-mud.6
30
MAN6=		gnome-mud.6
29
GCONF_SCHEMAS=	gnome-mud.schemas
31
GCONF_SCHEMAS=	gnome-mud.schemas
30
32
31
post-patch:
32
	@${REINPLACE_CMD} -e \
33
		's|prefix)/games|prefix)/bin|g' ${WRKSRC}/src/Makefile.in
34
35
.include <bsd.port.mk>
33
.include <bsd.port.mk>
(-)net/gnome-mud/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (gnome-mud-0.10.7.tar.gz) = 77d2501a94a2c713e907a8ac4bb84227
1
MD5 (gnome-mud-0.11.2.tar.bz2) = 525bd5d935f937c7771e57a83d0cddc0
2
SHA256 (gnome-mud-0.10.7.tar.gz) = 319f52e7aeda9cc88a940cc67d4a3322393291e6742f35dba360c876d8124611
2
SHA256 (gnome-mud-0.11.2.tar.bz2) = d449e1433ab7d8b40bd4133ae6ef25b723f2d2894709094d196a10b930f52b06
3
SIZE (gnome-mud-0.10.7.tar.gz) = 684775
3
SIZE (gnome-mud-0.11.2.tar.bz2) = 444294
(-)net/gnome-mud/files/patch-configure (-82 lines)
Lines 1-82 Link Here
1
--- configure.orig	Thu Feb 12 19:54:58 2004
2
+++ configure	Thu Feb 19 19:23:13 2004
3
@@ -8645,79 +8645,6 @@
4
 fi
5
 
6
 
7
-echo "$as_me:$LINENO: checking for pthread_create in -lc_r" >&5
8
-echo $ECHO_N "checking for pthread_create in -lc_r... $ECHO_C" >&6
9
-if test "${ac_cv_lib_c_r_pthread_create+set}" = set; then
10
-  echo $ECHO_N "(cached) $ECHO_C" >&6
11
-else
12
-  ac_check_lib_save_LIBS=$LIBS
13
-LIBS="-lc_r  $LIBS"
14
-cat >conftest.$ac_ext <<_ACEOF
15
-/* confdefs.h.  */
16
-_ACEOF
17
-cat confdefs.h >>conftest.$ac_ext
18
-cat >>conftest.$ac_ext <<_ACEOF
19
-/* end confdefs.h.  */
20
-
21
-/* Override any gcc2 internal prototype to avoid an error.  */
22
-#ifdef __cplusplus
23
-extern "C"
24
-#endif
25
-/* We use char because int might match the return type of a gcc2
26
-   builtin and then its argument prototype would still apply.  */
27
-char pthread_create ();
28
-int
29
-main ()
30
-{
31
-pthread_create ();
32
-  ;
33
-  return 0;
34
-}
35
-_ACEOF
36
-rm -f conftest.$ac_objext conftest$ac_exeext
37
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
38
-  (eval $ac_link) 2>conftest.er1
39
-  ac_status=$?
40
-  grep -v '^ *+' conftest.er1 >conftest.err
41
-  rm -f conftest.er1
42
-  cat conftest.err >&5
43
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
44
-  (exit $ac_status); } &&
45
-	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
46
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
47
-  (eval $ac_try) 2>&5
48
-  ac_status=$?
49
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
50
-  (exit $ac_status); }; } &&
51
-	 { ac_try='test -s conftest$ac_exeext'
52
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
53
-  (eval $ac_try) 2>&5
54
-  ac_status=$?
55
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
56
-  (exit $ac_status); }; }; then
57
-  ac_cv_lib_c_r_pthread_create=yes
58
-else
59
-  echo "$as_me: failed program was:" >&5
60
-sed 's/^/| /' conftest.$ac_ext >&5
61
-
62
-ac_cv_lib_c_r_pthread_create=no
63
-fi
64
-rm -f conftest.err conftest.$ac_objext \
65
-      conftest$ac_exeext conftest.$ac_ext
66
-LIBS=$ac_check_lib_save_LIBS
67
-fi
68
-echo "$as_me:$LINENO: result: $ac_cv_lib_c_r_pthread_create" >&5
69
-echo "${ECHO_T}$ac_cv_lib_c_r_pthread_create" >&6
70
-if test $ac_cv_lib_c_r_pthread_create = yes; then
71
-  cat >>confdefs.h <<_ACEOF
72
-#define HAVE_LIBC_R 1
73
-_ACEOF
74
-
75
-  LIBS="-lc_r $LIBS"
76
-
77
-fi
78
-
79
-
80
 echo "$as_me:$LINENO: checking for openpty in -lutil" >&5
81
 echo $ECHO_N "checking for openpty in -lutil... $ECHO_C" >&6
82
 if test "${ac_cv_lib_util_openpty+set}" = set; then
(-)net/gnome-mud/pkg-descr (-1 / +1 lines)
Lines 2-5 Link Here
2
as full support for ANSI colors, aliases, command history, triggers,
2
as full support for ANSI colors, aliases, command history, triggers,
3
automapping, multiple connections, and so forth.
3
automapping, multiple connections, and so forth.
4
4
5
WWW: http://amcl.sourceforge.net/
5
WWW: http://live.gnome.org/GnomeMud
(-)net/gnome-mud/pkg-plist (-24 / +18 lines)
Lines 1-24 Link Here
1
bin/gnome-mud
1
bin/gnome-mud
2
share/applications/gnome-mud.desktop
2
share/applications/gnome-mud.desktop
3
share/gnome-mud/directions.glade
3
%%DATADIR%%/directions.glade
4
share/gnome/help/gnome-mud/C/figures/connections-window.png
4
%%DATADIR%%/main.glade
5
share/gnome/help/gnome-mud/C/figures/main-window.png
5
%%DATADIR%%/muds.glade
6
share/gnome/help/gnome-mud/C/figures/mudlist-window.png
6
%%DATADIR%%/prefs.glade
7
share/gnome/help/gnome-mud/C/figures/preferences-window.png
7
share/icons/hicolor/16x16/apps/gnome-mud.png
8
share/gnome/help/gnome-mud/C/figures/profiles-window.png
8
share/icons/hicolor/22x22/apps/gnome-mud.png
9
share/gnome/help/gnome-mud/C/gnome-mud-manual.xml
9
share/icons/hicolor/24x24/apps/gnome-mud.png
10
share/gnome/help/gnome-mud/C/gnome-mud-plugin-api.xml
10
share/icons/hicolor/32x32/apps/gnome-mud.png
11
share/gnome/help/gnome-mud/C/monitor.py
11
share/icons/hicolor/scalable/apps/gnome-mud.svg
12
share/omf/gnome-mud/gnome-mud-manual-C.omf
12
share/locale/ar/LC_MESSAGES/gnome-mud.mo
13
share/omf/gnome-mud/gnome-mud-plugin-api-C.omf
14
share/pixmaps/gnome-mud/connection-offline.png
15
share/pixmaps/gnome-mud/connection-online.png
16
share/pixmaps/gnome-mud/gnome-mud-tray-icon.png
17
share/pixmaps/gnome-mud.png
18
share/locale/az/LC_MESSAGES/gnome-mud.mo
13
share/locale/az/LC_MESSAGES/gnome-mud.mo
19
share/locale/ca/LC_MESSAGES/gnome-mud.mo
14
share/locale/ca/LC_MESSAGES/gnome-mud.mo
20
share/locale/cs/LC_MESSAGES/gnome-mud.mo
15
share/locale/cs/LC_MESSAGES/gnome-mud.mo
21
share/locale/de/LC_MESSAGES/gnome-mud.mo
16
share/locale/de/LC_MESSAGES/gnome-mud.mo
17
share/locale/dz/LC_MESSAGES/gnome-mud.mo
18
share/locale/el/LC_MESSAGES/gnome-mud.mo
22
share/locale/en_CA/LC_MESSAGES/gnome-mud.mo
19
share/locale/en_CA/LC_MESSAGES/gnome-mud.mo
23
share/locale/en_GB/LC_MESSAGES/gnome-mud.mo
20
share/locale/en_GB/LC_MESSAGES/gnome-mud.mo
24
share/locale/es/LC_MESSAGES/gnome-mud.mo
21
share/locale/es/LC_MESSAGES/gnome-mud.mo
Lines 26-32 Link Here
26
share/locale/hr/LC_MESSAGES/gnome-mud.mo
23
share/locale/hr/LC_MESSAGES/gnome-mud.mo
27
share/locale/mk/LC_MESSAGES/gnome-mud.mo
24
share/locale/mk/LC_MESSAGES/gnome-mud.mo
28
share/locale/ml/LC_MESSAGES/gnome-mud.mo
25
share/locale/ml/LC_MESSAGES/gnome-mud.mo
26
share/locale/nb/LC_MESSAGES/gnome-mud.mo
27
share/locale/ne/LC_MESSAGES/gnome-mud.mo
29
share/locale/nl/LC_MESSAGES/gnome-mud.mo
28
share/locale/nl/LC_MESSAGES/gnome-mud.mo
29
share/locale/oc/LC_MESSAGES/gnome-mud.mo
30
share/locale/pa/LC_MESSAGES/gnome-mud.mo
30
share/locale/pa/LC_MESSAGES/gnome-mud.mo
31
share/locale/pl/LC_MESSAGES/gnome-mud.mo
31
share/locale/pl/LC_MESSAGES/gnome-mud.mo
32
share/locale/pt/LC_MESSAGES/gnome-mud.mo
32
share/locale/pt/LC_MESSAGES/gnome-mud.mo
Lines 36-48 Link Here
36
share/locale/sr@Latn/LC_MESSAGES/gnome-mud.mo
36
share/locale/sr@Latn/LC_MESSAGES/gnome-mud.mo
37
share/locale/sv/LC_MESSAGES/gnome-mud.mo
37
share/locale/sv/LC_MESSAGES/gnome-mud.mo
38
share/locale/tr/LC_MESSAGES/gnome-mud.mo
38
share/locale/tr/LC_MESSAGES/gnome-mud.mo
39
share/locale/uk/LC_MESSAGES/gnome-mud.mo
40
share/locale/vi/LC_MESSAGES/gnome-mud.mo
39
share/locale/zh_CN/LC_MESSAGES/gnome-mud.mo
41
share/locale/zh_CN/LC_MESSAGES/gnome-mud.mo
40
@dirrm share/pixmaps/gnome-mud
42
@dirrm %%DATADIR%%
41
@dirrm share/omf/gnome-mud
42
@dirrm share/gnome/help/gnome-mud/C/figures
43
@dirrm share/gnome/help/gnome-mud/C
44
@dirrm share/gnome/help/gnome-mud
45
@dirrm share/gnome-mud
46
@dirrmtry share/locale/rw/LC_MESSAGES
47
@dirrmtry share/locale/rw
48
@dirrmtry share/applications

Return to bug 148567