Ejemplo n.º 1
0
def setup():

    shelltools.export("WANT_AUTOCONF", "2.5")
    shelltools.export("WANT_AUTOMAKE", "1.9")

    pisitools.dosed("libtool.m4", "@_LT_VERSION@", get.srcVERSION())

    # Fetching revision info (same as "dateinfo = srcDIR/.mkstamp < srcDIR/ChangeLog")
    revinfo = (coreutils.cat("ChangeLog") | coreutils.grep("\s\$Revision")
               | coreutils.join).split()
    dateinfo = " (%s %s %s)" % (revinfo[1], revinfo[4], revinfo[5])

    shelltools.copy("ltmain.in", "ltmain.shT")
    pisitools.dosed("ltmain.shT", "@VERSION@", get.srcVERSION())
    pisitools.dosed("ltmain.shT", "@PACKAGE@", get.srcNAME())
    pisitools.dosed("ltmain.shT", "@TIMESTAMP@", dateinfo)
    shelltools.move("ltmain.shT", "ltmain.sh")

    #Two steps just to be *really* sure :)
    shelltools.copy("libtool.m4", "acinclude.m4T")
    shelltools.move("acinclude.m4T", "acinclude.m4")

    shelltools.touch("libltdl/acinclude.m4")

    for d in [".", "libltdl"]:
        shelltools.cd(d)
        shelltools.touch("acinclude.m4")
        autotools.aclocal()
        autotools.automake("-c -a")
        autotools.autoconf()

    shelltools.cd("..")

    autotools.configure()
Ejemplo n.º 2
0
def setup():
    shelltools.unlink("missing")

    shelltools.export("WANT_AUTOMAKE", "1.6")

    autotools.automake("--add-missing")
    autotools.configure("--prefix=/ --enable-zlib")
Ejemplo n.º 3
0
def setup():
    shelltools.unlink("missing")
    
    shelltools.export("WANT_AUTOMAKE", "1.6")
    
    autotools.automake("--add-missing")
    autotools.configure("--prefix=/ --enable-zlib")
Ejemplo n.º 4
0
def setup():
    autotools.aclocal()
    autotools.autoheader()
    autotools.automake("--add-missing")
    autotools.autoconf()

    autotools.configure()
Ejemplo n.º 5
0
def setup():
	autotools.aclocal("-I m4")
	libtools.libtoolize("--force --copy")
	autotools.autoheader()
	autotools.automake("--add-missing --copy -Wno-portability")
	autotools.autoconf()
	autotools.rawConfigure("--prefix=/usr --enable-threads --disable-dependency-tracking")
Ejemplo n.º 6
0
def setup():
    autotools.aclocal("-I /usr/share/xfce4/dev-tools/m4macros")
    autotools.autoconf()
    autotools.automake()
    libtools.libtoolize()

    autotools.configure()
Ejemplo n.º 7
0
def setup():
    shelltools.cd(xorgserver)

    libtools.libtoolize("--copy --force")
    autotools.autoreconf()
    autotools.automake()

    autotools.configure("--enable-ipv6 \
                        --enable-xvfb \
                        --enable-xnest \
                        --enable-install-libxf86config \
                        --enable-dri \
                        --enable-xorg \
                        --enable-glx-tls \
                        --disable-xorgcfg \
                        --disable-xprint \
                        --disable-static \
                        --with-pic \
                        --enable-composite \
                        --with-mesa-source=%s/xorg-server-7.2/%s/ \
                        --with-dri-driver-path=/usr/lib/xorg/modules/dri \
                        --with-os-name=\"Pardus\" \
                        --with-os-vendor=\"TÜBİTAK, UEKAE\" \
                        --sysconfdir=/etc/X11 \
                        --localstatedir=/var \
                        --with-default-font-path=/usr/share/fonts/misc,/usr/share/fonts/dejavu,/usr/share/fonts/100dpi,/usr/share/fonts/75dpi,/usr/share/fonts/TTF,/usr/share/fonts/Type1"
                        % (get.workDIR(), mesa))
