mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
- Update to version 0.10.2
PR: 55900 Submitted by: Ports Fury
This commit is contained in:
parent
9abf0f65bb
commit
4a4d7d0111
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=87571
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= gnome-mud
|
||||
PORTVERSION= 0.9.1
|
||||
PORTVERSION= 0.10.2
|
||||
CATEGORIES= net gnome
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= amcl
|
||||
@ -14,21 +14,20 @@ MASTER_SITE_SUBDIR= amcl
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= GTK-based MUD client with triggers, aliases, colors, etc
|
||||
|
||||
LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext
|
||||
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-1.2/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk
|
||||
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-1.2/_gtkmodule.so:${PORTSDIR}/x11-toolkits/py-gtk
|
||||
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtk.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/_gtk.so:${PORTSDIR}/x11-toolkits/py-gtk2
|
||||
|
||||
USE_PYTHON= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gnomelibs
|
||||
USE_PYTHON= yes
|
||||
USE_GNOME= gnomehack gnomeprefix gnometarget libgnomeui vte
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= gnome-mud.1
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|CFLAGS -O -pipe -Wall|CFLAGS|g' ${WRKSRC}/configure
|
||||
@cd ${WRKSRC}/doc && ${LN} -sf gnome-mud.6 gnome-mud.1
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1 +1 @@
|
||||
MD5 (gnome-mud-0.9.1.tar.gz) = 1927ac94ff5610659bee286537fefcc1
|
||||
MD5 (gnome-mud-0.10.2.tar.gz) = cd30dd4edb79ea03b59bb62b86b16ae0
|
||||
|
108
net/gnome-mud/files/patch-doc::Makefile.in
Normal file
108
net/gnome-mud/files/patch-doc::Makefile.in
Normal file
@ -0,0 +1,108 @@
|
||||
--- doc/Makefile.in.dist Wed Jul 9 22:09:21 2003
|
||||
+++ doc/Makefile.in Sun Aug 24 01:27:29 2003
|
||||
@@ -132,7 +132,7 @@
|
||||
|
||||
SUBDIRS = gnome-mud-manual gnome-mud-plugin-api omf-install
|
||||
|
||||
-man_MANS = gnome-mud.6
|
||||
+man_MANS = gnome-mud.1
|
||||
|
||||
EXTRA_DIST = xmldocs.make $(man_MANS)
|
||||
subdir = doc
|
||||
@@ -162,15 +162,15 @@
|
||||
CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status
|
||||
uninstall-info-am:
|
||||
|
||||
-man6dir = $(mandir)/man6
|
||||
-install-man6: $(man6_MANS) $(man_MANS)
|
||||
+man1dir = $(mandir)/man1
|
||||
+install-man1: $(man1_MANS) $(man_MANS)
|
||||
@$(NORMAL_INSTALL)
|
||||
- $(mkinstalldirs) $(DESTDIR)$(man6dir)
|
||||
- @list='$(man6_MANS) $(dist_man6_MANS) $(nodist_man6_MANS)'; \
|
||||
+ $(mkinstalldirs) $(DESTDIR)$(man1dir)
|
||||
+ @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
|
||||
l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
|
||||
for i in $$l2; do \
|
||||
case "$$i" in \
|
||||
- *.6*) list="$$list $$i" ;; \
|
||||
+ *.1*) list="$$list $$i" ;; \
|
||||
esac; \
|
||||
done; \
|
||||
for i in $$list; do \
|
||||
@@ -180,16 +180,16 @@
|
||||
inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
|
||||
inst=`echo $$inst | sed -e 's/^.*\///'`; \
|
||||
inst=`echo $$inst | sed '$(transform)'`.$$ext; \
|
||||
- echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man6dir)/$$inst"; \
|
||||
- $(INSTALL_DATA) $$file $(DESTDIR)$(man6dir)/$$inst; \
|
||||
+ echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \
|
||||
+ $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \
|
||||
done
|
||||
-uninstall-man6:
|
||||
+uninstall-man1:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
- @list='$(man6_MANS) $(dist_man6_MANS) $(nodist_man6_MANS)'; \
|
||||
+ @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
|
||||
l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
|
||||
for i in $$l2; do \
|
||||
case "$$i" in \
|
||||
- *.6*) list="$$list $$i" ;; \
|
||||
+ *.1*) list="$$list $$i" ;; \
|
||||
esac; \
|
||||
done; \
|
||||
for i in $$list; do \
|
||||
@@ -197,8 +197,8 @@
|
||||
inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
|
||||
inst=`echo $$inst | sed -e 's/^.*\///'`; \
|
||||
inst=`echo $$inst | sed '$(transform)'`.$$ext; \
|
||||
- echo " rm -f $(DESTDIR)$(man6dir)/$$inst"; \
|
||||
- rm -f $(DESTDIR)$(man6dir)/$$inst; \
|
||||
+ echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \
|
||||
+ rm -f $(DESTDIR)$(man1dir)/$$inst; \
|
||||
done
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
@@ -332,7 +332,7 @@
|
||||
all-am: Makefile $(MANS)
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
- $(mkinstalldirs) $(DESTDIR)$(man6dir)
|
||||
+ $(mkinstalldirs) $(DESTDIR)$(man1dir)
|
||||
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
@@ -379,7 +379,7 @@
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
-install-man: install-man6
|
||||
+install-man: install-man1
|
||||
|
||||
installcheck-am:
|
||||
|
||||
@@ -395,7 +395,7 @@
|
||||
|
||||
uninstall-info: uninstall-info-recursive
|
||||
|
||||
-uninstall-man: uninstall-man6
|
||||
+uninstall-man: uninstall-man1
|
||||
|
||||
.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
|
||||
clean-generic clean-recursive distclean distclean-generic \
|
||||
@@ -404,13 +404,13 @@
|
||||
install-data install-data-am install-data-recursive \
|
||||
install-exec install-exec-am install-exec-recursive \
|
||||
install-info install-info-am install-info-recursive install-man \
|
||||
- install-man6 install-recursive install-strip installcheck \
|
||||
+ install-man1 install-recursive install-strip installcheck \
|
||||
installcheck-am installdirs installdirs-am \
|
||||
installdirs-recursive maintainer-clean maintainer-clean-generic \
|
||||
maintainer-clean-recursive mostlyclean mostlyclean-generic \
|
||||
mostlyclean-recursive tags tags-recursive uninstall \
|
||||
uninstall-am uninstall-info-am uninstall-info-recursive \
|
||||
- uninstall-man uninstall-man6 uninstall-recursive
|
||||
+ uninstall-man uninstall-man1 uninstall-recursive
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
16
net/gnome-mud/files/patch-doc::gnome-mud.6
Normal file
16
net/gnome-mud/files/patch-doc::gnome-mud.6
Normal file
@ -0,0 +1,16 @@
|
||||
--- doc/gnome-mud.6.orig Wed Jul 3 22:33:07 2002
|
||||
+++ doc/gnome-mud.6 Sun Aug 24 01:32:57 2003
|
||||
@@ -1,11 +1,11 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
-.\" gnome-mud.6 is copyright 2000-2002 by
|
||||
+.\" gnome-mud.1 is copyright 2000-2002 by
|
||||
.\" Jordi Mallach <jordi@sindominio.net>
|
||||
.\"
|
||||
.\" This is free documentation, see the latest version of the GNU General
|
||||
.\" Public License for copying conditions. There is NO warranty.
|
||||
.\"
|
||||
-.TH GNOME-MUD 6 "January 5, 2002"
|
||||
+.TH GNOME-MUD 1 "January 5, 2002"
|
||||
.SH NAME
|
||||
gnome-mud \- a mud client for the GNOME Desktop Environment.
|
||||
.SH SYNOPSIS
|
127
net/gnome-mud/files/patch-src::Makefile.in
Normal file
127
net/gnome-mud/files/patch-src::Makefile.in
Normal file
@ -0,0 +1,127 @@
|
||||
--- src/Makefile.in.orig Sun Aug 24 01:34:22 2003
|
||||
+++ src/Makefile.in Sun Aug 24 01:35:10 2003
|
||||
@@ -130,8 +130,6 @@
|
||||
install_sh = @install_sh@
|
||||
pythonpath = @pythonpath@
|
||||
|
||||
-GMUD_DEBUG = -Wall -O0 -g
|
||||
-
|
||||
localedir = $(prefix)/share/locale
|
||||
INCLUDES = -DLOCALEDIR=\"$(localedir)\" \
|
||||
-DPIXMAPSDIR=\""$(datadir)/pixmaps"\" \
|
||||
@@ -144,8 +142,7 @@
|
||||
LDADD = $(GMUD_LIBS) $(Z_LIBS)
|
||||
AM_CPPFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\"
|
||||
|
||||
-gamesdir = $(prefix)/games
|
||||
-games_PROGRAMS = gnome-mud
|
||||
+bin_PROGRAMS = gnome-mud
|
||||
|
||||
gnome_mud_SOURCES = data.c init.c gnome-mud.c gnome-mud.h keybind.c log.c \
|
||||
map.c map.h map-link.c mccpDecompress.c mccpDecompress.h \
|
||||
@@ -156,8 +153,8 @@
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
-games_PROGRAMS = gnome-mud$(EXEEXT)
|
||||
-PROGRAMS = $(games_PROGRAMS)
|
||||
+bin_PROGRAMS = gnome-mud$(EXEEXT)
|
||||
+PROGRAMS = $(bin_PROGRAMS)
|
||||
|
||||
am_gnome_mud_OBJECTS = data.$(OBJEXT) init.$(OBJEXT) gnome-mud.$(OBJEXT) \
|
||||
keybind.$(OBJEXT) log.$(OBJEXT) map.$(OBJEXT) \
|
||||
@@ -205,29 +202,29 @@
|
||||
cd $(top_builddir) && \
|
||||
CONFIG_HEADERS= CONFIG_LINKS= \
|
||||
CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status
|
||||
-install-gamesPROGRAMS: $(games_PROGRAMS)
|
||||
+install-binPROGRAMS: $(bin_PROGRAMS)
|
||||
@$(NORMAL_INSTALL)
|
||||
- $(mkinstalldirs) $(DESTDIR)$(gamesdir)
|
||||
- @list='$(games_PROGRAMS)'; for p in $$list; do \
|
||||
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
|
||||
+ @list='$(bin_PROGRAMS)'; for p in $$list; do \
|
||||
p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
||||
if test -f $$p \
|
||||
; then \
|
||||
f=`echo $$p1|sed '$(transform);s/$$/$(EXEEXT)/'`; \
|
||||
- echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(gamesdir)/$$f"; \
|
||||
- $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(gamesdir)/$$f; \
|
||||
+ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$f"; \
|
||||
+ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$f; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
||||
-uninstall-gamesPROGRAMS:
|
||||
+uninstall-binPROGRAMS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
- @list='$(games_PROGRAMS)'; for p in $$list; do \
|
||||
+ @list='$(bin_PROGRAMS)'; for p in $$list; do \
|
||||
f=`echo $$p|sed 's/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
|
||||
- echo " rm -f $(DESTDIR)$(gamesdir)/$$f"; \
|
||||
- rm -f $(DESTDIR)$(gamesdir)/$$f; \
|
||||
+ echo " rm -f $(DESTDIR)$(bindir)/$$f"; \
|
||||
+ rm -f $(DESTDIR)$(bindir)/$$f; \
|
||||
done
|
||||
|
||||
-clean-gamesPROGRAMS:
|
||||
- -test -z "$(games_PROGRAMS)" || rm -f $(games_PROGRAMS)
|
||||
+clean-binPROGRAMS:
|
||||
+ -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
|
||||
gnome-mud$(EXEEXT): $(gnome_mud_OBJECTS) $(gnome_mud_DEPENDENCIES)
|
||||
@rm -f gnome-mud$(EXEEXT)
|
||||
$(LINK) $(gnome_mud_LDFLAGS) $(gnome_mud_OBJECTS) $(gnome_mud_LDADD) $(LIBS)
|
||||
@@ -331,7 +328,7 @@
|
||||
all-am: Makefile $(PROGRAMS)
|
||||
|
||||
installdirs:
|
||||
- $(mkinstalldirs) $(DESTDIR)$(gamesdir)
|
||||
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
|
||||
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
@@ -358,7 +355,7 @@
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
-clean-am: clean-gamesPROGRAMS clean-generic mostlyclean-am
|
||||
+clean-am: clean-binPROGRAMS clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
|
||||
@@ -373,9 +370,9 @@
|
||||
|
||||
info-am:
|
||||
|
||||
-install-data-am: install-gamesPROGRAMS
|
||||
+install-data-am:
|
||||
|
||||
-install-exec-am:
|
||||
+install-exec-am: install-binPROGRAMS
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
@@ -391,18 +388,18 @@
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||
|
||||
-uninstall-am: uninstall-gamesPROGRAMS uninstall-info-am
|
||||
+uninstall-am: uninstall-binPROGRAMS uninstall-info-am
|
||||
|
||||
-.PHONY: GTAGS all all-am check check-am clean clean-gamesPROGRAMS \
|
||||
+.PHONY: GTAGS all all-am check check-am clean clean-binPROGRAMS \
|
||||
clean-generic distclean distclean-compile distclean-depend \
|
||||
distclean-generic distclean-tags distdir dvi dvi-am info \
|
||||
- info-am install install-am install-data install-data-am \
|
||||
- install-exec install-exec-am install-gamesPROGRAMS install-info \
|
||||
+ info-am install install-am install-binPROGRAMS install-data \
|
||||
+ install-data-am install-exec install-exec-am install-info \
|
||||
install-info-am install-man install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic tags uninstall uninstall-am \
|
||||
- uninstall-gamesPROGRAMS uninstall-info-am
|
||||
+ uninstall-binPROGRAMS uninstall-info-am
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
@ -1,6 +1,6 @@
|
||||
GNOME-MUD is a mudclient for GNOME. It offers many features, such as full support
|
||||
for ANSI colors, aliases, command history, triggers, automapping, multiple
|
||||
connections, and so forth.
|
||||
GNOME-MUD is a mudclient for GNOME. It offers many features, such
|
||||
as full support for ANSI colors, aliases, command history, triggers,
|
||||
automapping, multiple connections, and so forth.
|
||||
|
||||
WWW: http://amcl.sourceforge.net/
|
||||
Author: Robin Ericsson <lobbin@localhost.nu>
|
||||
|
@ -1,35 +1,52 @@
|
||||
bin/gnome-mud
|
||||
share/gnome/apps/Games/gnome-mud.desktop
|
||||
share/gnome/help/gnome-mud-manual/C/index.html
|
||||
share/gnome/help/gnome-mud-manual/C/figures/connections-window.png
|
||||
share/gnome/help/gnome-mud-manual/C/figures/main-window.png
|
||||
share/gnome/help/gnome-mud-manual/C/figures/mudlist-window.png
|
||||
share/gnome/help/gnome-mud-manual/C/figures/preferences-window.png
|
||||
share/gnome/help/gnome-mud-manual/C/figures/profiles-window.png
|
||||
share/gnome/help/gnome-mud-manual/C/gnome-mud-manual.sgml
|
||||
share/gnome/help/gnome-mud-manual/C/x35.html
|
||||
share/gnome/help/gnome-mud-manual/C/x365.html
|
||||
share/gnome/help/gnome-mud-manual/C/x435.html
|
||||
share/gnome/help/gnome-mud-manual/C/x440.html
|
||||
share/gnome/help/gnome-mud-manual/C/x453.html
|
||||
share/gnome/help/gnome-mud-manual/C/topic.dat
|
||||
share/gnome/help/gnome-mud-plugin-api/C/index.html
|
||||
share/gnome/help/gnome-mud-plugin-api/C/gnome-mud-plugin-api.sgml
|
||||
share/gnome/help/gnome-mud-plugin-api/C/a217.html
|
||||
share/gnome/help/gnome-mud-plugin-api/C/a224.html
|
||||
share/gnome/help/gnome-mud-plugin-api/C/x213.html
|
||||
share/gnome/help/gnome-mud-plugin-api/C/x33.html
|
||||
share/gnome/help/gnome-mud-plugin-api/C/topic.dat
|
||||
etc/gconf/gconf.xml.defaults/apps/gnome-mud/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/apps/gnome-mud/connections/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/apps/gnome-mud/functionality/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/apps/gnome-mud/mapper/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/apps/gnome-mud/profiles/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/apps/gnome-mud/profiles/Default/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/apps/gnome-mud/ui/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/connections/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/functionality/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/mapper/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/profiles/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/profiles/Default/%gconf.xml
|
||||
etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/ui/%gconf.xml
|
||||
etc/gconf/schemas/gnome-mud.schemas
|
||||
share/gnome/applications/gnome-mud.desktop
|
||||
share/gnome/help/gnome-mud/C/figures/connections-window.png
|
||||
share/gnome/help/gnome-mud/C/figures/main-window.png
|
||||
share/gnome/help/gnome-mud/C/figures/mudlist-window.png
|
||||
share/gnome/help/gnome-mud/C/figures/preferences-window.png
|
||||
share/gnome/help/gnome-mud/C/figures/profiles-window.png
|
||||
share/gnome/help/gnome-mud/C/gnome-mud-manual.xml
|
||||
share/gnome/help/gnome-mud/C/gnome-mud-plugin-api.xml
|
||||
share/gnome/help/gnome-mud/C/monitor.py
|
||||
share/gnome/omf/gnome-mud/gnome-mud-manual-C.omf
|
||||
share/gnome/omf/gnome-mud/gnome-mud-plugin-api-C.omf
|
||||
share/locale/ca/LC_MESSAGES/gnome-mud.mo
|
||||
share/locale/de/LC_MESSAGES/gnome-mud.mo
|
||||
share/locale/es/LC_MESSAGES/gnome-mud.mo
|
||||
share/locale/fr/LC_MESSAGES/gnome-mud.mo
|
||||
share/locale/mk/LC_MESSAGES/gnome-mud.mo
|
||||
share/locale/sv/LC_MESSAGES/gnome-mud.mo
|
||||
@dirrm share/gnome/help/gnome-mud-manual/C/figures
|
||||
@dirrm share/gnome/help/gnome-mud-manual/C/stylesheet-images
|
||||
@dirrm share/gnome/help/gnome-mud-manual/C
|
||||
@dirrm share/gnome/help/gnome-mud-manual
|
||||
@dirrm share/gnome/help/gnome-mud-plugin-api/C/stylesheet-images
|
||||
@dirrm share/gnome/help/gnome-mud-plugin-api/C/figures
|
||||
@dirrm share/gnome/help/gnome-mud-plugin-api/C
|
||||
@dirrm share/gnome/help/gnome-mud-plugin-api
|
||||
share/locale/tr/LC_MESSAGES/gnome-mud.mo
|
||||
@dirrm share/gnome/omf/gnome-mud
|
||||
@dirrm share/gnome/help/gnome-mud/C/figures
|
||||
@dirrm share/gnome/help/gnome-mud/C
|
||||
@dirrm share/gnome/help/gnome-mud
|
||||
@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/ui
|
||||
@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/profiles/Default
|
||||
@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/profiles
|
||||
@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/mapper
|
||||
@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/functionality
|
||||
@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud/connections
|
||||
@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-mud
|
||||
@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-mud/ui
|
||||
@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-mud/profiles/Default
|
||||
@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-mud/profiles
|
||||
@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-mud/mapper
|
||||
@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-mud/functionality
|
||||
@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-mud/connections
|
||||
@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-mud
|
||||
|
Loading…
Reference in New Issue
Block a user