2 # functions for recording installation of a package and make a tarball,
3 # or using fakeroot type commands for install, then packing and installing
5 # We only have access to variables PKGDIR and PKG_DEST. Other variables could
6 # be set in the environment
12 expect*|tcl*|tk*|mozjs*)
13 VERSION=$(echo $1 | sed 's/^[^0-9]*//')
16 VERSION=$(echo $1 | sed 's/^[^0-9]*\([0-9]\)\([0-9]\)/\1.\2/')
18 wireless_tools*|LVM2*)
19 VERSION=$(echo $1 | sed 's/^[^.]*\.//')
22 VERSION=$(echo $1 | sed 's/.*shot-//')
24 icu*) # No version in PCKGVRS! Use version directly from xml book.
25 # PACK_INSTALL contains the path to this script, which is in the
26 # parent dir of the book.
27 local PACKENT=$(dirname $PACK_INSTALL)/blfs-xml/packages.ent
28 local VERSION1=$(sed -n 's/.*icu-major[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
29 local VERSION2=$(sed -n 's/.*icu-minor[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
30 VERSION=$VERSION1.$VERSION2
33 local PACKENT=$(dirname $PACK_INSTALL)/blfs-xml/packages.ent
34 VERSION=$(sed -n 's/.*soundtouch[^0-9]*\([^"]*\).*/\1/p' $PACKENT)
37 local PACKENT=$(dirname $PACK_INSTALL)/blfs-xml/x/installing/x7driver-intel.xml
38 VERSION=$(sed -n '/<!--/!s/.*-version[^;][^0-9]*\([^"]*\).*/\1/p' $PACKENT)
41 VERSION=1.8.0.$(echo $1 | sed 's/.*u\([0-9]\+\).*/\1/')
50 VERSION=$(echo $1 | sed 's/^.*[-_]\([0-9]\)/\1/' | sed 's/_/./g')
52 # the last sed above is because some package managers do not want a '_'
55 echo ${VERSION,,} # convert to lowercase, in case there is a capital letter
59 # Export the previous function, since it is used by the others
60 export -f extract_version
61 # The other "official" functions, wrapInstall and packInstall, are exported
62 # by "envars" (in LFS), and the scripts (in BLFS).
65 # a bash command is passed as an argument (that may be a compound command).
66 # It is executed by this function, after various set-ups...
68 # Note that PKGDIR is changed to UNPACKDIR
69 # and PKG_DEST is changed to PKG_DIR in BLFS tools.
70 # The sed for PACKAGE is therefore not needed in BLFS,
71 # but it does not hurt, either.
72 local PCKGVRS=$(basename $PKGDIR)
73 local TGTPKG=$(basename $PKG_DEST)
74 local PACKAGE=$(echo ${TGTPKG} | sed 's/^[0-9]\{3\}-//' |
75 sed 's/^[0-9]\{1\}-//')
76 # Porg converts package names to lowercase anyway, so do the conversion
79 # version is only accessible from PKGDIR name. Since the format of the
80 # name is not normalized, several hacks are necessary (now in function
82 VERSION=$(extract_version $PCKGVRS)
83 porg -lp ${PACKAGE}-${VERSION} sh << PORG_EOF
91 # With porg, we need only the package name to make the tarball
92 local TGTPKG=$(basename $PKG_DEST)
93 local PACKAGE=$(echo ${TGTPKG} | sed 's/^[0-9]\{3\}-//' |
94 sed 's/^[0-9]\{1\}-//')
95 local PCKGVRS=$(basename $PKGDIR)
96 # Porg converts package names to lowercase anyway, so do the conversion
99 # Building the binary package
101 # The package is in the current directory
102 VERSION=$(extract_version $PCKGVRS)
103 mv -v ${PACKAGE}-${VERSION}.porg* /var/lib/packages