Ejemplo n.º 8
0
def setup():
    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.autoheader()
    autotools.autoconf()
    autotools.automake("-ac")
    autotools.configure("--disable-static")
Ejemplo n.º 9
0
def setup():
    # Fix all linkage problems :(((
    shelltools.export("CC", "gcc")

    # Change LT_VERSION to our version
    pisitools.dosed("libtool.m4", "@_LT_VERSION@", get.srcVERSION())

    # Fetching revision info (same as "dateinfo = srcDIR/.mkstamp < srcDIR/ChangeLog")
    revinfo = (coreutils.cat("ChangeLog") | coreutils.grep("\s\$Revision") | coreutils.join).split()
    dateinfo = " (%s %s %s)" % (revinfo[1], revinfo[4], revinfo[5])

    shelltools.copy("ltmain.in", "ltmain.shT")
    pisitools.dosed("ltmain.shT", "@VERSION@", get.srcVERSION())
    pisitools.dosed("ltmain.shT", "@PACKAGE@", get.srcNAME())
    pisitools.dosed("ltmain.shT", "@TIMESTAMP@", dateinfo)
    shelltools.move("ltmain.shT", "ltmain.sh")

    # Now let's run all our autotool stuff so that files we patch
    # below don't get regenerated on us later
    # Two steps just to be *really* sure :)
    shelltools.copy("libtool.m4", "acinclude.m4T")
    shelltools.move("acinclude.m4T", "acinclude.m4")

    for d in [".", "libltdl"]:
        shelltools.cd(d)
        shelltools.touch("acinclude.m4")
        autotools.aclocal()
        autotools.automake("-c -a")
        autotools.autoconf()

    shelltools.cd("../")

    autotools.configure("--enable-static=no")
Ejemplo n.º 10
0
def setup():
    autotools.aclocal()
    autotools.autoconf()
    autotools.automake()
    libtools.libtoolize("--copy --force")

    autotools.configure("--enable-largefile \
                         --enable-glib2 \
                         --enable-gconf \
                         --enable-oss \
                         --enable-alsa \
                         --enable-avahi \
                         --enable-bluez \
                         --enable-hal \
                         --enable-tcpwrap \
                         --enable-jack \
                         --enable-lirc \
                         --with-caps \
                         --with-x \
                         --disable-asyncns \
                         --disable-solaris \
                         --disable-ltdl-install \
                         --disable-static \
                         --disable-rpath \
                         --localstatedir=/var \
                         --with-system-user=pulse \
                         --with-system-group=pulse \
                         --with-realtime-group=pulse-rt \
                         --with-access-group=pulse-access")
Ejemplo n.º 11
0
def setup():
    autotools.autoreconf()
    autotools.automake()
    libtools.libtoolize('--copy --force')
    pisitools.dosed("doc/mkcert.sh", "dovecot-openssl.cnf",
                    "/etc/dovecot/ssl/openssl.cnf")
    shelltools.export(
        "CFLAGS", "%s  -D_REENTRANT -D_GNU_SOURCE  -ldb-4.6" % get.CFLAGS())
    shelltools.export("CPPFLAGS", "%s  -ldb-4.6" % get.CXXFLAGS())
    shelltools.export("LDFLAGS", "%s -Wl,--as-needed" % get.LDFLAGS())
    autotools.configure("--sysconfdir=/etc/dovecot \
                         --localstatedir=/var \
                         --enable-ipv6 \
                         --with-ioloop=best \
                         --with-poll=best \
                         --with-db \
                         --with-mysql \
                         --with-pgsql \
                         --with-pop3d \
                         --with-ssl=openssl \
                         --with-ssldir=/etc/ssl \
                         --with-pam \
                         --with-gssapi \
                         --with-ldap \
                         --disable-static")
