diff --git a/mplayer.be0 b/mplayer.be0 index e9478d88b..334793022 100755 --- a/mplayer.be0 +++ b/mplayer.be0 @@ -1,8 +1,10 @@ #!/usr/bin/env beesh -# BEE_VERSION mplayer-1.3.0-1 +# BEE_VERSION mplayer-1.3.0-2 -SRCURL[0]="https://www.mplayerhq.hu/MPlayer/releases/MPlayer-${PKGVERSION}.tar.xz" +# dead: SRCURL[0]="https://www.mplayerhq.hu/MPlayer/releases/MPlayer-${PKGVERSION}.tar.xz" +# cd /src/mariux; ./md5repo.sh download/MPlayer-1.3.0.tar.xz +SRCURL[0]="/src/mariux/md5repo/e8a4d77ad4f509e81dd5e13b51636c1d/MPlayer-1.3.0.tar.xz" # PATCHURL+=() @@ -30,10 +32,25 @@ mee_configure() { --datadir=${DATAROOTDIR} \ --mandir=${MANDIR} \ --confdir=/etc/mplayer \ - --enable-dynamic-plugins \ - --enable-menu \ - --enable-gui \ - --enable-runtime-cpudetection + --disable-arts \ + --disable-ass \ + --disable-cdparanoia \ + --disable-esd \ + --disable-gui \ + --disable-libdv \ + --disable-liblzo \ + --disable-mga \ + --disable-musepack \ + --disable-openal \ + --disable-smb \ + --disable-speex \ + --enable-dynamic-plugins \ + --enable-menu \ + --enable-radio \ + --enable-radio-capture \ + --enable-runtime-cpudetection \ + --enable-xvmc \ + --disable-libschroedinger-lavc } mee_build() { @@ -45,4 +62,7 @@ mee_install() { start_cmd install -m644 etc/codecs.conf ${D}/etc/mplayer } -## by default this may be 'make install DESTDIR="${D}"' + +mee_install_post() { + rm -vfv ${D}/${MANDIR}/zh_CN/ +} \ No newline at end of file diff --git a/schroedinger-1.0.11-0.bee b/schroedinger-1.0.11-0.bee deleted file mode 100755 index 135732cc2..000000000 --- a/schroedinger-1.0.11-0.bee +++ /dev/null @@ -1,83 +0,0 @@ -#!/usr/bin/env beesh - -## this file was created by bee init and should be executed to build a -## bee-package. (Additional hints are located at the end of this file.) - -############################################################################### -## The source URL(s) define the location of the sources that will be -## downloaded. Version variables may be used to simplify reuse of this bee-file. - -SRCURL[0]="http://diracvideo.org/download/schroedinger/schroedinger-${PKGVERSION}.tar.gz" - -############################################################################### -## Add URLs/pathes to patch files to the PATCHURL array. -## The sources will be patched in the order of the array. - -# PATCHURL+=() - -############################################################################### -## Add filename patterns to the EXCLUDE array of files that should not -## be added to you package but may be present in the image directory. - -# EXCLUDE+=() - -############################################################################### -## Uncomment the next statement, if the software may not be able to be build -## outside the source directory and need to be build inside the source -## directory. - -build_in_sourcedir - -############################################################################### -## bee cannot detect buildtypes specified in subdirectories. -## Sometimes packages "hide" the real sources in a subdirectory named -## 'src' or 'cmake' or .. -## use 'sourcesubdir_append' to specify this directory if known. - -# sourcesubdir_append src - - -############################################################################### -## Change the default (auto-detected) steps to -## extract, patch, configure/setup, build and install the software. -## Make sure the mee_install function does install everything to the -## image directory "${D}" - -#mee_extract() { -# bee_extract "${@}" -#} - -#mee_patch() { -# bee_patch "${@}" -#} - -#mee_configure() { -# bee_configure -#} - -#mee_build() { -# bee_build -#} - -#mee_install() { -# bee_install -#} -## by default this may be 'make install DESTDIR="${D}"' - -############################################################################### -## -## Additional hints: -## -## The name of this bee-file should follow the following naming convention: -## pkgname-pkgversion-pkgrevision.bee -## -## You may remove all comments as long as SRCURL[0]="" is set. -## -## Everything in this file will be executed in a bash environment. -## -## Build the package by executing -## './pkg-version-N.bee' or -## 'beesh ./pkg-version-N.bee' -## -## see http://beezinga.org/ -## diff --git a/scripts/fix-#1576.sh b/scripts/fix-#1576.sh new file mode 100755 index 000000000..435d72e05 --- /dev/null +++ b/scripts/fix-#1576.sh @@ -0,0 +1,5 @@ +#!/bin/bash -x +# https://github.molgen.mpg.de/mariux64/bee-files/issues/1576 +bee remove schroedinger-1.0.11-0.x86_64 +bee update vlc-3.0.8-2 +bee update mplayer-1.3.0-2 diff --git a/vlc.be0 b/vlc.be0 index 5eb4a4615..3464c2dab 100755 --- a/vlc.be0 +++ b/vlc.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION vlc-3.0.8-1 +# BEE_VERSION vlc-3.0.8-2 SRCURL[0]="https://download.videolan.org/pub/videolan/vlc/${PKGVERSION}/vlc-${PKGVERSION}.tar.xz" @@ -23,6 +23,7 @@ mee_patch() { mee_configure() { BUILDCC=gcc \ bee_configure \ + --disable-schroedinger \ --disable-nls } @@ -35,4 +36,3 @@ mee_install() { bee_install rm -vr ${D}/usr/share/kde4 } -## by default this may be 'make install DESTDIR="${D}"'