12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/python
- # -*- 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 libtools
- from pisi.actionsapi import get
- def setup():
- shelltools.export("CFLAGS", "%s -fcommon -fno-strict-aliasing -fno-force-addr -ffunction-sections -frename-registers -fomit-frame-pointer" % get.CFLAGS())
- shelltools.export("CXXFLAGS", "%s -fno-strict-aliasing -fno-force-addr -ffunction-sections -frename-registers -fomit-frame-pointer" % get.CXXFLAGS())
- shelltools.export("CCASFLAGS","-Wa,--noexecstack")
- # to get rid of cvs
- shelltools.export("AUTOPOINT", "true")
- #libtools.libtoolize("--force --copy")
- autotools.autoreconf("-vfi")
- autotools.configure(" \
- --prefix=/usr \
- --mandir=/usr/share/man \
- --disable-altivec \
- --disable-artstest \
- --disable-dxr3 \
- --disable-vidix \
- --disable-vcd \
- --disable-mpcdec \
- --enable-aalib \
- --enable-asf \
- --enable-directfb \
- --enable-faad \
- --enable-fb \
- --enable-ffmpeg-popular-codecs \
- --enable-ffmpeg-uncommon-codecs \
- --enable-ipv6 \
- --enable-mmap \
- --enable-modplug \
- --enable-opengl \
- --disable-vaapi \
- --disable-vdpau \
- --disable-samba \
- --enable-xinerama \
- --with-external-a52dec \
- --with-external-ffmpeg \
- --with-external-libmad \
- --with-libaom \
- --with-dav1d \
- --with-vorbis \
- --with-x \
- --with-xcb \
- --with-xv-path=/usr/lib \
- --with-freetype \
- --with-fontconfig \
- --without-esound \
- --without-imagemagick \
- --without-jack \
- --disable-gdkpixbuf \
- --disable-nls \
- --disable-rpath \
- --disable-syncfb \
- --disable-optimizations \
- --disable-dependency-tracking")
- # the world is not ready for this code, see bug #8267
- # --enable-antialiasing \
- #--enable-mng \
- #--with-wavpack \
- #--with-internal-vcdlibs \
- pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.removeDir("/usr/share/doc/xine-lib")
- pisitools.dohtml("doc/faq/faq.html", "doc/hackersguide/*.html", "doc/hackersguide/*.png")
- pisitools.dodoc("AUTHORS", "ChangeLog", "README", "TODO", "doc/README*", "doc/faq/faq.txt")
|