Ejemplo n.º 12
0
def setup():
    autotools.aclocal()
    autotools.autoconf()
    autotools.automake()
    libtools.libtoolize("--copy --force")

    autotools.configure("--enable-largefile \
                         --enable-glib2 \
                         --enable-gconf \
                         --enable-oss \
                         --enable-alsa \
                         --enable-avahi \
                         --enable-bluez \
                         --enable-hal \
                         --enable-tcpwrap \
                         --enable-jack \
                         --enable-lirc \
                         --with-caps \
                         --with-x \
                         --disable-asyncns \
                         --disable-solaris \
                         --disable-ltdl-install \
                         --disable-static \
                         --disable-rpath \
                         --localstatedir=/var \
                         --with-system-user=pulse \
                         --with-system-group=pulse \
                         --with-realtime-group=pulse-rt \
                         --with-access-group=pulse-access")
Ejemplo n.º 13
0
def setup():
    autotools.aclocal()
    autotools.autoheader()
    autotools.automake("--add-missing")
    autotools.autoconf()

    autotools.configure()
Ejemplo n.º 14
0
def setup():
    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.autoheader()
    autotools.autoconf()
    autotools.automake("-ac")
    autotools.configure("--disable-static")
Ejemplo n.º 15
0
def setup():
    shelltools.system("sed -i -e '/Empathy/d' Makefile.am")
    autotools.automake()
    autotools.configure("--enable-debug=no \
                        --enable-release=yes \
                        --disable-empathy \
                        --disable-flickr")
Ejemplo n.º 16
0
def setup():
    libtools.libtoolize("--force --copy")
    autotools.aclocal()
    autotools.autoconf()
    autotools.automake()

    autotools.configure()
Ejemplo n.º 17
0
def setup():
    autotools.automake()
    libtools.libtoolize()
    autotools.configure("--with-libwrap \
                         --enable-alsa \
                         --enable-ipv6 \
                         --sysconfdir=/etc/esd")
Ejemplo n.º 18
0
def setup():
    autotools.automake()
    autotools.configure("--disable-static \
                         --enable-python \
                         --with-xft2 \
                         --with-pangox")
    pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
Ejemplo n.º 19
0
def setup():

    shelltools.export("WANT_AUTOCONF", "2.5")
    shelltools.export("WANT_AUTOMAKE", "1.9")

    pisitools.dosed("libtool.m4", "@_LT_VERSION@", get.srcVERSION())

    # Fetching revision info (same as "dateinfo = srcDIR/.mkstamp < srcDIR/ChangeLog") 
    revinfo = (coreutils.cat("ChangeLog") | coreutils.grep("\s\$Revision") | coreutils.join).split()
    dateinfo = " (%s %s %s)" % (revinfo[1], revinfo[4], revinfo[5])

    shelltools.copy("ltmain.in", "ltmain.shT")
    pisitools.dosed("ltmain.shT", "@VERSION@", get.srcVERSION())
    pisitools.dosed("ltmain.shT", "@PACKAGE@", get.srcNAME())
    pisitools.dosed("ltmain.shT", "@TIMESTAMP@", dateinfo)
    shelltools.move("ltmain.shT", "ltmain.sh")

    #Two steps just to be *really* sure :)
    shelltools.copy("libtool.m4", "acinclude.m4T")
    shelltools.move("acinclude.m4T", "acinclude.m4")

    shelltools.touch("libltdl/acinclude.m4")

    for d in [".", "libltdl"]:
        shelltools.cd(d)
        shelltools.touch("acinclude.m4")
        autotools.aclocal()
        autotools.automake("-c -a")
        autotools.autoconf()

    shelltools.cd("..")

    autotools.configure()
Ejemplo n.º 20
0
def setup():
    autotools.automake()
    autotools.configure("--disable-static \
                         --enable-python \
                         --with-xft2 \
                         --with-pangox")
    pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
