firefox.paketlendi
This commit is contained in:
parent
0bab088c47
commit
6802115597
|
@ -1,12 +0,0 @@
|
||||||
diff -up firefox-29.0/mozilla-release/config/baseconfig.mk.orig firefox-29.0/mozilla-release/config/baseconfig.mk
|
|
||||||
--- mozilla-release/config/baseconfig.mk.orig 2014-04-22 15:38:52.948165295 +0200
|
|
||||||
+++ mozilla-release/config/baseconfig.mk 2014-04-22 15:42:20.387481673 +0200
|
|
||||||
@@ -4,7 +4,7 @@
|
|
||||||
# whether a normal build is happening or whether the check is running.
|
|
||||||
includedir := $(includedir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
|
|
||||||
idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
|
|
||||||
-installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
|
|
||||||
+installdir = $(libdir)/$(MOZ_APP_NAME)
|
|
||||||
sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION)
|
|
||||||
ifndef TOP_DIST
|
|
||||||
TOP_DIST = dist
|
|
|
@ -7,8 +7,7 @@ name=firefox
|
||||||
version=47.0.1
|
version=47.0.1
|
||||||
release=1
|
release=1
|
||||||
|
|
||||||
source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$version/source/firefox-$version.source.tar.xz
|
source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$version/source/firefox-$version.source.tar.xz)
|
||||||
firefox-install-dir.patch)
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $SRC
|
cd $SRC
|
||||||
|
@ -20,10 +19,6 @@ wget http://download.cdn.mozilla.net/pub/mozilla.org/firefox/releases/$version/
|
||||||
done
|
done
|
||||||
|
|
||||||
cd $name-$version
|
cd $name-$version
|
||||||
patch -Np1 -i ../firefox-install-dir.patch
|
|
||||||
|
|
||||||
CPPFLAGS+=" -O2"
|
|
||||||
LDFLAGS+=" -Wl,-z,now"
|
|
||||||
|
|
||||||
cat > mozconfig << "EOF"
|
cat > mozconfig << "EOF"
|
||||||
ac_add_options --enable-default-toolkit=cairo-gtk3
|
ac_add_options --enable-default-toolkit=cairo-gtk3
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
[ -f /usr/bin/xdg-desktop-menu ] && /usr/bin/xdg-desktop-menu forceupdate
|
||||||
|
[ -f /usr/bin/update-desktop-database ] && /usr/bin/update-desktop-database /usr/share/applications
|
|
@ -0,0 +1,119 @@
|
||||||
|
# Description: LibreOffice is a full-featured office suite. It is largely compatible with Microsoft Office and is descended from OpenOffice.org.
|
||||||
|
# URL: http://www.libreoffice.org
|
||||||
|
# Packagers: alihan-ozturk28@hotmail.com
|
||||||
|
# Depends on: tar apache-ant,openldap,python3,cups,curl,libatomic-ops,gperf,gtk2,gtk3,perl-archive-zip,perl-xml-parser,boost,expat,gstreamer-plugins-base,gstreamer1-plugins-base,libgsf,librsvg,libxml2,libxslt,neon,nss,poppler,postgresql,redland,icu,hunspell,gsfonts,dejavu-ttf,hunspell,p7zip,neon,graphite2,npapi-sdk,clucene,serf,unixodbc
|
||||||
|
|
||||||
|
name=libreoffice
|
||||||
|
version=5.2.0.3
|
||||||
|
release=1
|
||||||
|
|
||||||
|
source=(http://download.documentfoundation.org/libreoffice/src/${version%.*}/$name-$version.tar.xz
|
||||||
|
http://download.documentfoundation.org/libreoffice/src/${version%.*}/$name-dictionaries-$version.tar.xz
|
||||||
|
http://download.documentfoundation.org/libreoffice/src/${version%.*}/$name-help-$version.tar.xz
|
||||||
|
http://download.documentfoundation.org/libreoffice/src/${version%.*}/$name-translations-$version.tar.xz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
unset ACLOCAL
|
||||||
|
export LO_PREFIX=/usr
|
||||||
|
|
||||||
|
cd $SRC
|
||||||
|
tar -xf $name-$version.tar.xz --no-overwrite-dir
|
||||||
|
|
||||||
|
cd $name-$version
|
||||||
|
install -dm755 external/tarballs
|
||||||
|
ln -sv $SRC/$name-dictionaries-$version.tar.xz external/tarballs/
|
||||||
|
ln -sv $SRC/$name-help-$version.tar.xz external/tarballs/
|
||||||
|
ln -sv $SRC/$name-translations-$version.tar.xz external/tarballs/
|
||||||
|
|
||||||
|
|
||||||
|
sed -e "/gzip -f/d" \
|
||||||
|
-e "s|.1.gz|.1|g" \
|
||||||
|
-i bin/distro-install-desktop-integration
|
||||||
|
|
||||||
|
sed -e "/distro-install-file-lists/d" -i Makefile.in
|
||||||
|
|
||||||
|
sed -e "/ustrbuf/a #include <algorithm>" \
|
||||||
|
-i svl/source/misc/gridprinter.cxx
|
||||||
|
|
||||||
|
sed -i "s#isnan#std::&#g" xmloff/source/draw/ximp3dscene.cxx
|
||||||
|
|
||||||
|
# i686 build broken
|
||||||
|
[ "$PKGMK_ARCH" = "i686" ] && sed -i '/CppunitTest_sw_ooxmlimport/d' sw/Module_sw.mk
|
||||||
|
[ "$PKGMK_ARCH" = "i686" ] && sed -i '/CppunitTest_sw_ooxmlexport7/d' sw/Module_sw.mk
|
||||||
|
|
||||||
|
|
||||||
|
chmod -v +x bin/unpack-sources
|
||||||
|
|
||||||
|
./autogen.sh --prefix=$LO_PREFIX \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--with-vendor="NuTyX" \
|
||||||
|
--with-lang="es de fr it pt fi nb nl da sv tr" \
|
||||||
|
--with-help \
|
||||||
|
--with-myspell-dicts \
|
||||||
|
--with-alloc=system \
|
||||||
|
--without-java \
|
||||||
|
--without-system-dicts \
|
||||||
|
--disable-dconf \
|
||||||
|
--disable-odk \
|
||||||
|
--disable-firebird-sdbc \
|
||||||
|
--enable-release-build=yes \
|
||||||
|
--enable-python=system \
|
||||||
|
--with-system-apr \
|
||||||
|
--with-system-boost=yes \
|
||||||
|
--with-system-clucene \
|
||||||
|
--with-system-cairo \
|
||||||
|
--with-system-curl \
|
||||||
|
--with-system-expat \
|
||||||
|
--with-system-graphite \
|
||||||
|
--with-system-harfbuzz \
|
||||||
|
--with-system-icu \
|
||||||
|
--with-system-jpeg \
|
||||||
|
--with-system-lcms2 \
|
||||||
|
--with-system-libatomic_ops \
|
||||||
|
--with-system-libpng \
|
||||||
|
--with-system-libxml \
|
||||||
|
--with-system-neon \
|
||||||
|
--with-system-npapi-headers \
|
||||||
|
--with-system-nss \
|
||||||
|
--with-system-odbc \
|
||||||
|
--with-system-openldap \
|
||||||
|
--with-system-openssl \
|
||||||
|
--with-system-poppler \
|
||||||
|
--with-system-postgresql \
|
||||||
|
--with-system-redland \
|
||||||
|
--with-system-serf \
|
||||||
|
--with-system-zlib \
|
||||||
|
--with-parallelism=$(getconf _NPROCESSORS_ONLN)
|
||||||
|
|
||||||
|
make build
|
||||||
|
make DESTDIR=$PKG distro-pack-install
|
||||||
|
|
||||||
|
install -v -m755 -d $PKG/$LO_PREFIX/share/appdata
|
||||||
|
install -v -m644 sysui/desktop/appstream-appdata/*.xml $PKG/$LO_PREFIX/share/appdata
|
||||||
|
|
||||||
|
# Installation des Dictionnaires
|
||||||
|
chown -cR 0:0 dictionaries/
|
||||||
|
for lang in en fr_FR es de it_IT pt_PT no nl_NL sv_SE da_DK
|
||||||
|
do
|
||||||
|
mkdir -pv $PKG/$LO_PREFIX/lib/libreoffice/share/extensions/dict-$lang
|
||||||
|
cp -R dictionaries/$lang/* $PKG/$LO_PREFIX/lib/libreoffice/share/extensions/dict-$lang
|
||||||
|
done
|
||||||
|
|
||||||
|
# This symlink is necessary for the desktop menu entries
|
||||||
|
ln -sv -f $LO_PREFIX/lib/libreoffice/program/soffice \
|
||||||
|
$PKG/usr/bin/libreoffice
|
||||||
|
|
||||||
|
# Icones
|
||||||
|
for res in 16 32 48 128 256
|
||||||
|
do
|
||||||
|
mkdir -p $PKG/$LO_PREFIX/share/icons/hicolor/${res}x${res}/{apps,mimetypes}
|
||||||
|
cp sysui/desktop/icons/hicolor/${res}x${res}/apps/*.png \
|
||||||
|
$PKG/$LO_PREFIX/share/icons/hicolor/${res}x${res}/apps
|
||||||
|
cp sysui/desktop/icons/hicolor/${res}x${res}/mimetypes/*.png \
|
||||||
|
$PKG/$LO_PREFIX/share/icons/hicolor/${res}x${res}/mimetypes
|
||||||
|
done
|
||||||
|
|
||||||
|
# Nettoyage
|
||||||
|
rm -rf $PKG/gid*
|
||||||
|
rm -rf $PKG/usr/share/man
|
||||||
|
}
|
Loading…
Reference in New Issue