diff options
author | Stanislav Sedov <stas@FreeBSD.org> | 2006-10-08 13:48:37 +0000 |
---|---|---|
committer | Stanislav Sedov <stas@FreeBSD.org> | 2006-10-08 13:48:37 +0000 |
commit | ee774b0f4fa7f1842f6b4dfdfe60b22cbcf12442 (patch) | |
tree | 1bf12eadb5a7920766bf7a613174c0475b810d0d /x11-toolkits/etk/files/patch-configure | |
parent | - Update to 1.5.2 (diff) |
- Move to LOCALBASE
- Use new EFL framework
- Update all e17 ports to the lates stable cvs snapshot
- Add additional knobs/options to ports makefiles to control the
feature set
- Add a bunch of new e17 applications/libraries
- Minor improvements/modification.
Approved by: vanilla (old maintainer), sem (mentor)
Notes
Notes:
svn path=/head/; revision=174934
Diffstat (limited to 'x11-toolkits/etk/files/patch-configure')
-rw-r--r-- | x11-toolkits/etk/files/patch-configure | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/x11-toolkits/etk/files/patch-configure b/x11-toolkits/etk/files/patch-configure new file mode 100644 index 000000000000..3de7e5ab2bc2 --- /dev/null +++ b/x11-toolkits/etk/files/patch-configure @@ -0,0 +1,30 @@ +--- configure.orig Thu Sep 28 00:24:04 2006 ++++ configure Thu Sep 28 00:24:12 2006 +@@ -22026,27 +22026,6 @@ + ;; + esac + +-function vser +-{ +- v=$1 +- VSTART=`echo $v | awk -F_ '{printf("%s", $1);}'` +- V1=`echo $VSTART | awk -F\. '{printf("%s", $1);}'` +- V2=`echo $VSTART | awk -F\. '{printf("%s", $2);}'` +- V3=`echo $VSTART | awk -F\. '{printf("%s", $3);}'` +- V4="0" +- VEND=`echo $v | awk -F_ '{printf("%s", $2);}'` +- if test -n "$VEND"; then +- V4=`echo $VEND | sed s/pre//` +- fi +- V3=$(( $V3 * 100 )); +- V2=$(( $V2 * 10000 )); +- V1=$(( $V1 * 1000000 )); +- V=$(( $V4 + $V3 + $V2 + $V1 )); +- echo $V +-} +- +- +- + # Check whether --with-evas-prefix was given. + if test "${with_evas_prefix+set}" = set; then + withval=$with_evas_prefix; evas_config_prefix="$withval" |