diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 11:28:22 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 11:28:22 +0100 |
commit | e6681442d3088ee3d461f3ed8bdc247cd98daed3 (patch) | |
tree | f5323447b1a6671b3977ba4d60dfcf7341d1fdbb /bc | |
parent | d0a7ed181ed11aed307f2607e564b7d967fed533 (diff) | |
download | base-e6681442d3088ee3d461f3ed8bdc247cd98daed3.tar.gz base-e6681442d3088ee3d461f3ed8bdc247cd98daed3.tar.bz2 base-e6681442d3088ee3d461f3ed8bdc247cd98daed3.tar.xz base-e6681442d3088ee3d461f3ed8bdc247cd98daed3.zip |
Recette de bc retirée.
Diffstat (limited to 'bc')
-rw-r--r-- | bc/.footprint | 8 | ||||
-rw-r--r-- | bc/.md5sum | 3 | ||||
-rw-r--r-- | bc/Pkgfile | 20 | ||||
-rw-r--r-- | bc/Pkgfile.old | 21 | ||||
-rw-r--r-- | bc/bc-1.06-compile_fixes.patch | 46 | ||||
-rw-r--r-- | bc/bc-1.06-fixes-1.patch | 27 |
6 files changed, 0 insertions, 125 deletions
diff --git a/bc/.footprint b/bc/.footprint deleted file mode 100644 index 23a41d1..0000000 --- a/bc/.footprint +++ /dev/null @@ -1,8 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/bc --rwxr-xr-x root/root usr/bin/dc -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/bc.1.gz --rw-r--r-- root/root usr/man/man1/dc.1.gz diff --git a/bc/.md5sum b/bc/.md5sum deleted file mode 100644 index e17476d..0000000 --- a/bc/.md5sum +++ /dev/null @@ -1,3 +0,0 @@ -b19042e2bbfaa17cd45f20ebdf6706f0 bc-1.06-compile_fixes.patch -4df5b02cb0696403ef847b35aab498ba bc-1.06-fixes-1.patch -d44b5dddebd8a7a7309aea6c36fda117 bc-1.06.tar.gz diff --git a/bc/Pkgfile b/bc/Pkgfile deleted file mode 100644 index 0e59ec0..0000000 --- a/bc/Pkgfile +++ /dev/null @@ -1,20 +0,0 @@ -description="An arbitrary precision calculator language" -packager="" -maintainer="CRUX System Team, core-ports at crux dot nu" -url="http://www.gnu.org/software/bc/bc.html" -depends=(ncurses readline) - -name=bc -version=1.06 -release=3 -source=(http://ftp.gnu.org/gnu/bc/bc-1.06.tar.gz bc-1.06-compile_fixes.patch bc-1.06-fixes-1.patch) -build () -{ - cd $name-$version; - patch -p1 < ../$name-$version-compile_fixes.patch; - patch -p1 < ../$name-$version-fixes-1.patch; - ./configure --prefix=/usr --with-readline; - make; - make DESTDIR=$PKG install; - rm -rf $PKG/usr/info -} diff --git a/bc/Pkgfile.old b/bc/Pkgfile.old deleted file mode 100644 index eb21ba4..0000000 --- a/bc/Pkgfile.old +++ /dev/null @@ -1,21 +0,0 @@ -# Description: An arbitrary precision calculator language -# URL: http://www.gnu.org/software/bc/bc.html -# Maintainer: CRUX System Team, core-ports at crux dot nu -# Depends on: ncurses, readline - -name=bc -version=1.06 -release=3 -source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \ - $name-$version-compile_fixes.patch $name-$version-fixes-1.patch) - -build() { - cd $name-$version - patch -p1 < ../$name-$version-compile_fixes.patch - patch -p1 < ../$name-$version-fixes-1.patch - - ./configure --prefix=/usr --with-readline - make - make DESTDIR=$PKG install - rm -rf $PKG/usr/info -} diff --git a/bc/bc-1.06-compile_fixes.patch b/bc/bc-1.06-compile_fixes.patch deleted file mode 100644 index 88cf738..0000000 --- a/bc/bc-1.06-compile_fixes.patch +++ /dev/null @@ -1,46 +0,0 @@ -diff -ru bc-1.06/bc/load.c bc-1.06-new/bc/load.c ---- bc-1.06/bc/load.c 2000-09-13 20:22:38.000000000 +0200 -+++ bc-1.06-new/bc/load.c 2004-05-01 14:25:08.164146592 +0200 -@@ -34,7 +34,7 @@ - - /* Load variables. */ - --program_counter load_adr; -+static program_counter load_adr; - char load_str; - char load_const; - -diff -ru bc-1.06/bc/scan.l bc-1.06-new/bc/scan.l ---- bc-1.06/bc/scan.l 2000-09-13 20:25:47.000000000 +0200 -+++ bc-1.06-new/bc/scan.l 2004-05-01 14:21:02.765452864 +0200 -@@ -143,7 +143,6 @@ - - /* Definitions for readline access. */ - extern FILE *rl_instream; --_PROTOTYPE(char *readline, (char *)); - - /* rl_input puts upto MAX characters into BUF with the number put in - BUF placed in *RESULT. If the yy input file is the same as -diff -ru bc-1.06/configure bc-1.06-new/configure ---- bc-1.06/configure 2000-10-03 20:34:24.000000000 +0200 -+++ bc-1.06-new/configure 2004-05-01 14:21:27.159744368 +0200 -@@ -2245,7 +2245,7 @@ - - - if test "$LEX" = "flex" ; then -- LEX="flex -I8" -+ LEX="flex -I" - else - if test "$bcrl" = "y" ; then - echo "configure: warning: readline works only with flex." 1>&2 -diff -ru bc-1.06/lib/number.c bc-1.06-new/lib/number.c ---- bc-1.06/lib/number.c 2000-10-03 20:34:25.000000000 +0200 -+++ bc-1.06-new/lib/number.c 2004-05-01 14:24:41.028271872 +0200 -@@ -30,6 +30,7 @@ - *************************************************************************/ - - #include <stdio.h> -+#include <string.h> - #include <config.h> - #include <number.h> - #include <assert.h> diff --git a/bc/bc-1.06-fixes-1.patch b/bc/bc-1.06-fixes-1.patch deleted file mode 100644 index afcdba2..0000000 --- a/bc/bc-1.06-fixes-1.patch +++ /dev/null @@ -1,27 +0,0 @@ -Submitted By: Jim Gifford (jim at linuxfromscratch dot org) -Date: 2003-09-26 -Initial Package Version: 1.06 -Origin: Mandrake CVS -Description: Fixes a few typos - ---- bc-1.06/lib/number.c.orig 2003-09-26 21:14:02.000000000 +0000 -+++ bc-1.06/lib/number.c 2003-09-26 21:14:26.000000000 +0000 -@@ -34,6 +34,7 @@ - #include <number.h> - #include <assert.h> - #include <stdlib.h> -+#include <string.h> - #include <ctype.h>/* Prototypes needed for external utility routines. */ - - #define bc_rt_warn rt_warn ---- bc-1.06/bc/load.c.orig 2003-09-26 21:14:14.000000000 +0000 -+++ bc-1.06/bc/load.c 2003-09-26 21:14:26.000000000 +0000 -@@ -156,7 +156,7 @@ - long label_no; - long vaf_name; /* variable, array or function number. */ - long func; -- program_counter save_adr; -+ static program_counter save_adr; - - /* Initialize. */ - str = code; |