Merge branch '3.0' into 3.1
This commit is contained in:
commit
fb1241693d
4
chromium-pepperflash/.footprint
Normal file
4
chromium-pepperflash/.footprint
Normal file
@ -0,0 +1,4 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/PepperFlash/
|
||||
-rwxr-xr-x root/root usr/lib/PepperFlash/libpepflashplayer.so
|
0
chromium-pepperflash/.md5sum
Normal file
0
chromium-pepperflash/.md5sum
Normal file
20
chromium-pepperflash/Pkgfile
Normal file
20
chromium-pepperflash/Pkgfile
Normal file
@ -0,0 +1,20 @@
|
||||
# Description: PDF plugin for the chromium browser
|
||||
# URL: http://chromium.org/
|
||||
# Maintainer: Thomas Penteker, tek at serverop dot de
|
||||
# Depends on: chromium
|
||||
|
||||
name=chromium-pepperflash
|
||||
version=34.0.1847.132
|
||||
release=1
|
||||
source=()
|
||||
|
||||
build() {
|
||||
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
||||
ar -x google-chrome-stable_current_amd64.deb
|
||||
tar --use-compress-program=lzma -xf data.tar.lzma
|
||||
|
||||
install -D $SRC/opt/google/chrome/PepperFlash/libpepflashplayer.so \
|
||||
$PKG/usr/lib/PepperFlash/libpepflashplayer.so
|
||||
|
||||
|
||||
}
|
5
chromium-pepperflash/README
Normal file
5
chromium-pepperflash/README
Normal file
@ -0,0 +1,5 @@
|
||||
Start chromium with the flag
|
||||
--ppapi-flash-path=/usr/lib/PepperFlash/libpepflashplayer.so
|
||||
|
||||
If you have the flash-player-plugin port installed, chromium still prefers
|
||||
PepperFlash.
|
@ -1,3 +1,4 @@
|
||||
01b6a755c5b0fb7df2d2c94571f67e1d cups
|
||||
55277c40fd4b7183dc3671d39c5c42b7 cups-1.7.1-source.tar.bz2
|
||||
d498c3020acda0904ab0c13b6389a1ec cups-1.7.3-source.tar.bz2
|
||||
fd78a2c51a2e206ea85d21d2dc9dde69 cups-config.patch
|
||||
e579b616ea59ab462cff1b1361d4d741 cups-dnssd.patch
|
||||
|
11
cups/Pkgfile
11
cups/Pkgfile
@ -4,18 +4,17 @@
|
||||
# Depends on: acl tcp_wrappers libusb openssl zlib
|
||||
|
||||
name=cups
|
||||
version=1.7.1
|
||||
version=1.7.3
|
||||
release=1
|
||||
source=(http://www.cups.org/software/$version/$name-$version-source.tar.bz2
|
||||
cups-config.patch cups)
|
||||
cups-config.patch cups
|
||||
cups-dnssd.patch)
|
||||
|
||||
build () {
|
||||
cd $name-$version
|
||||
|
||||
patch -p1 -i $SRC/cups-config.patch
|
||||
|
||||
# Don' use clang to build
|
||||
sed -i 's/clang / /g' configure
|
||||
patch -p1 -i $SRC/cups-dnssd.patch
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
@ -34,7 +33,7 @@ build () {
|
||||
--enable-tcp-wrappers \
|
||||
--enable-acl \
|
||||
--disable-pam \
|
||||
--disable-dbus
|
||||
--disable-dbus
|
||||
|
||||
make
|
||||
make BUILDROOT=$PKG install
|
||||
|
44
cups/cups-dnssd.patch
Normal file
44
cups/cups-dnssd.patch
Normal file
@ -0,0 +1,44 @@
|
||||
commit 8441e27ce4008828cbdd25bdd6249c0019853b92
|
||||
Author: msweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
|
||||
Date: Fri May 9 20:57:11 2014 +0000
|
||||
|
||||
CUPS did not compile when Avahi or mDNSResponder was not present (STR #4402)
|
||||
|
||||
|
||||
|
||||
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11871 a1ca3aef-8c08-0410-bb20-df032aa958be
|
||||
|
||||
diff --git a/scheduler/dirsvc.c b/scheduler/dirsvc.c
|
||||
index 495bf1b..4e417b0 100644
|
||||
--- a/scheduler/dirsvc.c
|
||||
+++ b/scheduler/dirsvc.c
|
||||
@@ -237,11 +237,13 @@ cupsdStartBrowsing(void)
|
||||
if (BrowseLocalProtocols & BROWSE_SMB)
|
||||
update_smb(1);
|
||||
|
||||
+#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
|
||||
/*
|
||||
* Register the individual printers
|
||||
*/
|
||||
|
||||
dnssdRegisterAllPrinters(0);
|
||||
+#endif /* HAVE_DNSSD || HAVE_AVAHI */
|
||||
}
|
||||
|
||||
|
||||
@@ -255,6 +257,7 @@ cupsdStopBrowsing(void)
|
||||
if (!Browsing || !BrowseLocalProtocols)
|
||||
return;
|
||||
|
||||
+#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
|
||||
/*
|
||||
* De-register the individual printers
|
||||
*/
|
||||
@@ -265,7 +268,6 @@ cupsdStopBrowsing(void)
|
||||
* Shut down browsing sockets...
|
||||
*/
|
||||
|
||||
-#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
|
||||
if ((BrowseLocalProtocols & BROWSE_DNSSD) && DNSSDMaster)
|
||||
dnssdStop();
|
||||
#endif /* HAVE_DNSSD || HAVE_AVAHI */
|
@ -532,6 +532,7 @@ drwxr-xr-x root/root usr/lib/jre/lib/zi/Antarctica/
|
||||
-rw-r--r-- root/root usr/lib/jre/lib/zi/Antarctica/Palmer
|
||||
-rw-r--r-- root/root usr/lib/jre/lib/zi/Antarctica/Rothera
|
||||
-rw-r--r-- root/root usr/lib/jre/lib/zi/Antarctica/Syowa
|
||||
-rw-r--r-- root/root usr/lib/jre/lib/zi/Antarctica/Troll
|
||||
-rw-r--r-- root/root usr/lib/jre/lib/zi/Antarctica/Vostok
|
||||
drwxr-xr-x root/root usr/lib/jre/lib/zi/Asia/
|
||||
-rw-r--r-- root/root usr/lib/jre/lib/zi/Asia/Aden
|
||||
|
@ -1 +1 @@
|
||||
5dea1a4d745c55c933ef87c8227c4bd5 jre-7u55-linux-x64.tar.gz
|
||||
53a787c9a3170308641074cd86606a99 jre-7u60-linux-x64.tar.gz
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Packager: Simone Rota, sip at crux dot nu
|
||||
|
||||
name=jre
|
||||
version=1.7.0_55
|
||||
version=1.7.0_60
|
||||
release=1
|
||||
source=(file:///$name-7u${version#*_}-linux-x64.tar.gz)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user