[csw-devel] SF.net SVN: gar:[6984] csw/mgar/pkg/x11
wbonnet at users.sourceforge.net
wbonnet at users.sourceforge.net
Mon Oct 26 21:59:07 CET 2009
Revision: 6984
http://gar.svn.sourceforge.net/gar/?rev=6984&view=rev
Author: wbonnet
Date: 2009-10-26 20:59:06 +0000 (Mon, 26 Oct 2009)
Log Message:
-----------
Swtich to version 7.5
Modified Paths:
--------------
csw/mgar/pkg/x11/proto/x11_applewmproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_bigreqsproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_compositeproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_damageproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_dmxproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_dri2proto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_fixesproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_fontsproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_glproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_inputproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_kbproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_randrproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_recordproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_renderproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_resourceproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_scrnsaverproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_windowswmproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_xcmiscproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_xextproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_xf86bigfontproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_xf86dgaproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_xf86driproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_xf86vidmodeproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_xineramaproto/trunk/checksums
csw/mgar/pkg/x11/proto/x11_xproto/trunk/checksums
Added Paths:
-----------
csw/mgar/pkg/x11/individual/
csw/mgar/pkg/x11/individual/Makefile
csw/mgar/pkg/x11/individual/x11_evieextproto/
csw/mgar/pkg/x11/individual/x11_fontcacheproto/
csw/mgar/pkg/x11/individual/x11_trapproto/
csw/mgar/pkg/x11/individual/x11_xf86miscproto/
csw/mgar/pkg/x11/xcb/
csw/mgar/pkg/x11/xcb/Makefile
Removed Paths:
-------------
csw/mgar/pkg/x11/proto/x11_evieextproto/
csw/mgar/pkg/x11/proto/x11_fontcacheproto/
csw/mgar/pkg/x11/proto/x11_trapproto/
csw/mgar/pkg/x11/proto/x11_xf86miscproto/
Added: csw/mgar/pkg/x11/individual/Makefile
===================================================================
--- csw/mgar/pkg/x11/individual/Makefile (rev 0)
+++ csw/mgar/pkg/x11/individual/Makefile 2009-10-26 20:59:06 UTC (rev 6984)
@@ -0,0 +1,65 @@
+# Copyright 2009 OpenCSW
+# Distributed under the terms of the GNU General Public License v2
+# $Id: Makefile 6092 2009-08-23 21:50:45Z skayser $
+#
+# vim: ft=make ts=4 sw=4 noet
+# This makefile is to be included from Makefiles in each category
+# directory.
+
+default:
+ @echo "You are in the pkg/x11/individual directory."
+
+%:
+ @for i in $(filter-out CVS/,$(wildcard */)) ; do \
+ $(MAKE) -C $$i $* ; \
+ done
+
+paranoid-%:
+ @for i in $(filter-out CVS/,$(wildcard */)) ; do \
+ $(MAKE) -C $$i $* || exit 2; \
+ done
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+ @for i in $(filter-out CVS/,$(wildcard */)) ; do \
+ $(MAKE) -C $$i $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG); \
+ done
+
+newpkg-%:
+ @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files
+ @(echo "GARNAME = $*"; \
+ echo "GARVERSION = 1.0"; \
+ echo "CATEGORIES = category"; \
+ echo ""; \
+ echo "DESCRIPTION = Brief description"; \
+ echo "define BLURB"; \
+ echo " Long description"; \
+ echo "endef"; \
+ echo ""; \
+ echo "MASTER_SITES = "; \
+ echo "DISTFILES = $$(GARNAME)-$$(GARVERSION).tar.gz"; \
+ echo ""; \
+ echo "# We define upstream file regex so we can be notifed of new upstream software release"; \
+ echo "UFILES_REGEX = $$(GARNAME)-(\d+(?:\.\d+)*).tar.gz"; \
+ echo ""; \
+ echo "# If the url used to check for software update is different of MASTER_SITES, then "; \
+ echo "# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES"; \
+ echo "# UPSTREAM_MASTER_SITES = "; \
+ echo ""; \
+ echo "CONFIGURE_ARGS = $$(DIRPATHS)"; \
+ echo ""; \
+ echo "include gar/category.mk"; \
+ ) > $*/trunk/Makefile
+ @touch $*/trunk/checksums
+ @svn add $*/trunk/Makefile $*/trunk/checksums
+ @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk
+ @echo "gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk
+ @if [ -d ../../gar/v2 ]; then \
+ ln -s ../../../../gar/v2 $*/trunk/gar; \
+ else \
+ svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar; \
+ fi
+ @echo
+ @echo "Your package is set up for editing at $*/trunk"
+
Modified: csw/mgar/pkg/x11/proto/x11_applewmproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_applewmproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_applewmproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-774bf8e9633f0f38c49069a9ea56ae23 download/applewmproto-1.0.3.tar.gz
+822151ea24caf7c23ced6da7a14dfb4d applewmproto-1.4.1.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_bigreqsproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_bigreqsproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_bigreqsproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-d43f7faa2aac2f0206ea19f031494af1 download/bigreqsproto-1.0.2.tar.gz
+882d49cc3bb591dbdccdf9e680bd2e4b bigreqsproto-1.1.0.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_compositeproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_compositeproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_compositeproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-33a79f6ba950bc5b41e077c951871bd5 download/compositeproto-0.4.tar.gz
+6994a209774fe7877fd8e0c9fafe2466 compositeproto-0.4.1.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_damageproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_damageproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_damageproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-bce4477a6edd774dfca175ea46e1ba76 download/damageproto-1.1.0.tar.gz
+423516fd64e43e8671120056b0d9f597 damageproto-1.2.0.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_dmxproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_dmxproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_dmxproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-c76b374240fdb37af3ff62cbd484ec72 download/dmxproto-2.2.2.tar.gz
+595b6a86540497b3ccadfb597df10546 dmxproto-2.3.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_dri2proto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_dri2proto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_dri2proto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-4815a9ac0682528aba50759b6f611acb download/dri2proto-2.1.tar.gz
+4815a9ac0682528aba50759b6f611acb dri2proto-2.1.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_fixesproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_fixesproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_fixesproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-ed4af7fbf04a51aca684c259784520f3 download/fixesproto-4.0.tar.gz
+95806b9b648639d4c3e5b226d10927c0 fixesproto-4.1.1.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_fontsproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_fontsproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_fontsproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-6c1efa12ae50262b45c91e9a120632b7 download/fontsproto-2.0.2.tar.gz
+6819fc82585daac68cec17938b659bf0 fontsproto-2.1.0.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_glproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_glproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_glproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-216203b0fe4dd2ecb361265ac01ad348 download/glproto-1.4.9.tar.gz
+ac89626ed6bced045d0515217bfffd4f glproto-1.4.10.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_inputproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_inputproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_inputproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-55c67c1f42d70458a3e4d153c8c07cf7 download/inputproto-1.4.4.tar.gz
+13d91739cf70a781f1db24d8d3677574 inputproto-2.0.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_kbproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_kbproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_kbproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-1efc6a4d97acb3ec3f34c4b2508478dc download/kbproto-1.0.3.tar.gz
+4deef518a03bc94a7a25902bb7c98dd6 kbproto-1.0.4.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_randrproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_randrproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_randrproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-d6b6b024d71b689628bcaf27fd491f5b download/randrproto-1.2.1.tar.gz
+15266124b9e2dfcfb25ce6cba24cdd66 randrproto-1.3.1.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_recordproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_recordproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_recordproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-a184f8939a7ecae064857e7932a929b2 download/recordproto-1.13.2.tar.gz
+60038c2ef058ee5ac04a645a37c072ce recordproto-1.14.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_renderproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_renderproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_renderproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-ab8f3e356973d9c99810a8f092db3a2e download/renderproto-0.9.3.tar.gz
+57216f25b9a5edc561b83a7484cb17e8 renderproto-0.11.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_resourceproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_resourceproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_resourceproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-198252b76e8082958cc2228d8dcc7c2f download/resourceproto-1.0.2.tar.gz
+587333b4995a3e11ebe4c8ba2742efaf resourceproto-1.1.0.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_scrnsaverproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_scrnsaverproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_scrnsaverproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-616ae17acad2b6033c981b8b526d5e67 download/scrnsaverproto-1.1.0.tar.gz
+0ed88bdd6945ba207c4f734af48e7e25 scrnsaverproto-1.2.0.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_windowswmproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_windowswmproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_windowswmproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-a306fcd4afa9c5f981b8c1b45c725dec download/windowswmproto-1.0.3.tar.gz
+558db92a8e4e1b07e9c62eca3f04dd8d windowswmproto-1.0.4.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_xcmiscproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_xcmiscproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_xcmiscproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-3c380a728697ded97a39addfe1acf2cb download/xcmiscproto-1.1.2.tar.gz
+bacfb0f3cb4d6e1a71770307bfdba129 xcmiscproto-1.2.0.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_xextproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_xextproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_xextproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-6a8f9f9559e9065858905043c17e05a1 download/xextproto-7.0.3.tar.gz
+6c55283718dbeb826bcf899b9e89faba xextproto-7.1.1.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_xf86bigfontproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_xf86bigfontproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_xf86bigfontproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-43d9fe9f92e5b8abd6e1328fdb022e7d download/xf86bigfontproto-1.1.2.tar.gz
+91b0733ff4cbe55808d96073258aa3d1 xf86bigfontproto-1.2.0.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_xf86dgaproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_xf86dgaproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_xf86dgaproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-f73c1d99b557249662bc75b9b872b61b download/xf86dgaproto-2.0.3.tar.gz
+1fe79dc07857ad3e1fb8b8f2bdd70d1b xf86dgaproto-2.1.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_xf86driproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_xf86driproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_xf86driproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-17a69691f2827b13ac4494f9c4af22b1 download/xf86driproto-2.0.4.tar.gz
+da848afcd5c41ac05e3aa994bdacdf1c xf86driproto-2.1.0.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_xf86vidmodeproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_xf86vidmodeproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_xf86vidmodeproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-67c93ee2c2c4941e866d96d63329a471 download/xf86vidmodeproto-2.2.2.tar.gz
+934b400f2f8d1bcab20bb056e0910291 xf86vidmodeproto-2.3.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_xineramaproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_xineramaproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_xineramaproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-1ad90ffc98d49c0dc5abb11e78b8d1aa download/xineramaproto-1.1.2.tar.gz
+1e98484ffa9b0eb6ab9d00cd53bfe74f xineramaproto-1.2.tar.gz
Modified: csw/mgar/pkg/x11/proto/x11_xproto/trunk/checksums
===================================================================
--- csw/mgar/pkg/x11/proto/x11_xproto/trunk/checksums 2009-10-26 20:31:50 UTC (rev 6983)
+++ csw/mgar/pkg/x11/proto/x11_xproto/trunk/checksums 2009-10-26 20:59:06 UTC (rev 6984)
@@ -1 +1 @@
-4c736a7ba52beddaea87964047adf209 download/xproto-7.0.13.tar.gz
+6e6b6510ccd568f82093ebd7ae58700b xproto-7.0.16.tar.gz
Added: csw/mgar/pkg/x11/xcb/Makefile
===================================================================
--- csw/mgar/pkg/x11/xcb/Makefile (rev 0)
+++ csw/mgar/pkg/x11/xcb/Makefile 2009-10-26 20:59:06 UTC (rev 6984)
@@ -0,0 +1,65 @@
+# Copyright 2009 OpenCSW
+# Distributed under the terms of the GNU General Public License v2
+# $Id: Makefile 6092 2009-08-23 21:50:45Z skayser $
+#
+# vim: ft=make ts=4 sw=4 noet
+# This makefile is to be included from Makefiles in each category
+# directory.
+
+default:
+ @echo "You are in the pkg/x11/xcb directory."
+
+%:
+ @for i in $(filter-out CVS/,$(wildcard */)) ; do \
+ $(MAKE) -C $$i $* ; \
+ done
+
+paranoid-%:
+ @for i in $(filter-out CVS/,$(wildcard */)) ; do \
+ $(MAKE) -C $$i $* || exit 2; \
+ done
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+ @for i in $(filter-out CVS/,$(wildcard */)) ; do \
+ $(MAKE) -C $$i $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG); \
+ done
+
+newpkg-%:
+ @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files
+ @(echo "GARNAME = $*"; \
+ echo "GARVERSION = 1.0"; \
+ echo "CATEGORIES = category"; \
+ echo ""; \
+ echo "DESCRIPTION = Brief description"; \
+ echo "define BLURB"; \
+ echo " Long description"; \
+ echo "endef"; \
+ echo ""; \
+ echo "MASTER_SITES = "; \
+ echo "DISTFILES = $$(GARNAME)-$$(GARVERSION).tar.gz"; \
+ echo ""; \
+ echo "# We define upstream file regex so we can be notifed of new upstream software release"; \
+ echo "UFILES_REGEX = $$(GARNAME)-(\d+(?:\.\d+)*).tar.gz"; \
+ echo ""; \
+ echo "# If the url used to check for software update is different of MASTER_SITES, then "; \
+ echo "# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES"; \
+ echo "# UPSTREAM_MASTER_SITES = "; \
+ echo ""; \
+ echo "CONFIGURE_ARGS = $$(DIRPATHS)"; \
+ echo ""; \
+ echo "include gar/category.mk"; \
+ ) > $*/trunk/Makefile
+ @touch $*/trunk/checksums
+ @svn add $*/trunk/Makefile $*/trunk/checksums
+ @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk
+ @echo "gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk
+ @if [ -d ../../gar/v2 ]; then \
+ ln -s ../../../../gar/v2 $*/trunk/gar; \
+ else \
+ svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar; \
+ fi
+ @echo
+ @echo "Your package is set up for editing at $*/trunk"
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list