summaryrefslogtreecommitdiffstats
path: root/base/bison
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:36:48 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:36:48 +0200
commit47fb1466ba0e4b0fede3b6ac8ae25154d14e39ea (patch)
tree405c52b915f4f68336ca0f546dfddb2af63b65f8 /base/bison
parent2764b2df81ff8183cb0000e346c7f243c7642bb9 (diff)
downloadnutyx-pakxe-47fb1466ba0e4b0fede3b6ac8ae25154d14e39ea.tar.gz
nutyx-pakxe-47fb1466ba0e4b0fede3b6ac8ae25154d14e39ea.tar.bz2
nutyx-pakxe-47fb1466ba0e4b0fede3b6ac8ae25154d14e39ea.tar.xz
nutyx-pakxe-47fb1466ba0e4b0fede3b6ac8ae25154d14e39ea.zip
Ajout de bison#2.4.1-1
Diffstat (limited to 'base/bison')
-rw-r--r--base/bison/.footprint43
-rw-r--r--base/bison/.md5sum1
-rwxr-xr-xbase/bison/Pkgfile23
3 files changed, 67 insertions, 0 deletions
diff --git a/base/bison/.footprint b/base/bison/.footprint
new file mode 100644
index 000000000..a37804ed5
--- /dev/null
+++ b/base/bison/.footprint
@@ -0,0 +1,43 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/bison
+-rwxr-xr-x root/root usr/bin/yacc
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/liby.a
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/aclocal/
+-rw-r--r-- root/root usr/share/aclocal/bison-i18n.m4
+drwxr-xr-x root/root usr/share/bison/
+-rw-r--r-- root/root usr/share/bison/README
+-rw-r--r-- root/root usr/share/bison/bison.m4
+-rw-r--r-- root/root usr/share/bison/c++-skel.m4
+-rw-r--r-- root/root usr/share/bison/c++.m4
+-rw-r--r-- root/root usr/share/bison/c-skel.m4
+-rw-r--r-- root/root usr/share/bison/c.m4
+-rw-r--r-- root/root usr/share/bison/glr.c
+-rw-r--r-- root/root usr/share/bison/glr.cc
+-rw-r--r-- root/root usr/share/bison/java-skel.m4
+-rw-r--r-- root/root usr/share/bison/java.m4
+-rw-r--r-- root/root usr/share/bison/lalr1.cc
+-rw-r--r-- root/root usr/share/bison/lalr1.java
+-rw-r--r-- root/root usr/share/bison/location.cc
+drwxr-xr-x root/root usr/share/bison/m4sugar/
+-rw-r--r-- root/root usr/share/bison/m4sugar/foreach.m4
+-rw-r--r-- root/root usr/share/bison/m4sugar/m4sugar.m4
+drwxr-xr-x root/root usr/share/bison/xslt/
+-rw-r--r-- root/root usr/share/bison/xslt/bison.xsl
+-rw-r--r-- root/root usr/share/bison/xslt/xml2dot.xsl
+-rw-r--r-- root/root usr/share/bison/xslt/xml2text.xsl
+-rw-r--r-- root/root usr/share/bison/xslt/xml2xhtml.xsl
+-rw-r--r-- root/root usr/share/bison/yacc.c
+drwxr-xr-x root/root usr/share/info/
+-rw-r--r-- root/root usr/share/info/bison.info.gz
+drwxr-xr-x root/root usr/share/locale/
+drwxr-xr-x root/root usr/share/locale/fr/
+drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
+-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/bison-runtime.mo
+-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/bison.mo
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/bison.1.gz
+-rw-r--r-- root/root usr/share/man/man1/yacc.1.gz
diff --git a/base/bison/.md5sum b/base/bison/.md5sum
new file mode 100644
index 000000000..5112b04c0
--- /dev/null
+++ b/base/bison/.md5sum
@@ -0,0 +1 @@
+84e80a2a192c1a4c02d43fbf2bcc4ca4 bison-2.4.1.tar.bz2
diff --git a/base/bison/Pkgfile b/base/bison/Pkgfile
new file mode 100755
index 000000000..2dbf8eda9
--- /dev/null
+++ b/base/bison/Pkgfile
@@ -0,0 +1,23 @@
+# Description: Le convertisseur parseur du projet GNU
+# URL: http://www.gnu.org/software/bison/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: m4
+
+name=bison
+version=2.4.1
+release=1
+source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
+
+build() {
+cd $name-$version
+./configure --prefix=/usr\
+ --mandir=/usr/share/man\
+ --infodir=/usr/share/info
+echo '#define YYENABLE_NLS 1' >> config.h
+make
+make DESTDIR=$PKG install
+if [ -f $PKG/usr/share/info/dir ]; then
+ rm $PKG/usr/share/info/dir
+fi
+}