summaryrefslogtreecommitdiff
path: root/net/gnoemoe/files/patch-src-world.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 06:39:12 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 06:39:12 +0000
commit035646ee650e1641b2dac43a8404e423cd35d273 (patch)
tree7e110eaf4b3ad1ac554c03eb2bb08c7be10ed4bf /net/gnoemoe/files/patch-src-world.c
parent- fix distinfo (diff)
remove unmaintained expired ports from net
2011-05-01 net/44bsd-rdist: Upstream disapear and distfile is no more available 2011-05-01 net/bbsnet: Upstream disapear and distfile is no more available 2011-05-01 net/bing: Upstream disapear and distfile is no more available 2011-05-01 net/brutecopy: Upstream disapear and distfile is no more available 2011-05-01 net/crescendo: Upstream disapear and distfile is no more available 2011-05-01 net/danamics: Upstream disapear and distfile is no more available 2011-05-01 net/etunnel: Upstream disapear and distfile is no more available 2011-05-01 net/gastman: Upstream disapear and distfile is no more available 2011-05-01 net/generic-nqs: Upstream disapear and distfile is no more available 2011-05-01 net/gkrellmmultiping2: Upstream disapear and distfile is no more available 2011-05-01 net/gkrellmwireless: Upstream disapear and distfile is no more available 2011-05-01 net/gnoemoe: Upstream disapear and distfile is no more available 2011-05-01 net/gnosamba: Upstream disapear and distfile is no more available 2011-05-01 net/merlinmon: Upstream disapear and distfile is no more available 2011-05-01 net/msntp: Upstream disapear and distfile is no more available 2011-05-01 net/ntalk: Upstream disapear and distfile is no more available 2011-05-01 net/ntraceroute: Upstream disapear and distfile is no more available 2011-05-01 net/onion-fec: Upstream disapear and distfile is no more available 2011-05-01 net/openverse: Upstream disapear and distfile is no more available 2011-05-01 net/poink: Upstream disapear and distfile is no more available 2011-05-01 net/roadrunner: Upstream disapear and distfile is no more available 2011-05-01 net/sambasentinel: Upstream disapear and distfile is no more available 2011-05-01 net/scand: Upstream disapear and distfile is no more available 2011-05-01 net/tacshell: Upstream disapear and distfile is no more available 2011-05-01 net/telserv: Upstream disapear and distfile is no more available 2011-05-01 net/tridiavnc: Upstream disapear and distfile is no more available 2011-05-01 net/tvark: Upstream disapear and distfile is no more available 2011-05-01 net/warppipe: Upstream disapear and distfile is no more available 2011-05-01 net/wistumbler2: Upstream disapear and distfile is no more available 2011-05-01 net/wmq3: Upstream disapear and distfile is no more available 2011-05-01 net/xbone-gui: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now 2011-05-01 net/xsmbrowser: Upstream disapear and distfile is no more available 2011-05-01 net/xtraceroute: Upstream disapear and distfile is no more available 2011-05-01 net/ytalk: Upstream disapear and distfile is no more available 2011-05-01 net/zniper: Upstream disapear and distfile is no more available
Notes
Notes: svn path=/head/; revision=273447
Diffstat (limited to 'net/gnoemoe/files/patch-src-world.c')
-rw-r--r--net/gnoemoe/files/patch-src-world.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/net/gnoemoe/files/patch-src-world.c b/net/gnoemoe/files/patch-src-world.c
deleted file mode 100644
index b0b8469326e4..000000000000
--- a/net/gnoemoe/files/patch-src-world.c
+++ /dev/null
@@ -1,36 +0,0 @@
---- src/world.c.orig Mon Dec 13 13:47:38 2004
-+++ src/world.c Fri Jan 14 18:00:30 2005
-@@ -1308,7 +1308,6 @@
- g_free(sendLine);
-
- #ifdef HASRUBY
-- script_function *f;
- if ((f = script_find("on_login")) != NULL) {
- script_run(wld, f, NULL);
- }
-@@ -1483,11 +1482,12 @@
- */
- void
- world_update(world * wld) {
-+ gchar *logsDir, *tmpDir;
- interface_update_world(wld);
-
- // See if there is need to create a logs dir
-- gchar *logsDir = g_strconcat(wld->path, "/logs", NULL);
-- gchar *tmpDir = g_strconcat(wld->path, "/tmp", NULL);
-+ logsDir = g_strconcat(wld->path, "/logs", NULL);
-+ tmpDir = g_strconcat(wld->path, "/tmp", NULL);
-
- if (!g_file_test(logsDir, G_FILE_TEST_EXISTS)) {
- mkdir(logsDir, 0750);
-@@ -1779,8 +1779,9 @@
- PangoContext *pc = gtk_widget_create_pango_context(wld->widgets.txtVwWorld);
-
- if (style->font_desc != NULL) {
-+ PangoLayout *pl;
- pango_context_set_font_description(pc, style->font_desc);
-- PangoLayout *pl = pango_layout_new(pc);
-+ pl = pango_layout_new(pc);
-
- pango_layout_set_text(pl, "G", 1);
- pango_layout_get_pixel_size(pl, &(wld->characterWidth), &(wld->characterHeight));