diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/flex | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/flex')
-rw-r--r-- | abs/core-testing/flex/PKGBUILD | 30 | ||||
-rw-r--r-- | abs/core-testing/flex/flex-yytext.patch | 22 | ||||
-rw-r--r-- | abs/core-testing/flex/lex.sh | 3 |
3 files changed, 0 insertions, 55 deletions
diff --git a/abs/core-testing/flex/PKGBUILD b/abs/core-testing/flex/PKGBUILD deleted file mode 100644 index f36300f..0000000 --- a/abs/core-testing/flex/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 3606 2008-06-26 00:29:52Z paul $ -# Maintainer: judd <jvinet@zeroflux.org> -pkgname=flex -pkgver=2.5.35 -pkgrel=1 -pkgdesc="A tool for generating text-scanning programs" -arch=(i686 x86_64) -url="http://flex.sourceforge.net" -license=('custom') -groups=('base-devel') -depends=('glibc' 'sh') -source=(http://downloads.sourceforge.net/sourceforge/flex/flex-$pkgver.tar.bz2 - lex.sh) -md5sums=('10714e50cea54dc7a227e3eddcd44d57' 'f725259ec23a9e87ee29e2ef82eda9a5') - -build() { - cd $startdir/src/$pkgname-$pkgver || return 1 - - # configure - ./configure --prefix=/usr --mandir=/usr/share/man || return 1 - - # build and install - make || return 1 - make prefix=$startdir/pkg/usr mandir=$startdir/pkg/usr/share/man install || return 1 - install -D -m755 $startdir/src/lex.sh $startdir/pkg/usr/bin/lex || return 1 - - # install license - install -D -m644 COPYING \ - $startdir/pkg/usr/share/licenses/$pkgname/license.txt || return 1 -} diff --git a/abs/core-testing/flex/flex-yytext.patch b/abs/core-testing/flex/flex-yytext.patch deleted file mode 100644 index 27cfaa4..0000000 --- a/abs/core-testing/flex/flex-yytext.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -Naur flex-2.5.31-orig/flex.skl flex-2.5.31/flex.skl ---- flex-2.5.31-orig/flex.skl 2003-03-31 17:51:38.000000000 -0800 -+++ flex-2.5.31/flex.skl 2004-04-11 12:19:10.000000000 -0700 -@@ -3280,7 +3280,6 @@ - #undef yy_set_bol - #undef yy_new_buffer - #undef yy_set_interactive --#undef yytext_ptr - #undef YY_DO_BEFORE_ACTION - - #ifdef YY_DECL_IS_OURS -diff -Naur flex-2.5.31-orig/gen.c flex-2.5.31/gen.c ---- flex-2.5.31-orig/gen.c 2003-03-30 11:58:44.000000000 -0800 -+++ flex-2.5.31/gen.c 2004-04-11 12:19:38.000000000 -0700 -@@ -1812,7 +1812,6 @@ - if (yytext_is_array) { - if (!reentrant){ - indent_puts ("static int yy_more_offset = 0;"); -- }else{ - indent_puts ("static int yy_prev_more_offset = 0;"); - } - } diff --git a/abs/core-testing/flex/lex.sh b/abs/core-testing/flex/lex.sh deleted file mode 100644 index 13e7de6..0000000 --- a/abs/core-testing/flex/lex.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -exec /usr/bin/flex -l "$@" |