1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- #############################################################
- #
- # mplayer
- #
- #############################################################
- MPLAYER_VERSION:=1.0rc2
- MPLAYER_SOURCE:=MPlayer-$(MPLAYER_VERSION).tar.bz2
- MPLAYER_SITE:=http://www7.mplayerhq.hu/MPlayer/releases
- MPLAYER_DIR:=$(BUILD_DIR)/MPlayer-$(MPLAYER_VERSION)
- MPLAYER_CAT:=$(BZCAT)
- MPLAYER_BINARY:=mplayer
- MPLAYER_TARGET_BINARY:=usr/bin/$(MPLAYER_BINARY)
- ifeq ($(BR2_ENDIAN),"BIG")
- MPLAYER_ENDIAN:=--enable-big-endian
- else
- MPLAYER_ENDIAN:=--disable-big-endian
- endif
- # mplayer unfortunately uses --disable-largefileS, so we cannot use
- # DISABLE_LARGEFILE
- ifeq ($(BR2_LARGEFILE),y)
- MPLAYER_LARGEFILE:=--enable-largefiles
- else
- MPLAYER_LARGEFILE:=--disable-largefiles
- endif
- ifeq ($(BR2_i386),y)
- # This seems to be required to compile some of the inline asm
- MPLAYER_CFLAGS:=-fomit-frame-pointer
- endif
- $(DL_DIR)/$(MPLAYER_SOURCE):
- $(call DOWNLOAD,$(MPLAYER_SITE),$(MPLAYER_SOURCE))
- $(MPLAYER_DIR)/.unpacked: $(DL_DIR)/$(MPLAYER_SOURCE)
- $(MPLAYER_CAT) $(DL_DIR)/$(MPLAYER_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
- toolchain/patch-kernel.sh $(MPLAYER_DIR) package/multimedia/mplayer/ mplayer-$(MPLAYER_VERSION)\*.patch\*
- $(CONFIG_UPDATE) $(MPLAYER_DIR)
- touch $@
- $(MPLAYER_DIR)/.configured: $(MPLAYER_DIR)/.unpacked
- (cd $(MPLAYER_DIR); rm -rf config.cache; \
- $(TARGET_CONFIGURE_OPTS) \
- $(TARGET_CONFIGURE_ARGS) \
- CFLAGS="$(TARGET_CFLAGS) $(MPLAYER_CFLAGS)" \
- LDFLAGS="$(TARGET_LDFLAGS)" \
- ./configure \
- --prefix=/usr \
- --confdir=/etc \
- --target=$(GNU_TARGET_NAME) \
- --host-cc=$(HOSTCC) \
- --cc=$(TARGET_CC) \
- --as=$(TARGET_CROSS)as \
- --with-extraincdir=$(STAGING_DIR)/usr/include \
- --with-extralibdir=$(STAGING_DIR)/lib \
- --charset=UTF-8 \
- --enable-mad \
- --enable-fbdev \
- $(MPLAYER_ENDIAN) \
- $(MPLAYER_LARGEFILE) \
- --enable-cross-compile \
- --disable-ivtv \
- --disable-tv \
- --disable-live \
- --enable-dynamic-plugins \
- )
- touch $@
- $(MPLAYER_DIR)/$(MPLAYER_BINARY): $(MPLAYER_DIR)/.configured
- $(MAKE) -C $(MPLAYER_DIR)
- touch -c $@
- $(TARGET_DIR)/$(MPLAYER_TARGET_BINARY): $(MPLAYER_DIR)/$(MPLAYER_BINARY)
- $(INSTALL) -m 0755 -D $(MPLAYER_DIR)/$(MPLAYER_BINARY) $(TARGET_DIR)/$(MPLAYER_TARGET_BINARY)
- -$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(MPLAYER_TARGET_BINARY)
- touch -c $@
- mplayer: $(if $(BR2_PACKAGE_LIBMAD),libmad) $(if $(BR2_PACKAGE_ALSA_LIB),alsa-lib) $(TARGET_DIR)/$(MPLAYER_TARGET_BINARY)
- mplayer-source: $(DL_DIR)/$(MPLAYER_SOURCE)
- mplayer-unpacked: $(MPLAYER_DIR)/.unpacked
- mplayer-clean:
- rm -f $(TARGET_DIR)/$(MPLAYER_TARGET_BINARY)
- -$(MAKE) -C $(MPLAYER_DIR) clean
- mplayer-dirclean:
- rm -rf $(MPLAYER_DIR)
- #############################################################
- #
- # Toplevel Makefile options
- #
- #############################################################
- ifeq ($(BR2_PACKAGE_MPLAYER),y)
- TARGETS+=mplayer
- endif
|