summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extra/qt/PKGBUILD2
-rw-r--r--libre/iceweasel-libre/PKGBUILD11
-rw-r--r--social/squirm/PKGBUILD34
3 files changed, 47 insertions, 0 deletions
diff --git a/extra/qt/PKGBUILD b/extra/qt/PKGBUILD
index f2f20250a..111fad187 100644
--- a/extra/qt/PKGBUILD
+++ b/extra/qt/PKGBUILD
@@ -22,6 +22,7 @@ source=("http://releases.qt-project.org/qt4/source/${_pkgfqn}.tar.gz"
'improve-cups-support.patch'
'fix-crash-in-assistant.patch'
'undo-fix-jit-crash-on-x86_64.patch'
+ 'declarative-fix-sigbus.patch'
'disable-ssl-compression.patch')
md5sums=('a663b6c875f8d7caa8ac9c30e4a4ec3b'
'fc211414130ab2764132e7370f8e5caa'
@@ -31,6 +32,7 @@ md5sums=('a663b6c875f8d7caa8ac9c30e4a4ec3b'
'c439c7731c25387352d8453ca7574971'
'57590084078b6379f0501f7728b02ae2'
'094e5a4e30e52423c77daa4a9c782df5'
+ 'aac963d05a9d5733e2bfce9e26607f51'
'94e9e433342018bf35e8d6d968b7432c')
build() {
diff --git a/libre/iceweasel-libre/PKGBUILD b/libre/iceweasel-libre/PKGBUILD
index 8eb6ef769..c2bb0cab6 100644
--- a/libre/iceweasel-libre/PKGBUILD
+++ b/libre/iceweasel-libre/PKGBUILD
@@ -16,6 +16,7 @@ _pgo=false
_debname=iceweasel
_debver=15.0.1
_debrel=1
+[ "$CARCH" == "mips64el" ] && { _debver=13.0.1; _debrel=2; }
_debrepo=http://ftp.debian.org/debian/pool/main/
debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; }
@@ -157,3 +158,13 @@ package() {
# Workaround for now: https://bugzilla.mozilla.org/show_bug.cgi?id=658850
ln -sf $_pkgname "$pkgdir/usr/lib/$_pkgname/$_pkgname-bin"
}
+md5sums=('9eb7668e4a5b5be63ccf4d43c212d011'
+ 'c5eb6357cecd0d83e75ef37a9dcf3683'
+ 'eab149c1994ab14392e55af3abb08e80'
+ 'ac29b01c189f20abae2f3eef1618ffc0'
+ 'a485a2b5dc544a8a2bd40c985d2e5813'
+ '6d8816d2577263556d76f1aa4527b55b'
+ 'e529742c0a425648087bc3ce537fe4c5'
+ '0d053487907de4376d67d8f499c5502b'
+ '52e52f840a49eb1d14be1c0065b03a93'
+ 'c52fac65c1e06290a5108b75c31ace79')
diff --git a/social/squirm/PKGBUILD b/social/squirm/PKGBUILD
new file mode 100644
index 000000000..050c002d3
--- /dev/null
+++ b/social/squirm/PKGBUILD
@@ -0,0 +1,34 @@
+# Maintainer: Spider.007 <archPackage@spider007.net>
+# Contributor: Spider.007 <archPackage@spider007.net>
+pkgname=squirm
+pkgver=1.26
+pkgrel=1
+pkgdesc="Fast & configurable proxy redirector"
+url="http://squirm.foote.com.au/"
+source=("$url/$pkgname-$pkgver.tgz")
+md5sums=('54ac1d208620ec1e4419f97315d38848')
+license=('GPL2')
+arch=('i686' 'x86_64' 'mips64el')
+depends=('glibc')
+options=(!distcc)
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+
+ make PREFIX=/usr #CFLAGS="$CFLAGS"
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+
+# make install uses a weird prefix
+ install -d $pkgdir/etc/squirm $pkgdir/var/log/squirm
+ install -Dm755 squirm $pkgdir/usr/bin/squirm
+ install -m644 squirm.conf.dist $pkgdir/etc/squirm/squirm.conf
+ install -m644 squirm.patterns.dist $pkgdir/etc/squirm/squirm.patterns
+
+# use absolute path files
+ sed -e "s,logs,/var/log/squirm,g" \
+ -e "s,pattern ,& /etc/squirm/,g" \
+ -i $pkgdir/etc/squirm/squirm.conf
+}