Ejemplo n.º 21
0
def setup():
    shelltools.cd(xorgserver)

    libtools.libtoolize("--copy --force")
    autotools.autoreconf()
    autotools.automake()

    autotools.configure("--enable-ipv6 \
                        --enable-xvfb \
                        --enable-xnest \
                        --enable-install-libxf86config \
                        --enable-dri \
                        --enable-xorg \
                        --enable-glx-tls \
                        --disable-xorgcfg \
                        --disable-xprint \
                        --disable-static \
                        --with-pic \
                        --enable-composite \
                        --with-mesa-source=%s/xorg-server-7.2/%s/ \
                        --with-dri-driver-path=/usr/lib/xorg/modules/dri \
                        --with-os-name=\"Pardus\" \
                        --with-os-vendor=\"TÜBİTAK, UEKAE\" \
                        --sysconfdir=/etc/X11 \
                        --localstatedir=/var \
                        --with-default-font-path=/usr/share/fonts/misc,/usr/share/fonts/dejavu,/usr/share/fonts/100dpi,/usr/share/fonts/75dpi,/usr/share/fonts/TTF,/usr/share/fonts/Type1" % (get.workDIR(), mesa))
Ejemplo n.º 22
0
def setup():
    autotools.aclocal("-I m4")
    libtools.libtoolize("--force --copy")
    autotools.autoheader()
    autotools.automake("--add-missing --copy -Wno-portability")
    autotools.autoconf()
    autotools.rawConfigure("--prefix=/usr --enable-threads")
Ejemplo n.º 23
0
def setup():
    # Fix all linkage problems :(((
    shelltools.export("CC", "gcc")

    # Change LT_VERSION to our version
    pisitools.dosed("libtool.m4", "@_LT_VERSION@", get.srcVERSION())

    # Fetching revision info (same as "dateinfo = srcDIR/.mkstamp < srcDIR/ChangeLog")
    revinfo = (coreutils.cat("ChangeLog") | coreutils.grep("\s\$Revision")
               | coreutils.join).split()
    dateinfo = " (%s %s %s)" % (revinfo[1], revinfo[4], revinfo[5])

    shelltools.copy("ltmain.in", "ltmain.shT")
    pisitools.dosed("ltmain.shT", "@VERSION@", get.srcVERSION())
    pisitools.dosed("ltmain.shT", "@PACKAGE@", get.srcNAME())
    pisitools.dosed("ltmain.shT", "@TIMESTAMP@", dateinfo)
    shelltools.move("ltmain.shT", "ltmain.sh")

    # Now let's run all our autotool stuff so that files we patch
    # below don't get regenerated on us later
    # Two steps just to be *really* sure :)
    shelltools.copy("libtool.m4", "acinclude.m4T")
    shelltools.move("acinclude.m4T", "acinclude.m4")

    for d in [".", "libltdl"]:
        shelltools.cd(d)
        shelltools.touch("acinclude.m4")
        autotools.aclocal()
        autotools.automake("-c -a")
        autotools.autoconf()

    shelltools.cd("../")

    autotools.configure("--enable-static=no")
Ejemplo n.º 24
0
def setup():
    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.autoconf()
    autotools.autoheader()
    autotools.automake("--copy --foreign --add-missing")

    autotools.configure()
Ejemplo n.º 25
0
def setup():
    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.autoconf()
    autotools.automake()

    autotools.configure("--enable-ps \
                         --enable-pdf")
Ejemplo n.º 26
0
def setup():
    shelltools.system("NOCONFIGURE=1 ./autogen.sh")
    autotools.autoreconf("-vfi")
    autotools.automake("-afc")
    libtools.libtoolize("--automake")
    autotools.aclocal()
    autotools.autoconf()
    autotools.configure("--disable-static --enable-shared")
Ejemplo n.º 27
0
def setup():
    libtools.libtoolize("--force")
    autotools.aclocal()
    autotools.automake("--add-missing --copy")
    autotools.autoconf()

    autotools.configure("--disable-static \
                         --with-pf_packet=yes")
Ejemplo n.º 28
0
def setup():
    autotools.aclocal()
    autotools.autoconf()
    autotools.automake()
    libtools.libtoolize("--copy --force")
    autotools.configure("--disable-static \
                         --disable-gtk-doc \
                         --enable-nautilus-extension=no")
