all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob fd30cafda684bc7795cda7723f7709e848166f59 1557 bytes (raw)
name: gnu/packages/aux-files/plan9port/builder.sh 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
 
# bash shell script
# from nixpkgs: https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/system/plan9port/builder.sh

export PLAN9=$out/plan9
export PLAN9_TARGET=$PLAN9

plan9portLinkFlags()
{
    eval set -- "$LDFLAGS"
    local flag
    for flag in "$@"; do
        printf ' -Wl,%s' "$flag"
    done
}

configurePhase()
{
    (
        echo CC9=\"$(command -v $CC)\"
        echo CFLAGS=\"$CFLAGS\"
        echo LDFLAGS=\"$(plan9portLinkFlags)\"
        echo X11=\"$libxt/include\"
        case "$system" in
          x86_64-linux) echo OBJTYPE=x86_64;;
          i?86-linux)   echo OBJTYPE=386;;
          power-linux)  echo OBJTYPE=power;;
          sparc-linux)  echo OBJTYPE=sparc;;
        esac
        if [[ $system =~ "linux" ]]; then
          echo SYSVERSION=2.6.x
        fi
    ) >config

    for f in `grep -l -r /usr/local/plan9`; do
        sed "s,/usr/local/plan9,${PLAN9},g" -i $f
    done
}

buildPhase()
{
    mkdir -p $PLAN9

    # Copy sources, some necessary bin scripts
    cp -R * $PLAN9

    local originalPath="$PATH"
    export PATH="$PLAN9/bin:$PATH"
    pushd src
    ../dist/buildmk
    mk clean
    mk libs-nuke
    mk all
    mk -k install
    if [[ -f $PLAN9/bin/quote1 ]]; then
        cp $PLAN9/bin/quote1 $PLAN9/bin/'"'
        cp $PLAN9/bin/quote2 $PLAN9/bin/'""'
    fi
    popd
    export PATH="$originalPath"
}

installPhase()
{
    # Copy the `9' utility. This way you can use
    # $ 9 awk
    # to use the plan 9 awk
    mkdir $out/bin
    ln -s $PLAN9/bin/9 $out/bin
}

configurePhase
buildPhase
installPhase

debug log:

solving fd30cafda6 ...
found fd30cafda6 in https://yhetil.org/guix/CAGNyveh9oV=6Y4aaVY6ZvL_8T-DJNpfzPN=MJ0z_Qkh5=4_BnA@mail.gmail.com/

applying [1/1] https://yhetil.org/guix/CAGNyveh9oV=6Y4aaVY6ZvL_8T-DJNpfzPN=MJ0z_Qkh5=4_BnA@mail.gmail.com/
diff --git a/gnu/packages/aux-files/plan9port/builder.sh b/gnu/packages/aux-files/plan9port/builder.sh
new file mode 100755
index 0000000000..fd30cafda6

Checking patch gnu/packages/aux-files/plan9port/builder.sh...
Applied patch gnu/packages/aux-files/plan9port/builder.sh cleanly.

index at:
100755 fd30cafda684bc7795cda7723f7709e848166f59	gnu/packages/aux-files/plan9port/builder.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.