Changeset 3c67532fc931b1feddf628264e1edc8ad01a8ee6

Show
Ignore:
Timestamp:
06/27/08 23:29:30 (2 months ago)
Author:
Pavlov Konstantin <thresh@videolan.org>
git-committer:
Pavlov Konstantin <thresh@videolan.org> 1214602170 +0400
git-parent:

[0e91a89b9bdfc674f97f897916970b43b99fee9d]

git-author:
Pavlov Konstantin <thresh@videolan.org> 1214253108 +0400
Message:

Contrib: add libschroedinger. Add some patches that would be dropped on next
libschroedinger release.
Contrib: fix fluidsynth distclean target.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/contrib/src/Makefile

    rdd39709 r3c67532  
    24122412CLEAN_FILE += .fluid 
    24132413CLEAN_PKG += fluidsynth 
    2414 DISTCLEAN_PKG += fluidsynth-$(NCURSES_VERSION).tar.gz 
    2415  
     2414DISTCLEAN_PKG += fluidsynth-$(FLUID_VERSION).tar.gz 
     2415 
     2416# *************************************************************************** 
     2417# liboil 
     2418# *************************************************************************** 
     2419 
     2420liboil-$(OIL_VERSION).tar.gz: 
     2421    $(WGET) $(OIL_URL) 
     2422 
     2423liboil: liboil-$(OIL_VERSION).tar.gz 
     2424    $(EXTRACT_GZ) 
     2425 
     2426.liboil: liboil 
     2427    (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install) 
     2428    touch $@ 
     2429 
     2430CLEAN_FILE += .liboil 
     2431CLEAN_PKG += liboil 
     2432DISTCLEAN_PKG += liboil-$(OIL_VERSION).tar.gz 
     2433 
     2434# *************************************************************************** 
     2435# Schroedinger library 
     2436# *************************************************************************** 
     2437 
     2438schroedinger-$(SCHROED_VERSION).tar.gz: 
     2439    $(WGET) $(SCHROED_URL) 
     2440 
     2441schroedinger: schroedinger-$(SCHROED_VERSION).tar.gz 
     2442    $(EXTRACT_GZ) 
     2443    patch -d schroedinger -p1 < Patches/libschroedinger-fix-build-OSX.patch 
     2444    patch -d schroedinger -p1 < Patches/libschroedinger-fix-build-OSX-test.patch 
     2445 
     2446.schroedinger: .liboil schroedinger 
     2447    (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install) 
     2448    touch $@ 
     2449 
     2450CLEAN_FILE += .schroedinger 
     2451CLEAN_PKG += schroedinger 
     2452DISTCLEAN_PKG += schroedinger-$(SCHROED_VERSION).tar.gz 
    24162453 
    24172454# *************************************************************************** 
  • extras/contrib/src/packages.mak

    rdd39709 r3c67532  
    225225YASM_URL=$(VIDEOLAN)/testing/contrib/yasm-$(YASM_VERSION).tar.gz 
    226226#YASM_URL=http://www.tortall.net/projects/yasm/releases/yasm-$(YASM_VERSION).tar.gz 
     227OIL_VERSION=0.3.14 
     228OIL_URL=http://liboil.freedesktop.org/download/liboil-$(OIL_VERSION).tar.gz 
     229SCHROED_VERSION=1.0.3 
     230SCHROED_URL=http://www.diracvideo.org/download/schroedinger/schroedinger-$(SCHROED_VERSION).tar.gz