Ejemplo n.º 29
0
def setup():
    # don't log so much...
    pisitools.dosed("Util/Logger.cs", "defaultLevel = LogLevel.Debug", "defaultLevel = LogLevel.Info/")

    autotools.autoreconf("-f -i")
    autotools.automake()

    autotools.configure("--enable-python --enable-libbeagle --disable-gui")
Ejemplo n.º 30
0
def setup():
    autotools.aclocal("-I mk/autoconf")
    autotools.automake()
    autotools.autoconf()

    autotools.configure("--disable-static\
                         --disable-rpath \
                         --enable-nls")
Ejemplo n.º 31
0
def setup():
    libtools.libtoolize("--force --copy")
    autotools.aclocal()
    autotools.autoheader()
    autotools.autoconf()
    autotools.automake("--add-missing --copy --gnu")
                        
    autotools.configure("--sbindir=/sbin --libdir=/lib")
Ejemplo n.º 32
0
def setup():
    libtools.libtoolize("--force --copy")
    autotools.aclocal()
    autotools.autoheader()
    autotools.autoconf()
    autotools.automake("--add-missing --copy --gnu")

    autotools.configure("--sbindir=/sbin --libdir=/lib")
Ejemplo n.º 33
0
def setup():
    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.autoconf()
    autotools.automake()

    autotools.configure("--enable-ps \
                         --enable-pdf")
Ejemplo n.º 34
0
def setup():
    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.automake("--add-missing")
    autotools.autoheader()
    autotools.autoconf()

    autotools.configure()
Ejemplo n.º 35
0
def setup():
    autotools.automake()
    autotools.autoconf()

    autotools.configure("--disable-mp3x \
                         --disable-static \
                         --enable-shared \
                         --enable-mp3rtp \
                         --enable-nasm")
Ejemplo n.º 36
0
def setup():
    for it in ["Project/GNU/CLI",  "../GUI"]:
        configure_args = " --with-wxwidgets --with-wx-gui" if it.endswith('GUI') else ""
        shelltools.cd(it)
        libtools.libtoolize("--automake")
        autotools.aclocal()
        autotools.automake("-afc")
        autotools.autoconf()
        autotools.configure("--disable-static%s" % configure_args)
Ejemplo n.º 37
0
def setup():
    autotools.automake()
    autotools.autoconf()

    autotools.configure("--disable-mp3x \
                         --disable-static \
                         --enable-shared \
                         --enable-mp3rtp \
                         --enable-nasm")
Ejemplo n.º 38
0
def setup():
    # don't log so much...
    pisitools.dosed("Util/Logger.cs", "defaultLevel = LogLevel.Debug",
                    "defaultLevel = LogLevel.Info/")

    autotools.autoreconf("-f -i")
    autotools.automake()

    autotools.configure("--enable-python --enable-libbeagle --disable-gui")
Ejemplo n.º 39
0
def setup():
    shelltools.export("WANT_AUTOCONF", "2.5")
    shelltools.export("WANT_AUTOMAKE", "1.7")

    autotools.aclocal("-I m4")
    autotools.autoheader()
    autotools.automake("-afc")
    autotools.autoconf()

    libtools.libtoolize("--copy --force")

    flags = "-mcpu=i686 \
             -O2 \
             -pipe \
             -frename-registers \
             -fomit-frame-pointer \
             -mno-sse \
             -ffunction-sections"

    shelltools.export("CFLAGS", "%s %s" % (get.CFLAGS(), flags))
    shelltools.export("CXXFLAGS", "%s %s" % (get.CXXFLAGS(), flags))

    autotools.configure(
        "--enable-nls \
                         --disable-gnome \
                         --disable-altivec \
                         --disable-speex \
                         --enable-ipv6 \
                         --enable-samba \
                         --enable-mng \
                         --enable-png \
                         --enable-faad \
                         --enable-flac \
                         --with-ogg \
                         --with-vorbis \
                         --with-x \
                         --enable-xinerama \
                         --disable-vidix \
                         --disable-dxr3 \
                         --enable-directfb \
                         --enable-fb \
                         --enable-opengl \
                         --enable-aalib \
                         --enable-caca \
                         --enable-sdl \
                         --enable-libmad --with-external-libmad \
                         --disable-oss \
                         --disable-vcd \
                         --enable-alsa \
                         --enable-arts \
                         --disable-esd \
                         --with-ffmpeg \
                         --with-xv-path=/usr/lib \
                         --disable-optimizations \
                         --disable-optimizations \
                         --disable-dependency-tracking"
    )
