@@ -0,0 +1,62 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
pisitools.flags.add("-fno-strict-aliasing")
|
||||
pisitools.dosed("configure", '(wx_cv_std_libpath="lib)64"', r'\1"')
|
||||
|
||||
autotools.configure("--enable-gtk2 \
|
||||
--enable-shared \
|
||||
--disable-optimise \
|
||||
--disable-debug \
|
||||
--enable-no_deps \
|
||||
--disable-rpath \
|
||||
--enable-intl \
|
||||
--enable-geometry \
|
||||
--enable-timer \
|
||||
--enable-unicode \
|
||||
--enable-sound \
|
||||
--enable-mediactrl \
|
||||
--enable-xrc \
|
||||
--enable-graphics_ctx \
|
||||
--enable-display \
|
||||
--enable-joystick \
|
||||
--disable-gtktest \
|
||||
--disable-sdltest \
|
||||
--disable-precomp-headers \
|
||||
--with-gtk=2 \
|
||||
--with-libpng=sys \
|
||||
--with-libjpeg=sys \
|
||||
--with-libtiff=sys \
|
||||
--with-libxpm=sys \
|
||||
--with-sdl \
|
||||
--without-gnomeprint \
|
||||
--without-gnomevfs \
|
||||
--without-odbc \
|
||||
--with-opengl \
|
||||
--with-regex=builtin \
|
||||
--with-zlib=sys \
|
||||
--with-expat=sys")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make("-C contrib")
|
||||
autotools.make("-C locale allmo")
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
autotools.install("-C contrib")
|
||||
|
||||
# dont add conflicts files
|
||||
# pisitools.dodoc("docs/*.txt", "docs/*.htm")
|
||||
#pisitools.dosym("/usr/bin/wxrc-2.8", "/usr/bin/wxrc")
|
||||
pisitools.dosym("/usr/bin/wx-config-2.8", "/usr/bin/wxconfig")
|
||||
# pisitools.rename("/usr/bin/wxrc-2.8", "wxrc")
|
||||
# pisitools.rename("/usr/bin/wx-config-2.8", "wxconfig")
|
||||
@@ -0,0 +1,15 @@
|
||||
diff -up wxGTK-2.8.12/src/common/appbase.cpp.abicheck wxGTK-2.8.12/src/common/appbase.cpp
|
||||
--- wxGTK-2.8.12/src/common/appbase.cpp.abicheck 2015-03-12 17:15:18.000000000 +0100
|
||||
+++ wxGTK-2.8.12/src/common/appbase.cpp 2015-03-12 17:15:57.000000000 +0100
|
||||
@@ -424,10 +424,7 @@ bool wxAppConsole::CheckBuildOptions(con
|
||||
msg.Printf(_T("Mismatch between the program and library build versions detected.\nThe library used %s,\nand %s used %s."),
|
||||
lib.c_str(), progName.c_str(), prog.c_str());
|
||||
|
||||
- wxLogFatalError(msg.c_str());
|
||||
-
|
||||
- // normally wxLogFatalError doesn't return
|
||||
- return false;
|
||||
+ wxLogWarning(msg.c_str());
|
||||
}
|
||||
#undef wxCMP
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
Index: wxGTK-2.8.11/configure.in
|
||||
===================================================================
|
||||
--- wxGTK-2.8.11.orig/configure.in
|
||||
+++ wxGTK-2.8.11/configure.in
|
||||
@@ -5418,7 +5418,7 @@ if test "$TOOLKIT" != "MSW" -a "$USE_OS2
|
||||
dnl define the list of the thread options to try in the loop below
|
||||
dnl with the convention that anything starting with '-' is a cpp flag
|
||||
dnl while anything else is a library (i.e. there is an implicit "-l")
|
||||
- THREAD_OPTS="-pthread"
|
||||
+ THREAD_OPTS="pthread"
|
||||
case "${host}" in
|
||||
*-*-solaris2* | *-*-sunos4* )
|
||||
if test "x$GCC" = "xyes"; then
|
||||
Index: wxGTK-2.8.11/configure
|
||||
===================================================================
|
||||
--- wxGTK-2.8.11.orig/configure
|
||||
+++ wxGTK-2.8.11/configure
|
||||
@@ -39579,7 +39579,7 @@ echo "$as_me: WARNING: BeOS threads are
|
||||
if test "$wxUSE_THREADS" = "yes" ; then
|
||||
|
||||
|
||||
- THREAD_OPTS="-pthread"
|
||||
+ THREAD_OPTS="pthread"
|
||||
case "${host}" in
|
||||
*-*-solaris2* | *-*-sunos4* )
|
||||
if test "x$GCC" = "xyes"; then
|
||||
@@ -0,0 +1,15 @@
|
||||
|
||||
https://bugs.gentoo.org/show_bug.cgi?id=280615
|
||||
http://svn.python.org/view?view=rev&revision=74429
|
||||
|
||||
--- src/expat/lib/xmltok_impl.c 2009-08-21 23:26:35.000000000 +0200
|
||||
+++ src/expat/lib/xmltok_impl.c.oden 2009-08-21 23:26:47.000000000 +0200
|
||||
@@ -1741,7 +1741,7 @@ PREFIX(updatePosition)(const ENCODING *e
|
||||
const char *end,
|
||||
POSITION *pos)
|
||||
{
|
||||
- while (ptr != end) {
|
||||
+ while (ptr < end) {
|
||||
switch (BYTE_TYPE(enc, ptr)) {
|
||||
#define LEAD_CASE(n) \
|
||||
case BT_LEAD ## n: \
|
||||
@@ -0,0 +1,11 @@
|
||||
diff -Naur wxPython-src-2.8.7.1-orig/contrib/src/Makefile.in wxPython-src-2.8.7.1/contrib/src/Makefile.in
|
||||
--- wxPython-src-2.8.7.1-orig/contrib/src/Makefile.in 2007-07-27 17:57:27.000000000 -0600
|
||||
+++ wxPython-src-2.8.7.1/contrib/src/Makefile.in 2007-12-28 17:34:28.000000000 -0600
|
||||
@@ -1,6 +1,6 @@
|
||||
# $Id: wxGTK-2.8.7-mmedia.patch,v 1.1 2008/01/06 22:47:55 dirtyepic Exp $
|
||||
|
||||
-CONTRIB_SUBDIRS=fl gizmos mmedia ogl plot stc svg #deprecated #applet
|
||||
+CONTRIB_SUBDIRS=fl gizmos ogl plot stc svg #deprecated #applet mmedia
|
||||
|
||||
all:
|
||||
@for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE)); done
|
||||
@@ -0,0 +1,82 @@
|
||||
diff -Naur wxPython-src-2.8.12.1.orig/build/bakefiles/wx.bkl wxPython-src-2.8.12.1/build/bakefiles/wx.bkl
|
||||
--- wxPython-src-2.8.12.1.orig/build/bakefiles/wx.bkl 2014-01-04 22:28:16.491774907 -0500
|
||||
+++ wxPython-src-2.8.12.1/build/bakefiles/wx.bkl 2014-01-04 22:37:39.610020870 -0500
|
||||
@@ -128,7 +128,7 @@
|
||||
<using module="gettext"/>
|
||||
<gettext-catalogs id="locale">
|
||||
<srcdir>$(SRCDIR)/locale</srcdir>
|
||||
- <catalog-name>wxstd</catalog-name>
|
||||
+ <catalog-name>wxstd$(WX_RELEASE_NODOT)</catalog-name>
|
||||
<linguas>
|
||||
ca cs da de el es fi fr hu id it ja nl pl ru sl sv tr uk
|
||||
zh zh_CN zh_TW
|
||||
diff -Naur wxPython-src-2.8.12.1.orig/Makefile.in wxPython-src-2.8.12.1/Makefile.in
|
||||
--- wxPython-src-2.8.12.1.orig/Makefile.in 2014-01-04 22:28:16.545107766 -0500
|
||||
+++ wxPython-src-2.8.12.1/Makefile.in 2014-01-04 22:40:27.191813403 -0500
|
||||
@@ -11695,10 +11695,11 @@
|
||||
all: $(__wxregex___depname) $(__wxzlib___depname) $(__wxpng___depname) $(__wxjpeg___depname) $(__wxtiff___depname) $(__wxodbc___depname) $(__wxexpat___depname) $(__monodll___depname) $(__monolib___depname) $(__basedll___depname) $(__baselib___depname) $(__netdll___depname) $(__netlib___depname) $(__coredll___depname) $(__corelib___depname) $(__advdll___depname) $(__advlib___depname) $(__mediadll___depname) $(__medialib___depname) $(__odbcdll___depname) $(__odbclib___depname) $(__dbgriddll___depname) $(__dbgridlib___depname) $(__htmldll___depname) $(__htmllib___depname) $(__qadll___depname) $(__qalib___depname) $(__xmldll___depname) $(__xmllib___depname) $(__xrcdll___depname) $(__xrclib___depname) $(__auidll___depname) $(__auilib___depname) $(__richtextdll___depname) $(__richtextlib___depname) $(__gldll___depname) $(__gllib___depname) $(__sound_sdl___depname) $(__wxrc___depname) $(__cocoa_res___depname)
|
||||
|
||||
install: $(__install_wxregex___depname) $(__install_wxzlib___depname) $(__install_wxpng___depname) $(__install_wxjpeg___depname) $(__install_wxtiff___depname) $(__install_wxodbc___depname) $(__install_wxexpat___depname) $(__install_monodll___depname) $(__install_monolib___depname) $(__install_basedll___depname) $(__install_baselib___depname) $(__install_netdll___depname) $(__install_netlib___depname) $(__install_coredll___depname) $(__install_corelib___depname) $(__install_advdll___depname) $(__install_advlib___depname) $(__install_mediadll___depname) $(__install_medialib___depname) $(__install_odbcdll___depname) $(__install_odbclib___depname) $(__install_dbgriddll___depname) $(__install_dbgridlib___depname) $(__install_htmldll___depname) $(__install_htmllib___depname) $(__install_qadll___depname) $(__install_qalib___depname) $(__install_xmldll___depname) $(__install_xmllib___depname) $(__install_xrcdll___depname) $(__install_xrclib___depname) $(__install_auidll___depname) $(__install_auilib___depname) $(__install_richtextdll___depname) $(__install_richtextlib___depname) $(__install_gldll___depname) $(__install_gllib___depname) $(__install_sound_sdl___depname) $(__install_wxrc___depname) install-wxconfig locale_install locale_msw_install $(__cocoa_res_install___depname)
|
||||
- $(INSTALL_DIR) $(DESTDIR)$(datadir)/aclocal
|
||||
- (cd $(srcdir) ; $(INSTALL_DATA) wxwin.m4 $(DESTDIR)$(datadir)/aclocal)
|
||||
+
|
||||
$(INSTALL_DIR) $(DESTDIR)$(datadir)/bakefile/presets
|
||||
- (cd $(srcdir)/build/bakefiles/wxpresets/presets ; $(INSTALL_DATA) wx.bkl wx_unix.bkl wx_win32.bkl $(DESTDIR)$(datadir)/bakefile/presets)
|
||||
+ (cd $(srcdir)/build/bakefiles/wxpresets/presets ; \
|
||||
+ for i in wx.bkl wx_unix.bkl wx_win32.bkl ; do \
|
||||
+ $(INSTALL_DATA) $$i $(DESTDIR)$(datadir)/bakefile/presets/wx$(WX_RELEASE_NODOT)$${i##wx} ; done)
|
||||
$(INSTALL_DIR) $(DESTDIR)$(libdir)/wx/include/$(TOOLCHAIN_FULLNAME)/wx
|
||||
for f in setup.h $(RCDEFS_H); do \
|
||||
if test ! -d $(DESTDIR)$(libdir)/wx/include/$(TOOLCHAIN_FULLNAME)/wx/`dirname $$f` ; then \
|
||||
@@ -12455,7 +12456,8 @@
|
||||
$(INSTALL_DIR) $(DESTDIR)$(bindir)
|
||||
$(INSTALL_DIR) $(DESTDIR)$(libdir)/wx/config
|
||||
$(INSTALL_PROGRAM) lib/wx/config/$(TOOLCHAIN_FULLNAME) $(DESTDIR)$(libdir)/wx/config
|
||||
- (cd $(DESTDIR)$(bindir) && rm -f wx-config && $(LN_S) $(libdir)/wx/config/$(TOOLCHAIN_FULLNAME) wx-config)
|
||||
+ (cd $(DESTDIR)$(bindir) && rm -f wx-config-$(WX_RELEASE) \
|
||||
+ && $(LN_S) ../lib/wx/config/$(TOOLCHAIN_FULLNAME) wx-config-$(WX_RELEASE))
|
||||
|
||||
locale_install:
|
||||
$(INSTALL_DIR) $(DESTDIR)$(datadir)/locale
|
||||
@@ -12463,7 +12465,8 @@
|
||||
$(INSTALL_DIR) $(DESTDIR)$(datadir)/locale/$$l ; \
|
||||
$(INSTALL_DIR) $(DESTDIR)$(datadir)/locale/$$l/LC_MESSAGES ; \
|
||||
if test -f $(srcdir)/locale/$$l.mo ; then \
|
||||
- $(INSTALL_DATA) $(srcdir)/locale/$$l.mo $(DESTDIR)$(datadir)/locale/$$l/LC_MESSAGES/wxstd.mo ; \
|
||||
+ $(INSTALL_DATA) $(srcdir)/locale/$$l.mo \
|
||||
+ $(DESTDIR)$(datadir)/locale/$$l/LC_MESSAGES/wxstd$(WX_RELEASE_NODOT).mo ; \
|
||||
fi ; \
|
||||
done
|
||||
|
||||
@@ -12480,7 +12483,7 @@
|
||||
$(INSTALL_DIR) $(DESTDIR)$(datadir)/locale/$$l ; \
|
||||
$(INSTALL_DIR) $(DESTDIR)$(datadir)/locale/$$l/LC_MESSAGES ; \
|
||||
if test -f $(srcdir)/locale/msw/$$l.mo ; then \
|
||||
- $(INSTALL_DATA) $(srcdir)/locale/msw/$$l.mo $(DESTDIR)$(datadir)/locale/$$l/LC_MESSAGES/wxmsw.mo ; \
|
||||
+ $(INSTALL_DATA) $(srcdir)/locale/msw/$$l.mo $(DESTDIR)$(datadir)/locale/$$l/LC_MESSAGES/wxmsw$(WX_RELEASE_NODOT).mo ; \
|
||||
fi ; \
|
||||
done
|
||||
|
||||
diff -Naur wxPython-src-2.8.12.1.orig/src/common/intl.cpp wxPython-src-2.8.12.1/src/common/intl.cpp
|
||||
--- wxPython-src-2.8.12.1.orig/src/common/intl.cpp 2014-01-04 22:28:16.675106608 -0500
|
||||
+++ wxPython-src-2.8.12.1/src/common/intl.cpp 2014-01-04 22:47:49.523526232 -0500
|
||||
@@ -1597,7 +1597,7 @@
|
||||
bool bOk = true;
|
||||
if ( bLoadDefault )
|
||||
{
|
||||
- bOk = AddCatalog(wxT("wxstd"));
|
||||
+ bOk = AddCatalog(wxT("wxstd" wxSTRINGIZE(wxMAJOR_VERSION) wxSTRINGIZE(wxMINOR_VERSION)));
|
||||
|
||||
// there may be a catalog with toolkit specific overrides, it is not
|
||||
// an error if this does not exist
|
||||
diff -Naur wxPython-src-2.8.12.1.orig/utils/wxrc/Makefile.in wxPython-src-2.8.12.1/utils/wxrc/Makefile.in
|
||||
--- wxPython-src-2.8.12.1.orig/utils/wxrc/Makefile.in 2014-01-04 22:28:16.335109635 -0500
|
||||
+++ wxPython-src-2.8.12.1/utils/wxrc/Makefile.in 2014-01-04 22:37:34.410068493 -0500
|
||||
@@ -120,7 +120,6 @@
|
||||
@COND_USE_XRC_1@ rm -f $(DESTDIR)$(bindir)/wxrc$(EXEEXT) $(DESTDIR)$(bindir)/wxrc-$(WX_RELEASE)
|
||||
@COND_USE_XRC_1@ $(INSTALL_PROGRAM) wxrc$(EXEEXT) $(DESTDIR)$(bindir)
|
||||
@COND_USE_XRC_1@ mv -f $(DESTDIR)$(bindir)/wxrc$(EXEEXT) $(DESTDIR)$(bindir)/wxrc-$(WX_RELEASE)
|
||||
-@COND_USE_XRC_1@ (cd $(DESTDIR)$(bindir) && $(LN_S) wxrc-$(WX_RELEASE) wxrc$(EXEEXT))
|
||||
|
||||
@COND_USE_XRC_1@uninstall_wxrc:
|
||||
@COND_USE_XRC_1@ rm -f $(DESTDIR)$(bindir)/wxrc$(EXEEXT)
|
||||
@@ -0,0 +1,24 @@
|
||||
diff -Naur wxGTK-2.8.8/configure wxGTK-2.8.8.oden/configure
|
||||
--- wxGTK-2.8.8/configure 2008-06-20 05:07:14.000000000 -0400
|
||||
+++ wxGTK-2.8.8.oden/configure 2008-07-10 08:14:03.000000000 -0400
|
||||
@@ -46574,7 +46574,7 @@
|
||||
EXTRALIBS_MEDIA="$GST_LIBS"
|
||||
EXTRALIBS_ODBC="$ODBC_LINK"
|
||||
if test "$wxUSE_GUI" = "yes"; then
|
||||
- EXTRALIBS_GUI=`echo $GUI_TK_LIBRARY $PNG_LINK $JPEG_LINK $TIFF_LINK $WEBKIT_LINK $EXTRALIBS_HILDON $EXTRALIBS_GNOMEVFS $EXTRALIBS_GNOMEPRINT`
|
||||
+ EXTRALIBS_GUI="`echo $GUI_TK_LIBRARY $PNG_LINK $JPEG_LINK $TIFF_LINK $WEBKIT_LINK $EXTRALIBS_HILDON $EXTRALIBS_GNOMEVFS $EXTRALIBS_GNOMEPRINT` -lX11"
|
||||
fi
|
||||
if test "$wxUSE_OPENGL" = "yes"; then
|
||||
EXTRALIBS_OPENGL="$LDFLAGS_GL $OPENGL_LIBS"
|
||||
diff -Naur wxGTK-2.8.8/configure.in wxGTK-2.8.8.oden/configure.in
|
||||
--- wxGTK-2.8.8/configure.in 2008-06-20 05:07:14.000000000 -0400
|
||||
+++ wxGTK-2.8.8.oden/configure.in 2008-07-10 08:13:44.000000000 -0400
|
||||
@@ -7927,7 +7927,7 @@
|
||||
EXTRALIBS_MEDIA="$GST_LIBS"
|
||||
EXTRALIBS_ODBC="$ODBC_LINK"
|
||||
if test "$wxUSE_GUI" = "yes"; then
|
||||
- EXTRALIBS_GUI=`echo $GUI_TK_LIBRARY $PNG_LINK $JPEG_LINK $TIFF_LINK $WEBKIT_LINK $EXTRALIBS_HILDON $EXTRALIBS_GNOMEVFS $EXTRALIBS_GNOMEPRINT`
|
||||
+ EXTRALIBS_GUI="`echo $GUI_TK_LIBRARY $PNG_LINK $JPEG_LINK $TIFF_LINK $WEBKIT_LINK $EXTRALIBS_HILDON $EXTRALIBS_GNOMEVFS $EXTRALIBS_GNOMEPRINT` -lX11"
|
||||
fi
|
||||
if test "$wxUSE_OPENGL" = "yes"; then
|
||||
EXTRALIBS_OPENGL="$LDFLAGS_GL $OPENGL_LIBS"
|
||||
@@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>wxGTK</Name>
|
||||
<Homepage>http://www.wxwidgets.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>wxWinLL-3</License>
|
||||
<License>GPLv2</License>
|
||||
<License>LGPLv2</License>
|
||||
<License>wxWinFDL-3</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit</Summary>
|
||||
<Description>wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation.</Description>
|
||||
<Archive sha1sum="a8d31ef924ae49e97690646b13d5a2a7be7dda10" type="tarbz2">mirrors://sourceforge/wxwindows/wxGTK-2.8.12.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
<Dependency>gstreamer-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
<Dependency>libXinerama-devel</Dependency>
|
||||
<Dependency>libXxf86vm-devel</Dependency>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">make-abicheck-non-fatal.patch</Patch>
|
||||
<Patch level="1">wxGTK-collision.patch</Patch>
|
||||
<!-- we use external expat, but put it here just in case -->
|
||||
<Patch>wxGTK-2.8.10-CVE-2009-XXXX.diff</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>wxGTK2.8</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libSM</Dependency>
|
||||
<Dependency>libXinerama</Dependency>
|
||||
<Dependency>libXxf86vm</Dependency>
|
||||
<Dependency>libsdl</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency release="current">wxBase</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/wx-config-2.8</Path>
|
||||
<Path fileType="executable">/usr/bin/wxconfig</Path>
|
||||
<Path fileType="library">/usr/lib/libwx_gtk*</Path>
|
||||
<Path fileType="library">/usr/lib/wx/config/gtk2-unicode-release-2.8</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wxGTK2.8-devel</Name>
|
||||
<Summary>wxGTK-devel is the development files for wxGTK</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">wxBase-devel</Dependency>
|
||||
<Dependency release="current">wxGTK</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/lib/wx/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wxBase</Name>
|
||||
<Summary>wxBase is the GUI independent part of wxWidgets</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libunwind</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/wxrc</Path>
|
||||
<Path fileType="executable">/usr/bin/wxrc-2.8</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/bakefile</Path>
|
||||
<Path fileType="locale">/usr/share/locale</Path>
|
||||
<Path fileType="library">/usr/lib/libwx_base*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wxBase-devel</Name>
|
||||
<Summary>wxBase-devel is the development files for wxBase</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">wxGTK</Dependency>
|
||||
<Dependency release="current">wxBase</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>expat-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2015-01-05</Date>
|
||||
<Version>2.8.12</Version>
|
||||
<Comment>use symlink not rename.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-06-18</Date>
|
||||
<Version>2.8.12</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Aydın Demirel</Name>
|
||||
<Email>aydin.demirel@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-28</Date>
|
||||
<Version>2.8.12</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-08-17</Date>
|
||||
<Version>2.8.12</Version>
|
||||
<Comment>Release bump</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2011-05-06</Date>
|
||||
<Version>2.8.12</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>wxGTK</Name>
|
||||
<Summary xml:lang="tr">Birçok platform için ortak C++ arayüz araç takımı olan wxWindows'un GTK+ sürümü</Summary>
|
||||
<Description xml:lang="tr">wxWidgets/GTK2 birçok platform için ortak bir C++ arayüz kitaplığı olan wxWidgets'ın GTK2 sürümüdür. Ağ araçları, HTML gösterimi ve resim işleme gibi en yaygın kullanılan uygulama görevleri için kapsamlı bir sınıf kümesinin yanında tüm genel GUI denetimlerini içerir.</Description>
|
||||
<Description xml:lang="fr">wxWidgets/GTK2 est le port GTK2 de la librairie graphique multi-plateforme wxWidgets, offrant des classes pour les contrôles IHM communs ainsi qu'un ensemble complet de classes d'aides pour les tâches applicatives habituelles, allant du réseau à l'affichage HTML en passant par la manipulation d'images.</Description>
|
||||
<Description xml:lang="es">wxWidgets/GTK2 es la versión portada a GTK2 de la librería GUI wxWidgets cross-plataforma en C++, con clases para todos los controles GUI comunes y tambien un conjunto de clases con ayudantes para la mayoría de las tareas comunes de aplicaciones, desde networking a visualización HTML y manipulación de imagenes.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>wxGTK-devel</Name>
|
||||
<Summary xml:lang="tr">wxGTK araç seti için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wxBase</Name>
|
||||
<Summary xml:lang="tr">wxWidgets/wxGTK için arayüz bağımsız olan kitaplıklar</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wxBase-devel</Name>
|
||||
<Summary xml:lang="tr">wxBase sınıfları için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user