Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (749c2ee5ace279b8f9db25cb00731b07714eb445)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (749c2ee5ace279b8f9db25cb00731b07714eb445)
  • Date: Wed, 6 Feb 2008 19:38:00 -0600

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

ChangeLog | 4 ++++
dev/null |binary
utils/wine-doors/DEPENDS | 9 ++++++++-
utils/wine-doors/DETAILS | 2 +-
utils/wine-doors/HISTORY | 8 ++++++++
utils/wine-doors/INSTALL | 3 ++-
utils/wine-doors/wine-doors-0.1.2.tar.gz.sig |binary
utils/wine-doors/wine-doors-0.1pre1.tar.gz.sig | 0
utils/winetricks/BUILD | 1 +
utils/winetricks/DEPENDS | 9 +++++++++
utils/winetricks/DETAILS | 15 +++++++++++++++
utils/winetricks/HISTORY | 3 +++
utils/winetricks/INSTALL | 1 +
utils/winetricks/PRE_BUILD | 1 +
14 files changed, 53 insertions(+), 3 deletions(-)

New commits:
commit 749c2ee5ace279b8f9db25cb00731b07714eb445
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

wine-doors: Updated to 0.1.2, depends on orange and setxkbmap, and now
requires extra parameters for --prefix

commit 92209fb02bce33eeb9c75e8d08ac491d01567baf
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

winetricks: Added a script to download and install WINE runtime libraries

diff --git a/ChangeLog b/ChangeLog
index 4552186..8bbfaaa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-02-06 Eric Sandall <sandalle AT sourcemage.org>
+ * utils/winetricks: Added Script to download and install WINE runtime
+ libraries
+
2008-02-06 Julien "_kaze_" ROZO <julien AT rozo.org>
* net/webmonx: new spell, a monitor for websites updates and changes

diff --git a/utils/wine-doors/DEPENDS b/utils/wine-doors/DEPENDS
index fca34ab..34122fa 100755
--- a/utils/wine-doors/DEPENDS
+++ b/utils/wine-doors/DEPENDS
@@ -4,10 +4,17 @@ depends cairo &&
depends gnome-python-desktop &&
depends gzip &&
depends libglade2 &&
+depends orange &&
depends pycairo &&
depends pygtk2 &&
depends python &&
depends pyxml &&
depends tar &&
depends unzip &&
-depends wine
+depends wine &&
+
+. $GRIMOIRE/FUNCTIONS &&
+
+if check_if_xorg_modular_libs; then
+ depends setxkbmap
+fi
diff --git a/utils/wine-doors/DETAILS b/utils/wine-doors/DETAILS
index 159d51d..d51218d 100755
--- a/utils/wine-doors/DETAILS
+++ b/utils/wine-doors/DETAILS
@@ -1,5 +1,5 @@
SPELL=wine-doors
- VERSION=0.1pre1
+ VERSION=0.1.2
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://www.wine-doors.org/releases/$SOURCE
SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
diff --git a/utils/wine-doors/HISTORY b/utils/wine-doors/HISTORY
index e5ecfe1..48346a7 100644
--- a/utils/wine-doors/HISTORY
+++ b/utils/wine-doors/HISTORY
@@ -1,3 +1,11 @@
+2008-02-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 0.1.2
+ * DEPENDS: Depends on orange
+ If using xorg_modular, also depends on setxkbmap
+ * INSTALL: --prefix is not to usr/, not where usr/ is
+ Pass --config as well for configuration files to use INSTALL_ROOT
+ Don't forget the trailing / for --prefix and --config
+
2007-06-13 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS, DEPENDS, BUILD, INSTALL: Created
* INSTALL: For some reason, installing to the system (-S) does not
actually
diff --git a/utils/wine-doors/INSTALL b/utils/wine-doors/INSTALL
index b504c26..964fea9 100755
--- a/utils/wine-doors/INSTALL
+++ b/utils/wine-doors/INSTALL
@@ -1,4 +1,5 @@
-python setup.py install -S --prefix=$INSTALL_ROOT/ &&
+python setup.py install -S --prefix=$INSTALL_ROOT/usr/ \
+ --config=$INSTALL_ROOT/etc/ &&
pushd $INSTALL_ROOT/usr/bin &&
ln -sf $INSTALL_ROOT/usr/share/wine-doors/src/winedoors.py wine-doors &&
popd
diff --git a/utils/wine-doors/wine-doors-0.1.2.tar.gz.sig
b/utils/wine-doors/wine-doors-0.1.2.tar.gz.sig
new file mode 100644
index 0000000..a3dd655
Binary files /dev/null and b/utils/wine-doors/wine-doors-0.1.2.tar.gz.sig
differ
diff --git a/utils/wine-doors/wine-doors-0.1pre1.tar.gz.sig
b/utils/wine-doors/wine-doors-0.1pre1.tar.gz.sig
deleted file mode 100644
index 59f7b14..0000000
Binary files a/utils/wine-doors/wine-doors-0.1pre1.tar.gz.sig and /dev/null
differ
diff --git a/utils/winetricks/BUILD b/utils/winetricks/BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/utils/winetricks/BUILD
@@ -0,0 +1 @@
+true
diff --git a/utils/winetricks/DEPENDS b/utils/winetricks/DEPENDS
new file mode 100755
index 0000000..021fa3a
--- /dev/null
+++ b/utils/winetricks/DEPENDS
@@ -0,0 +1,9 @@
+depends cabextract &&
+depends wine &&
+depends X11-LIBS &&
+
+. $GRIMOIRE/FUNCTIONS &&
+
+if check_if_xorg_modular_libs; then
+ depends xmessage
+fi
diff --git a/utils/winetricks/DETAILS b/utils/winetricks/DETAILS
new file mode 100755
index 0000000..6366e09
--- /dev/null
+++ b/utils/winetricks/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=winetricks
+ VERSION=20080206
+ SOURCE=$SPELL
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=http://kegel.com/wine/$SOURCE
+ SOURCE_IGNORE=unversioned
+ LICENSE[0]=GPL
+ WEB_SITE=http://kegel.com/wine/
+ KEYWORDS="wine"
+ ENTERED=20080206
+ SHORT='Script to download and install WINE runtime libraries'
+cat << EOF
+Quick and dirty script to download and install various redistributable
runtime
+libraries
+EOF
diff --git a/utils/winetricks/HISTORY b/utils/winetricks/HISTORY
new file mode 100644
index 0000000..c6888f1
--- /dev/null
+++ b/utils/winetricks/HISTORY
@@ -0,0 +1,3 @@
+2008-02-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, DEPENDS, PRE_BUILD, BUILD, INSTALL: Created
+
diff --git a/utils/winetricks/INSTALL b/utils/winetricks/INSTALL
new file mode 100755
index 0000000..1b6d48f
--- /dev/null
+++ b/utils/winetricks/INSTALL
@@ -0,0 +1 @@
+install -m 0755 $SOURCE_CACHE/$SOURCE $INSTALL_ROOT/usr/bin/$SOURCE
diff --git a/utils/winetricks/PRE_BUILD b/utils/winetricks/PRE_BUILD
new file mode 100755
index 0000000..fb95509
--- /dev/null
+++ b/utils/winetricks/PRE_BUILD
@@ -0,0 +1 @@
+verify_source ''



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (749c2ee5ace279b8f9db25cb00731b07714eb445), Eric Sandall, 02/06/2008

Archive powered by MHonArc 2.6.24.

Top of Page