Ejemplo n.º 40
0
def setup():
    autotools.aclocal()
    libtools.libtoolize("--copy --force")
    autotools.automake("-a")
    autotools.autoconf()

    autotools.configure("--with-mylibgd \
                         --disable-dependency-tracking \
                         --without-tcl \
                         --without-tk")
Ejemplo n.º 41
0
def setup():
    shelltools.cd("MediaInfoLib/Project/GNU/Library")
    libtools.libtoolize("--automake")
    autotools.aclocal()
    autotools.automake("-afc")
    autotools.autoconf()
    autotools.configure("--enable-shared \
                         --disable-static \
                         --with-libcurl \
                         --with-libmms")
Ejemplo n.º 42
0
def setup():
    # Fix underlinking problem in python bindings
    pisitools.dosed("bindings/python/Makefile.am", "^_gpod_la_LDFLAGS = (.*)$", "_gpod_la_LDFLAGS = `python-config --libs` \\1")

    autotools.autoreconf("-fi")
    libtools.libtoolize("--copy --force")
    autotools.automake()
    autotools.configure("--disable-static \
                         --disable-gtk-doc \
                         --with-python=/usr/bin/python")
Ejemplo n.º 43
0
def setup():
    autotools.aclocal()
    libtools.libtoolize("--copy --force")
    autotools.automake("-a")
    autotools.autoconf()

    autotools.configure("--with-mylibgd \
                         --disable-dependency-tracking \
                         --without-tcl \
                         --without-tk")
Ejemplo n.º 44
0
def setup():
    shelltools.export("WANT_AUTOMAKE", "1.8")
    shelltools.export("WANT_AUTOCONF", "2.5")

    libtools.libtoolize("--force --copy")
    autotools.aclocal()
    autotools.automake("-a -f -c")
    autotools.autoconf()

    autotools.configure("--with-pic")
Ejemplo n.º 45
0
def setup():
    shelltools.cd("MediaInfoLib/Project/GNU/Library")
    libtools.libtoolize("--automake")
    autotools.aclocal()
    autotools.automake("-afc")
    autotools.autoconf()
    autotools.configure("--enable-shared \
                         --disable-static \
                         --with-libcurl \
                         --with-libmms")
Ejemplo n.º 46
0
def setup():
    shelltools.export("WANT_AUTOMAKE", "1.8")
    shelltools.export("WANT_AUTOCONF", "2.5")

    libtools.libtoolize("--force --copy")
    autotools.aclocal()
    autotools.automake("-a -f -c")
    autotools.autoconf()

    autotools.configure("--with-pic")
Ejemplo n.º 47
0
def setup():
    shelltools.export("WANT_AUTOCONF", "2.5")

    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.automake("--add-missing")
    autotools.autoheader()
    autotools.autoconf()

    autotools.configure()
Ejemplo n.º 48
0
def setup():
    # don't log so much...
    pisitools.dosed("Util/Logger.cs", "defaultLevel = LogLevel.Debug", "defaultLevel = LogLevel.Info/")

    shelltools.export("MONO_SHARED_DIR", get.workDIR())

    autotools.autoreconf("-f -i")
    autotools.automake()

    autotools.configure("--enable-python --enable-libbeagle --disable-gui --disable-static")
