darkside 08/06/26 23:32:10
Added: gambas-2.5.0-gcc-libffi-path.patch
gambas-2.7.0-help-path.patch gambas-2.5.0-sdl.patch
gambas-2.5.0-mimetype-registration.patch
Log:
Version bump, bug #146871
(Portage version: 2.2_rc1/cvs/Linux 2.6.22-gentoo-r2 i686)
Revision Changes Path
1.1 dev-util/gambas/files/gambas-2.5.0-gcc-libffi-path.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/files/gambas-2.5.0-gcc-libffi-path.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/files/gambas-2.5.0-gcc-libffi-path.patch?rev=1.1&content-type=text/plain
Index: gambas-2.5.0-gcc-libffi-path.patch
===================================================================
--- main/configure.ac.orig 2008-04-12
+++ main/configure.ac 2008-04-12
@@ -50,7 +50,7 @@
[foreign function interface],
[],
[GB_FIND(ffi.h, /usr/local /usr/local/lib /usr /usr/lib /usr/lib/gcc/*/*, include ffi/include)],
- [GB_FIND(libffi.$SHLIBEXT, /usr/local /usr, lib)],
+ [GB_FIND(libffi.$SHLIBEXT, /usr/local /usr /usr/lib/gcc/*/*, lib .)],
[-lffi])
fi
1.1 dev-util/gambas/files/gambas-2.7.0-help-path.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/files/gambas-2.7.0-help-path.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/files/gambas-2.7.0-help-path.patch?rev=1.1&content-type=text/plain
Index: gambas-2.7.0-help-path.patch
===================================================================
diff -Naur gambas2-2.7.0.orig/help/Makefile.am gambas2-2.7.0/help/Makefile.am
--- gambas2-2.7.0.orig/help/Makefile.am 2008-06-12 19:51:10.000000000 +0100
+++ gambas2-2.7.0/help/Makefile.am 2008-06-21 12:25:23.000000000 +0100
@@ -4,10 +4,10 @@
install-exec-local:
@echo
@echo "Installing the gambas help files..."
- @$(INSTALL) -d $(DESTDIR)$(gbdatadir)/help
- @rm -rf $(DESTDIR)$(gbdatadir)/help
- @cp -R $(srcdir)/help $(DESTDIR)$(gbdatadir)
- @(cd $(DESTDIR)$(gbdatadir)/help; tar xfz $(DESTDIR)$(gbdatadir)/help/help.tar.gz; $(LN_S) help/img img; $(LN_S) help/image image; rm -f Makefile*)
+ @$(INSTALL) -d $(DESTDIR)$(htmldir)
+ @cp -R $(srcdir)/help/{tree,*.css,*.png} $(DESTDIR)$(htmldir)
+ @tar xfz $(srcdir)/help/help.tar.gz -C $(DESTDIR)$(htmldir)
+ @(cd $(DESTDIR)$(htmldir); $(LN_S) help/img img; $(LN_S) help/image image; rm -f Makefile*)
uninstall-local:
@rm -rf $(DESTDIR)$(gbdatadir)/help
1.1 dev-util/gambas/files/gambas-2.5.0-sdl.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/files/gambas-2.5.0-sdl.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/files/gambas-2.5.0-sdl.patch?rev=1.1&content-type=text/plain
Index: gambas-2.5.0-sdl.patch
===================================================================
--- gb.sdl/configure.ac.orig 2008-04-16
+++ gb.sdl/configure.ac 2008-04-16
@@ -7,7 +7,7 @@
GB_CHECK_XWINDOW
dnl TODO: add a version test in GB_COMPONENT!
-GB_PATH_SDL(1.2.8, [], [touch DISABLED])
+dnl GB_PATH_SDL(1.2.8, [], [touch DISABLED])
dnl check Xcursor support
AC_CHECK_LIB(Xcursor, XcursorLibraryLoadCursor,
--- gb.sdl.sound/configure.ac.orig 2008-04-16
+++ gb.sdl.sound/configure.ac 2008-04-16
@@ -5,7 +5,7 @@
AC_PROG_LIBTOOL
dnl TODO: add a version test in GB_COMPONENT!
-GB_PATH_SDL(1.2.8, [] , [touch DISABLED])
+dnl GB_PATH_SDL(1.2.8, [] , [touch DISABLED])
dnl check for SDL libs
GB_COMPONENT(
1.1 dev-util/gambas/files/gambas-2.5.0-mimetype-registration.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/files/gambas-2.5.0-mimetype-registration.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gambas/files/gambas-2.5.0-mimetype-registration.patch?rev=1.1&content-type=text/plain
Index: gambas-2.5.0-mimetype-registration.patch
===================================================================
--- app/Makefile.am.orig 2008-04-18
+++ app/Makefile.am 2008-04-18
@@ -15,13 +15,6 @@
@echo "Installing the scripter..."
@ln -s gbs$(GAMBAS_VERSION).gambas $(DESTDIR)$(bindir)/gbs$(GAMBAS_VERSION) || true
- @if test x"$(XDG_UTILS)" != x; then \
- echo "Registering Gambas script mimetype"; \
- $(INSTALL) -d $(DESTDIR)$(gbdatadir)/icons; \
- cp -f $(srcdir)/mime/application-x-gambasscript.png $(DESTDIR)$(gbdatadir)/icons; \
- xdg-icon-resource install --context mimetypes --size 64 $(DESTDIR)$(gbdatadir)/icons/application-x-gambasscript.png application-x-gambasscript; \
- xdg-mime install $(srcdir)/mime/application-x-gambasscript.xml; \
- fi
uninstall-local:
@rm -f $(DESTDIR)$(bindir)/gambas$(GAMBAS_VERSION)
--- main/Makefile.am.orig 2008-04-18
+++ main/Makefile.am 2008-04-18
@@ -9,14 +9,6 @@
fi
@echo "Making runtime symbolic link"
@$(LN_S) -f gbx$(GAMBAS_VERSION) $(DESTDIR)$(bindir)/gbr$(GAMBAS_VERSION) || true
-
- @if test x"$(XDG_UTILS)" != x; then \
- echo "Registering Gambas executable mimetype"; \
- $(INSTALL) -d $(DESTDIR)$(gbdatadir)/icons; \
- cp -f $(srcdir)/mime/application-x-gambas.png $(DESTDIR)$(gbdatadir)/icons; \
- xdg-icon-resource install --context mimetypes --size 64 $(DESTDIR)$(gbdatadir)/icons/application-x-gambas.png application-x-gambas; \
- xdg-mime install $(srcdir)/mime/application-x-gambas.xml; \
- fi
uninstall-local:
@rm -f $(DESTDIR)$(bindir)/gbr$(GAMBAS_VERSION)
--
gentoo-commits@g.o mailing list
|