New commits:
commit 020eb95b83a4482ea4c118737538fe6dba647937
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
gnome2-apps/gxneur: version 0.17.0
commit 946703f54a8c2931fee3c4a2608fc1d35d0a4ab1
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
x11/xneur: version 0.17.0
diff --git a/gnome2-apps/gxneur/DEPENDS b/gnome2-apps/gxneur/DEPENDS
index 11eae45..709291e 100755
--- a/gnome2-apps/gxneur/DEPENDS
+++ b/gnome2-apps/gxneur/DEPENDS
@@ -1,4 +1,11 @@
depends libglade2 &&
depends xneur &&
-depends gtk+2 &&
-depends gconf2
+if is_depends_enabled xneur gtk+2; then
+ depends gtk+2
+else
+ depends gtk+3
+fi &&
+optional_depends gconf2 \
+ "--with-gconf" \
+ "--without-gconf" \
+ "for Gconf support"
diff --git a/gnome2-apps/gxneur/DETAILS b/gnome2-apps/gxneur/DETAILS
index 7ae6697..aade891 100755
--- a/gnome2-apps/gxneur/DETAILS
+++ b/gnome2-apps/gxneur/DETAILS
@@ -1,8 +1,8 @@
SPELL=gxneur
- VERSION=0.15.0
- SOURCE=${SPELL}-${VERSION}.tar.bz2
- SOURCE_URL[0]=http://dists.xneur.ru/release-${VERSION}/tgz/${SOURCE}
-
SOURCE_HASH=sha512:4e300004d2f2eff5fa42a6084f392ffd0423dc30b7f23ef5474096d55cb2d3110565cd2dc99785779f5fe452a4d6101e0e66e26083c2cc3bcf99cdf3ecb81eaa
+ VERSION=0.17.0
+ SOURCE=${SPELL}_${VERSION}.orig.tar.gz
+
SOURCE_URL[0]=https://launchpad.net/~andrew-crew-kuznetsov/+archive/xneur-stable/+files/${SOURCE}
+
SOURCE_HASH=sha512:8aef79f7300998f32483323fcd35a1537730ab3e73ee09c84b5644530749dd9aa0ea6edbb0cde3e7b2e8aa331b56ff66959da037f12442c06be992e7609c3652
SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
WEB_SITE=http://xneur.ru/
LICENSE[0]=GPL
diff --git a/gnome2-apps/gxneur/HISTORY b/gnome2-apps/gxneur/HISTORY
index 22a55aa..e47a900 100644
--- a/gnome2-apps/gxneur/HISTORY
+++ b/gnome2-apps/gxneur/HISTORY
@@ -1,3 +1,7 @@
+2015-03-28 Pavel Vinogradov <public AT sourcemage.org>
+ * DETAILS: Fixed SOURCE_URL[0], .bz2 -> .gz, updated spell to 0.17.0
+ * DEPENDS: gtk version depends on xneur's one, gconf2 is now optional
+
2012-02-06 Pol Vinogradov <vin.public AT gmail.com>
* DETAILS: updated spell to 0.15.0
* PRE_BUILD: added suppression of -Werror flag
diff --git a/x11/xneur/BUILD b/x11/xneur/BUILD
index fbf17b1..199d6ac 100755
--- a/x11/xneur/BUILD
+++ b/x11/xneur/BUILD
@@ -4,4 +4,5 @@ fi &&
if list_find "$XNEUR_SPELL" "none"; then
OPTS="$OPTS --with-spell=no"
fi &&
+sed -i "s;-Werror -g0;-g0;" configure &&
default_build
diff --git a/x11/xneur/DEPENDS b/x11/xneur/DEPENDS
index d7f08c3..e374d2f 100755
--- a/x11/xneur/DEPENDS
+++ b/x11/xneur/DEPENDS
@@ -1,14 +1,12 @@
depends libx11 &&
-if list_find "$XNEUR_SOUND" "gstreamer" ; then
- depends gstreamer "--with-sound=$XNEUR_SOUND"
-elif list_find "$XNEUR_SOUND" "openal"; then
- depends OPENAL "--with-sound=$XNEUR_SOUND"
-elif list_find "$XNEUR_SOUND" "aplay"; then
+if list_find "$XNEUR_SOUND" "aplay"; then
depends alsa-utils "--with-sound=$XNEUR_SOUND"
+elif ! list_find "$XNEUR_SOUND" "none" ; then
+ depends "$XNEUR_SOUND" "--with-sound=$XNEUR_SOUND"
fi &&
-if list_find "$XNEUR_SPELL" "aspell" || list_find "$XNEUR_SPELL" "enchant";
then
+if ! list_find "$XNEUR_SPELL" "none"; then
depends "$XNEUR_SPELL" "--with-spell=$XNEUR_SPELL"
fi &&