aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpgollucci <pgollucci@FreeBSD.org>2010-09-16 12:17:12 +0800
committerpgollucci <pgollucci@FreeBSD.org>2010-09-16 12:17:12 +0800
commitcf9e4dc1344d70e528b063fab4cf655499e9d883 (patch)
tree96751cb61adb486f6cbab0d3cc802c0d8e075cc8
parentb9b22cf55f7aceb53d8c07d02e7a469a2b70e27d (diff)
downloadfreebsd-ports-gnome-cf9e4dc1344d70e528b063fab4cf655499e9d883.tar.gz
freebsd-ports-gnome-cf9e4dc1344d70e528b063fab4cf655499e9d883.tar.zst
freebsd-ports-gnome-cf9e4dc1344d70e528b063fab4cf655499e9d883.zip
- Fix pkg-plist
The default install calls apxs but without -a/-A which confuses our std pkg-plist @exec/@unexec stanzas Reported by: erwin via pointyhat
-rw-r--r--www/mod_auth_kerb2/Makefile1
-rw-r--r--www/mod_auth_kerb2/files/patch-Makefile.in11
2 files changed, 12 insertions, 0 deletions
diff --git a/www/mod_auth_kerb2/Makefile b/www/mod_auth_kerb2/Makefile
index a04aa1d5092e..b6cb867e2535 100644
--- a/www/mod_auth_kerb2/Makefile
+++ b/www/mod_auth_kerb2/Makefile
@@ -10,6 +10,7 @@
PORTNAME= mod_auth_kerb
PORTVERSION= 5.4
+PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= SF/modauthkerb/${PORTNAME}/${PORTNAME}-${PORTVERSION}
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
diff --git a/www/mod_auth_kerb2/files/patch-Makefile.in b/www/mod_auth_kerb2/files/patch-Makefile.in
new file mode 100644
index 000000000000..b6789815174d
--- /dev/null
+++ b/www/mod_auth_kerb2/files/patch-Makefile.in
@@ -0,0 +1,11 @@
+--- ./Makefile.in.orig 2010-09-16 04:14:47.235589487 +0000
++++ ./Makefile.in 2010-09-16 04:14:27.895241868 +0000
+@@ -16,7 +16,7 @@
+ ./apxs.sh "${CPPFLAGS}" "${LDFLAGS}" "${SPNEGO_SRCS}" "${APXS}" "-c" "src/mod_auth_kerb.c"
+
+ install:
+- ./apxs.sh "${CPPFLAGS}" "${LDFLAGS}" "${SPNEGO_SRCS}" "${APXS}" "-c -i" "src/mod_auth_kerb.c"
++ ./apxs.sh "${CPPFLAGS}" "${LDFLAGS}" "${SPNEGO_SRCS}" "${APXS}" "-c -i -a" "src/mod_auth_kerb.c"
+
+ clean:
+ for i in . src spnegokrb5; do \