Adds defined options to the PKGINFO file in the form of "makepkgopt =".
It may be useful to be able to add these to the pacman DB at some point
as that would allow (e.g.) checking which packages have had their docs
striped (FS#7092).

Signed-off-by: Allan McRae <[EMAIL PROTECTED]>
---
 scripts/makepkg.sh.in |   17 ++++++++++++++---
 1 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index c15d91f..f5a5af4 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -41,8 +41,9 @@ confdir='@sysconfdir@'
 startdir="$PWD"
 srcdir="$startdir/src"
 pkgdir="$startdir/pkg"
-known_options=('strip' 'docs' 'libtool' 'emptydirs' 'zipman' 'ccache' 'distcc' 
'makeflags' 'force')
-readonly -a known_options
+packaging_options=('strip' 'docs' 'libtool' 'emptydirs' 'zipman')
+other_options=('ccache' 'distcc' 'makeflags' 'force')
+readonly -a packaging_options other_options
 
 # Options
 ASROOT=0
@@ -844,6 +845,16 @@ create_package() {
        for it in "[EMAIL PROTECTED]"; do
                echo "backup = $it" >>.PKGINFO
        done
+       for it in "[EMAIL PROTECTED]"; do
+               local ret="$(check_option $it)"
+               if [ "$ret" != "?" ]; then
+                       if [ "$ret" = "y" ]; then
+                               echo "makepkgopt = $it" >>.PKGINFO
+                       else
+                               echo "makepkgopt = !$it" >>.PKGINFO
+                       fi
+               fi
+       done
 
        # TODO maybe remove this at some point
        # warn if license array is not present or empty
@@ -1385,7 +1396,7 @@ valid_options=1
 for opt in [EMAIL PROTECTED]; do
        known=0
        # check if option matches a known option or its inverse
-       for kopt in [EMAIL PROTECTED]; do
+       for kopt in [EMAIL PROTECTED] [EMAIL PROTECTED]; do
                if [ "${opt}" = "${kopt}" -o "${opt}" = "!${kopt}" ]; then
                        known=1
                fi
-- 
1.6.0.2

_______________________________________________
pacman-dev mailing list
[email protected]
http://archlinux.org/mailman/listinfo/pacman-dev

Reply via email to