You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
18 years ago
|
#!/bin/sh
|
||
|
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||
|
#
|
||
|
# T2 SDE: package/.../sope/sope.conf
|
||
|
# Copyright (C) 2005 - 2006 The T2 SDE Project
|
||
|
#
|
||
|
# More information can be found in the files COPYING and README.
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation; version 2 of the License. A copy of the
|
||
|
# GNU General Public License can be found in the file COPYING.
|
||
|
# --- T2-COPYRIGHT-NOTE-END ---
|
||
|
|
||
|
confopt="--with-gnustep --gsmake=/usr/System"
|
||
|
|
||
|
# to compile with apr*-1.x
|
||
|
var_append GCC_WRAPPER_INSERT " " "-D_LARGEFILE64_SOURCE"
|
||
|
|
||
|
for x in openldap postgresql; do
|
||
|
pkgprefix -t $x
|
||
|
var_append GCC_WRAPPER_APPEND ' ' "-I$( pkgprefix includedir $x)"
|
||
|
var_append GCC_WRAPPER_APPEND ' ' "-L$( pkgprefix libdir $x)"
|
||
|
done
|
||
|
|
||
|
if pkginstalled apache; then
|
||
|
pkgprefix -t apache
|
||
|
hook_add inmake 5 'eval $MAKE $makeopt -C ./sope-appserver/mod_ngobjweb/'
|
||
|
hook_add postmake 5 "cp -vf ./sope-appserver/mod_ngobjweb/mod_ngobjweb.so \
|
||
|
$root/$( pkgprefix prefix apache )/modules/"
|
||
|
hook_add postdoc 5 'cp -vf ./sope-appserver/mod_ngobjweb/README $docdir/README.mod_ngobjweb'
|
||
|
fi
|