summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2006-10-01 13:34:47 +0000
committerMurray Cumming <murrayc@src.gnome.org>2006-10-01 13:34:47 +0000
commitbd2170819f4b5398e59e252b5399912c83687a05 (patch)
tree2eabe30eb13750f287c36c4f3f76ec289a8ab984
parent1601690f16e0434ff7e98c1ea43a4c84502f7c39 (diff)
downloadglibmm-bd2170819f4b5398e59e252b5399912c83687a05.tar.gz
Upload to the new hoster instead of to sourceforge. Abstracted the host
2006-10-01 Murray Cumming <murrayc@murrayc.com> * Makefile.am: * docs/Makefile.am: * docs/Makefile_web.am_fragment: * docs/images/Makefile.am: * docs/reference/Makefile.am: * docs/reference/README: * examples/Makefile.am: Upload to the new hoster instead of to sourceforge. Abstracted the host and path names into docs/Makefile_web.am_fragment to avoid duplication.
-rw-r--r--ChangeLog12
-rw-r--r--Makefile.am2
-rw-r--r--docs/Makefile.am2
-rw-r--r--docs/Makefile_web.am_fragment7
-rw-r--r--docs/images/Makefile.am2
-rw-r--r--docs/reference/Makefile.am2
-rw-r--r--docs/reference/README2
-rw-r--r--examples/Makefile.am4
8 files changed, 23 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 0b222e7d..19453436 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2006-10-01 Murray Cumming <murrayc@murrayc.com>
+
+ * Makefile.am:
+ * docs/Makefile.am:
+ * docs/Makefile_web.am_fragment:
+ * docs/images/Makefile.am:
+ * docs/reference/Makefile.am:
+ * docs/reference/README:
+ * examples/Makefile.am: Upload to the new hoster instead of to sourceforge.
+ Abstracted the host and path names into docs/Makefile_web.am_fragment to
+ avoid duplication.
+
2.13.2:
2006-09-28 Cedric Gustin <cedric.gustin@gmail.com>
diff --git a/Makefile.am b/Makefile.am
index f7ebad88..97a0aee0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -48,7 +48,7 @@ post-html-recursive:
done
post-html-local: glibmm-docs.tar.gz
- rsync $(rsync_args) glibmm-docs.tar.gz $$USER@shell.sourceforge.net:$(web_path_gtkmm2)
+ rsync $(rsync_args) glibmm-docs.tar.gz $$USER@$(web_host):$(web_path_gtkmm)
post-html: post-html-recursive post-html-local
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 80e67802..556283f3 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -17,7 +17,7 @@ post-html-recursive:
done
post-html-local:
- scp $$SSH_OPT $^ $$USER@shell.sourceforge.net:$(web_path_docs)
+ scp $$SSH_OPT $^ $$USER@$(web_host):$(web_path_docs)
post-html: post-html-recursive post-html-local
diff --git a/docs/Makefile_web.am_fragment b/docs/Makefile_web.am_fragment
index 52cd4325..14ecd2aa 100644
--- a/docs/Makefile_web.am_fragment
+++ b/docs/Makefile_web.am_fragment
@@ -1,6 +1,7 @@
-
-web_path_gtkmm2 = /home/groups/g/gt/gtkmm/htdocs/docs/glibmm-2.4/
-web_path_docs = $(web_path_gtkmm2)docs/
+web_host = gtkmm.org
+web_path_gtkmm = /home/murrayc/gtkmm.org/docs/glibmm-2.4/
+#web_path_gtkmm = /home/groups/g/gt/gtkmm/htdocs/docs/glibmm-2.4/
+web_path_docs = $(web_path_gtkmm)docs/
rsync_args = -vz --rsh ssh --delete --delete-after
gtkmm_docdir = $(datadir)/doc/glibmm-2.4/docs
diff --git a/docs/images/Makefile.am b/docs/images/Makefile.am
index 2951080a..6bbfd7a4 100644
--- a/docs/images/Makefile.am
+++ b/docs/images/Makefile.am
@@ -8,7 +8,7 @@ imagesdir = $(gtkmm_docdir)/images
images_DATA = gtkmm_logo.gif top.gif
post-html: gtkmm_logo.gif top.gif
- rsync $(rsync_args) $^ $$USER@shell.sourceforge.net:$(web_path_docs)images/
+ rsync $(rsync_args) $^ $$USER@$(web_host):$(web_path_docs)images/
doc-clean:
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index 21de9a4e..ba5a0b8b 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -29,7 +29,7 @@ glibmm-reference-html.tar.bz2: html/index.html
tar cf - html | bzip2 -c >$@
post-html: html/index.html
- rsync $(rsync_args) -r html/ $$USER@shell.sourceforge.net:$(web_path_reference)/html/
+ rsync $(rsync_args) -r html/ $$USER@$(web_host):$(web_path_reference)/html/
doc-clean:
-rm -rf html
diff --git a/docs/reference/README b/docs/reference/README
index ce164350..16ea69bc 100644
--- a/docs/reference/README
+++ b/docs/reference/README
@@ -3,4 +3,4 @@ You need to have doxygen installed.
make targets:
all: builds the reference documentation
-post-html: uploads it to the sourceforge site. \ No newline at end of file
+post-html: uploads it to the web site.
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 0e59f22c..79d9c73a 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -9,13 +9,13 @@ EXTRA_DIST = README Makefile.am_fragment
#Web upload:
include $(top_srcdir)/docs/Makefile_web.am_fragment
-web_path = $(web_path_gtkmm2)examples
+web_path = $(web_path_gtkmm)examples
#rsync --cvs-exclude ignores *.o and anything in .cvsignore and some more:
rsync_options = -vzr --rsh ssh --cvs-exclude --delete-excluded --exclude=.libs --exclude=.deps --exclude=core --exclude=.cvsignore --exclude=a.out --exclude=Makefile --exclude=Makefile.in
post-html:
- rsync $(rsync_options) $(example_dirs) $$USER@shell.sourceforge.net:$(web_path)
+ rsync $(rsync_options) $(example_dirs) $$USER@$(web_host):$(web_path)
.PHONY: post-html