Ejemplo n.º 49
0
def setup():
    shelltools.export("WANT_AUTOCONF", "2.5")

    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.automake("--add-missing")
    autotools.autoheader()
    autotools.autoconf()

    autotools.configure()
Ejemplo n.º 50
0
def setup():
    shelltools.export("WANT_AUTOCONF", "2.5")
    shelltools.export("WANT_AUTOMAKE", "1.7")

    autotools.aclocal("-I m4")
    autotools.autoheader()
    autotools.automake("-afc")
    autotools.autoconf()

    libtools.libtoolize("--copy --force")

    flags = "-mcpu=i686 \
             -O2 \
             -pipe \
             -frename-registers \
             -fomit-frame-pointer \
             -mno-sse \
             -ffunction-sections"

    shelltools.export("CFLAGS", "%s %s" % (get.CFLAGS(), flags))
    shelltools.export("CXXFLAGS", "%s %s" % (get.CXXFLAGS(), flags))

    autotools.configure("--enable-nls \
                         --disable-gnome \
                         --disable-altivec \
                         --disable-speex \
                         --enable-ipv6 \
                         --enable-samba \
                         --enable-mng \
                         --enable-png \
                         --enable-faad \
                         --enable-flac \
                         --with-ogg \
                         --with-vorbis \
                         --with-x \
                         --enable-xinerama \
                         --disable-vidix \
                         --disable-dxr3 \
                         --enable-directfb \
                         --enable-fb \
                         --enable-opengl \
                         --enable-aalib \
                         --enable-caca \
                         --enable-sdl \
                         --enable-libmad --with-external-libmad \
                         --disable-oss \
                         --disable-vcd \
                         --enable-alsa \
                         --enable-arts \
                         --disable-esd \
                         --with-ffmpeg \
                         --with-xv-path=/usr/lib \
                         --disable-optimizations \
                         --disable-optimizations \
                         --disable-dependency-tracking")
Ejemplo n.º 51
0
def setup():
    autotools.aclocal()
    libtools.libtoolize("--copy --force")
    autotools.automake()
    autotools.autoconf()

    autotools.configure("--with-readline \
                         --enable-nls \
                         --disable-debug \
                         --disable-all-static \
                         --disable-Werror")
Ejemplo n.º 52
0
def setup():
    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.autoheader()
    autotools.automake("--add-missing --copy")
    autotools.autoconf()

    shelltools.system("glib-gettextize --force --copy")
    shelltools.system("intltoolize --copy --force --automake")

    autotools.configure()
Ejemplo n.º 53
0
def setup():
    autotools.autoconf()
    autotools.automake()

    autotools.configure("--disable-gtk-doc \
                         --with-jpeg \
                         --with-libjpeg \
                         --with-libtiff \
                         --with-png \
                         --with-gdktarget=x11 \
                         --with-xinput")
Ejemplo n.º 54
0
def setup():
    libtools.libtoolize("--copy --force")
    autotools.aclocal()
    autotools.autoheader()
    autotools.automake("--add-missing --copy")
    autotools.autoconf()

    shelltools.system("glib-gettextize --force --copy")
    shelltools.system("intltoolize --copy --force --automake")

    autotools.configure()
Ejemplo n.º 55
0
def setup():
    autotools.aclocal("-I m4")
    libtools.libtoolize()
    autotools.autoheader()
    autotools.automake("--add-missing")
    autotools.autoconf()
    autotools.configure("--disable-static")

    # Remove rpath
    pisitools.dosed("libtool", "^hardcode_libdir_flag_spec=.*", 'hardcode_libdir_flag_spec=""')
    pisitools.dosed("libtool", "^runpath_var=LD_RUN_PATH", "runpath_var=DIE_RPATH_DIE")
Ejemplo n.º 56
0
def setup():
    autotools.aclocal()
    libtools.libtoolize("--copy --force")
    autotools.automake()
    autotools.autoconf()

    autotools.configure("--with-readline \
                         --enable-nls \
                         --disable-debug \
                         --disable-all-static \
                         --disable-Werror")