From 2bce9191715fe0b6b0ab98cbef616795ebfc2162 Mon Sep 17 00:00:00 2001 From: Minto van der Sluis Date: Sun, 9 Sep 2007 19:48:23 +0200 Subject: [PATCH] Removing graphics-dirtree, package absolete now. --- graphic/graphics-dirtree/config.hlp | 6 --- graphic/graphics-dirtree/config.in | 8 --- graphic/graphics-dirtree/data.txt | 21 -------- .../graphics-dirtree/graphics-dirtree.conf | 54 ------------------- .../graphics-dirtree/graphics-dirtree.desc | 32 ----------- graphic/graphics-dirtree/parse-config | 14 ----- 6 files changed, 135 deletions(-) delete mode 100644 graphic/graphics-dirtree/config.hlp delete mode 100644 graphic/graphics-dirtree/config.in delete mode 100644 graphic/graphics-dirtree/data.txt delete mode 100644 graphic/graphics-dirtree/graphics-dirtree.conf delete mode 100644 graphic/graphics-dirtree/graphics-dirtree.desc delete mode 100644 graphic/graphics-dirtree/parse-config diff --git a/graphic/graphics-dirtree/config.hlp b/graphic/graphics-dirtree/config.hlp deleted file mode 100644 index c6bb234f9..000000000 --- a/graphic/graphics-dirtree/config.hlp +++ /dev/null @@ -1,6 +0,0 @@ -MENU_PKG_GRAPHICS - Here you'll find options for the CG target - -SDECFG_PKG_GRAPHICS_PREFIX - The installation prefix for graphics and graphics related applications for the CG target - diff --git a/graphic/graphics-dirtree/config.in b/graphic/graphics-dirtree/config.in deleted file mode 100644 index a1134faa1..000000000 --- a/graphic/graphics-dirtree/config.in +++ /dev/null @@ -1,8 +0,0 @@ -if pkgcheck graphics-dirtree X -then - menu_begin MENU_PKG_GRAPHICS 'CG target options' - text 'Install prefix for graphics and related applications' \ - SDECFG_PKG_GRAPHICS_PREFIX "opt/graphics" - menu_end -fi - diff --git a/graphic/graphics-dirtree/data.txt b/graphic/graphics-dirtree/data.txt deleted file mode 100644 index 3fcda2b33..000000000 --- a/graphic/graphics-dirtree/data.txt +++ /dev/null @@ -1,21 +0,0 @@ -# --- SDE-COPYRIGHT-NOTE-BEGIN --- -# This copyright note is auto-generated by ./scripts/Create-CopyPatch. -# -# Filename: package/.../graphics-dirtree/data.txt -# Copyright (C) 2007 The OpenSDE Project -# -# More information can be found in the files COPYING and README. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; version 2 of the License. A copy of the -# GNU General Public License can be found in the file COPYING. -# --- SDE-COPYRIGHT-NOTE-END --- - -# $prefix is added by default. -m bin -m lib -m include -m man -m doc -m share diff --git a/graphic/graphics-dirtree/graphics-dirtree.conf b/graphic/graphics-dirtree/graphics-dirtree.conf deleted file mode 100644 index 42a02a5f6..000000000 --- a/graphic/graphics-dirtree/graphics-dirtree.conf +++ /dev/null @@ -1,54 +0,0 @@ -# --- T2-COPYRIGHT-NOTE-BEGIN --- -# This copyright note is auto-generated by ./scripts/Create-CopyPatch. -# -# T2 SDE: package/.../graphics-dirtree/graphics-dirtree.conf -# Copyright (C) 2004 - 2007 The T2 SDE Project -# Copyright (C) 1998 - 2003 Clifford Wolf -# -# More information can be found in the files COPYING and README. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; version 2 of the License. A copy of the -# GNU General Public License can be found in the file COPYING. -# --- T2-COPYRIGHT-NOTE-END --- - -main_dt() { - echo -n "Change to sysroot directory ... " - cd $sysroot/ ; echo 'done' - - while read a b c ; do - b=$prefix/$b - if [ "$a" = "chmod" -o "$a" = "chown" ] ; then - echo "Running $a ($b) on $c ..." - $a "$b" "$sysroot/$c" - elif [ "$a" -a "$a" != "#" ] ; then - if [ -e "$sysroot/$b" ] ; then - echo "Exists already: $b." - elif [ "$a" = "m" ] ; then - echo "Create directory $b ..." - mkdir -p "$sysroot/$b" - elif [ "$a" = "l" ] ; then - echo "Create symlink $b ($c) ..." - ln -fsn "$c" "$sysroot/$b" - else - echo "Syntax Error: $a $b $c" ; false - fi - add_flist "$sysroot/$b" - fi - done < <( - cat $confdir/data.txt - if [[ $libdir = *lib64 ]]; then - echo "m lib64" - echo "m usr/lib64" - echo "m usr/local/lib64" - fi - ) -} - -srctar=none -createprefix=0 -createdocs=0 -custmain="main_dt" -check_usrlocal=0 - diff --git a/graphic/graphics-dirtree/graphics-dirtree.desc b/graphic/graphics-dirtree/graphics-dirtree.desc deleted file mode 100644 index b9a28f958..000000000 --- a/graphic/graphics-dirtree/graphics-dirtree.desc +++ /dev/null @@ -1,32 +0,0 @@ - -[COPY] --- SDE-COPYRIGHT-NOTE-BEGIN --- -[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch. -[COPY] -[COPY] Filename: package/.../00-dirtree/00-dirtree.desc -[COPY] Copyright (C) 2006 The OpenSDE Project -[COPY] Copyright (C) 2004 - 2006 The T2 SDE Project -[COPY] Copyright (C) 1998 - 2003 Clifford Wolf -[COPY] -[COPY] More information can be found in the files COPYING and README. -[COPY] -[COPY] This program is free software; you can redistribute it and/or modify -[COPY] it under the terms of the GNU General Public License as published by -[COPY] the Free Software Foundation; version 2 of the License. A copy of the -[COPY] GNU General Public License can be found in the file COPYING. -[COPY] --- SDE-COPYRIGHT-NOTE-END --- - -[I] Directory tree framework for graphics - -[T] This Package contains the basic directory tree for graphics packages. - -[A] Minto van der Sluis -[M] Minto van der Sluis - -[C] base/system -[F] DIETLIBC GRAPHICS - -[L] GPL -[S] Stable -[V] 0000 -[P] X 01---5---9 000.001 - diff --git a/graphic/graphics-dirtree/parse-config b/graphic/graphics-dirtree/parse-config deleted file mode 100644 index 37ea47217..000000000 --- a/graphic/graphics-dirtree/parse-config +++ /dev/null @@ -1,14 +0,0 @@ -if hasflag GRAPHICS; then - if [ "$pkg" == "graphics-dirtree" ]; then - if [ "$SDECFG_PKG_GRAPHICS_PREFIX" ] ; then - prefix="$SDECFG_PKG_GRAPHICS_PREFIX" - else - prefix="opt/graphics" - fi - else - pkgprefix -t graphics-dirtree - prefix=$( pkgprefix graphics-dirtree ) - fi - echo "Prefix = " $prefix - set_confopt -fi