Overview
| Comment: | Updated to build with latest version of dependencies if their version is not specified, otherwise, try to find one |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | packages |
| Files: | files | file ages | folders |
| SHA1: |
5ceded1d7df79328ce15d4e6b9a6dc39 |
| User & Date: | rkeene on 2014-11-12 07:38:35 |
| Other Links: | branch diff | manifest | tags |
Context
|
2014-11-12
| ||
| 08:04 | Added support for applying patches check-in: af79362c78 user: rkeene tags: packages | |
| 07:38 | Updated to build with latest version of dependencies if their version is not specified, otherwise, try to find one check-in: 5ceded1d7d user: rkeene tags: packages | |
| 07:32 | Added ticlib to ncurses to match other packages check-in: c956780267 user: rkeene tags: packages | |
Changes
Modified build from [9552d0e034] to [68229c87b4].
| ︙ | ︙ | |||
110 111 112 113 114 115 116 |
esac
if [ -z "${pkgdomain}" ]; then
pkgdomain="${domain}"
fi
pkgfound='0'
| | | > > | > > > > > > | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
esac
if [ -z "${pkgdomain}" ]; then
pkgdomain="${domain}"
fi
pkgfound='0'
for pkgdir in "/opt/appfs/${pkgdomain}/${pkg}/platform"/${pkgversion:-latest} "/opt/appfs/${pkgdomain}/${pkg}/platform"/${pkgversion:-*}; do
pkgconfigdir="${pkgdir}/lib/pkgconfig"
if [ ! -d "${pkgdir}" ]; then
continue
fi
# If the package version was unspecified, fully resolve
# the directory that we found
if [ -z "${pkgversion}" ]; then
pkgdir="$(readlink -f "${pkgdir}")"
fi
pkgfound='1'
for pkgchange in "${pkgchanges[@]}"; do
case "${pkgchange}" in
CFLAGS)
CFLAGS="${CFLAGS} -I${pkgdir}/include"
CPPFLAGS="${CPPFLAGS} -I${pkgdir}/include"
export CFLAGS CPPFLAGS
|
| ︙ | ︙ |