X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;ds=sidebyside;f=stage4%2Fcis-gnome;h=97917106f4b5aa1970e20fc8afc1ab00ebf163d2;hb=34bf593fed308afb97457d5f94ae019977ba63c9;hp=b6297ebdb66f9fb4918ea17ffb481b1a37c16b5a;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage4/cis-gnome b/stage4/cis-gnome index b6297eb..9791710 100755 --- a/stage4/cis-gnome +++ b/stage4/cis-gnome @@ -1,21 +1,27 @@ #!/bin/sh -# First argument of this script is the package name +# First argument of this script is the package name. +# Remaining arguments are additional configure options. # Reading system configuration informations, functions and package versions. source ../sysinfos source ../functions source ../packages-list +PACKAGE=${1} +shift +CONFIGURE_OPTS=${*} + # Applying patches (if any) -apply_patches ${1} && +apply_patches ${PACKAGE} && -cd ${LFS_TMP}/${1}-build && -../${1}/configure \ +cd ${LFS_TMP}/${PACKAGE}-build && +../${PACKAGE}/configure \ --prefix=${GNOME2_PREFIX} \ --libexecdir=${GNOME2_PREFIX}/sbin \ --infodir=${GNOME2_PREFIX}/share/info \ --localstatedir=/var/lib \ - --sysconfdir=/etc/gnome/${GNOME2_VER} && + --sysconfdir=/etc/gnome/${GNOME2_VER} \ + ${CONFIGURE_OPTS} && make && make install && ldconfig