summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2009-06-29 16:30:02 (GMT)
committerJames Meyer <james.meyer@operamail.com>2009-06-29 16:30:02 (GMT)
commita77d9915f36ed35bce7e3ba19acd07d0078359db (patch)
treeb7d338f6446a3feca44e6151097ac75a4fc92d17
parent649b5da147f6d2107142c596c915f23b06f9bea1 (diff)
parenta3ad759091d9d59ba9663394b685f2d676f9d1c5 (diff)
downloadlinhes_pkgbuild-a77d9915f36ed35bce7e3ba19acd07d0078359db.zip
linhes_pkgbuild-a77d9915f36ed35bce7e3ba19acd07d0078359db.tar.gz
linhes_pkgbuild-a77d9915f36ed35bce7e3ba19acd07d0078359db.tar.bz2
Merge branch 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-PKGBUILD
-rw-r--r--abs/core-testing/local-website/PKGBUILD2
-rw-r--r--abs/core-testing/local-website/htdocs/fuppes.php2
-rw-r--r--abs/core-testing/ntfs-3g/PKGBUILD3
-rw-r--r--abs/core-testing/ntfs-3g/ntfs-3g.install15
4 files changed, 19 insertions, 3 deletions
diff --git a/abs/core-testing/local-website/PKGBUILD b/abs/core-testing/local-website/PKGBUILD
index 6ce813c..a47c062 100644
--- a/abs/core-testing/local-website/PKGBUILD
+++ b/abs/core-testing/local-website/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=local-website
pkgver=2
-pkgrel=7
+pkgrel=8
pkgdesc="Contents of http://localhost"
arch=(i686 x86_64)
license=('GPL')
diff --git a/abs/core-testing/local-website/htdocs/fuppes.php b/abs/core-testing/local-website/htdocs/fuppes.php
index f082f31..44129d2 100644
--- a/abs/core-testing/local-website/htdocs/fuppes.php
+++ b/abs/core-testing/local-website/htdocs/fuppes.php
@@ -1,4 +1,4 @@
<?php
$HTTP_HOST = getenv('HTTP_HOST');
-header("Location: http://$HTTP_HOST:81/");
+header("Location: http://$HTTP_HOST:8100/");
?>
diff --git a/abs/core-testing/ntfs-3g/PKGBUILD b/abs/core-testing/ntfs-3g/PKGBUILD
index 9529a86..a8ae6e5 100644
--- a/abs/core-testing/ntfs-3g/PKGBUILD
+++ b/abs/core-testing/ntfs-3g/PKGBUILD
@@ -4,11 +4,12 @@
pkgname=ntfs-3g
pkgver=2009.4.4
-pkgrel=2
+pkgrel=3
pkgdesc="Stable read and write NTFS driver"
url="http://www.ntfs-3g.org/"
arch=('i686' 'x86_64')
license=('GPL2')
+install=ntfs-3g.install
depends=('glibc')
makedepends=('pkgconfig')
options=('!libtool')
diff --git a/abs/core-testing/ntfs-3g/ntfs-3g.install b/abs/core-testing/ntfs-3g/ntfs-3g.install
new file mode 100644
index 0000000..ad8cc1b
--- /dev/null
+++ b/abs/core-testing/ntfs-3g/ntfs-3g.install
@@ -0,0 +1,15 @@
+# arg 1: the new package version
+post_install() {
+ ln -s /sbin/mount.ntfs-3g /sbin/mount.ntfs
+}
+# arg 1: the new package version
+# arg 2: the old package version
+
+# arg 1: the old package version
+post_remove() {
+ rm -fr /sbin/mount.ntfs
+}
+
+op=$1
+shift
+$op $*