[COPY] --- T2-COPYRIGHT-BEGIN --- [COPY] t2/package/*/clip/clip.desc [COPY] Copyright (C) 2004 - 2025 The T2 SDE Project [COPY] Copyright (C) 1998 - 2004 ROCK Linux Project [COPY] SPDX-License-Identifier: GPL-2.0 [COPY] --- T2-COPYRIGHT-END --- [I] A Clipper/XBase compatible compiler [T] CLIP is a Clipper/XBase compatible compiler with initial support for [T] FoxPro, Flagship, and CAVO syntax. It features support for international [T] languages and character sets, and i18n based on gettext utils. It also [T] features OOP, a multiplatform GUI based on GTK/GTKextra, all SIX/Comix [T] features (including hypertext indexing), SQL and ODBC drivers, a C-API [T] for third-party developers, a few wrappers for popular libraries (such [T] as BZIP, GZIP, GD, Crypto, and Fcgi), a multitasking client and server [T] based on TCP/IP sockets, object data base utils and functions library, [T] and more. [U] http://www.itk.ru/english/index.shtml [A] Uri Khnykin [M] The T2 Project [F] NOPARALLEL FPIC [C] extra/development [L] GPL [S] Stable [V] 1.1.16-20 [D] 2280791830 clip-prg-1.1.16-1.tgz ftp://ftp.itk.ru/pub/clip/ [D] 1168194691 clip-patch-1.1.16-20.tgz !ftp://ftp.itk.ru/pub/clip/patch.tgz [D] 2093886555 clip-doc-src-1.1.16-1.tgz !ftp://ftp.itk.ru/pub/clip/clip-doc-src.tgz if [ $prefix_auto = 1 ]; then prefix="opt/clip" set_confopt fi createdocs=0 export CLIPROOT=$root/$prefix export BINDIR=$CLIPROOT/bin clip_examples() { cd $builddir/$xsrcdir # install examples mkdir -p $docdir/example/clip/ cp -dRvf example/* $docdir/example/clip/ # and tools mkdir -p $docdir/example/prg/ cp -dRvf prg/* $docdir/example/prg/ # profile.d echo "export CLIPROOT=$CLIPROOT" > $root/etc/profile.d/clip } clip_patch() { local f # they release a patch.tgz to overwrite files of last release # for 'updating' to last stable build. if f="`match_source_file -p $1`"; then echo "Applying $f to CLIP." (cd ..; \ ln -sv ${xsrcdir##*/} $2; \ tar -v $taropt $f \ ) fi } hook_add preconf 9 'cd clip' # patch hook_add prepatch 5 'clip_patch clip-patch- clip-prg; \ clip_patch clip-doc- clip-doc' # build & install cliplibs hook_add postmake 5 'eval $MAKE -C ../cliplibs $makeopt all install' # build & install docs hook_add postmake 6 'eval $MAKE -C ../doc $makeopt txt html install-txt install-html' # install examples hook_add postdoc 5 'clip_examples'