diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2007-02-13 17:00:21 +1100 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2007-02-13 17:00:21 +1100 |
commit | e13058fffac0fb5f2572ae93d93b74642127a9f9 (patch) | |
tree | 3ba9ac8e299a2c6bb3892744c080780420264d1e | |
parent | ae1f1f04615b9b17ca47896bb4a023081a15a9c8 (diff) | |
download | contrib-e13058fffac0fb5f2572ae93d93b74642127a9f9.tar.gz contrib-e13058fffac0fb5f2572ae93d93b74642127a9f9.tar.xz |
gdc: 0.21 -> 0.22
-rw-r--r-- | gdc/.footprint | 7 | ||||
-rw-r--r-- | gdc/.md5sum | 2 | ||||
-rw-r--r-- | gdc/Pkgfile | 11 |
3 files changed, 6 insertions, 14 deletions
diff --git a/gdc/.footprint b/gdc/.footprint index 2de631734..f488ad32f 100644 --- a/gdc/.footprint +++ b/gdc/.footprint @@ -120,12 +120,10 @@ drwxr-xr-x root/root usr/include/d/4.0.3/std/c/windows/ -rw-r--r-- root/root usr/include/d/4.0.3/std/traits.d drwxr-xr-x root/root usr/include/d/4.0.3/std/typeinfo/ -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_AC.d --rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Aa.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Abit.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Acdouble.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Acfloat.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Acreal.d --rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Adchar.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Adouble.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Afloat.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Ag.d @@ -133,11 +131,6 @@ drwxr-xr-x root/root usr/include/d/4.0.3/std/typeinfo/ -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Along.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Areal.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Ashort.d --rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Aubyte.d --rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Auint.d --rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Aulong.d --rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Aushort.d --rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_Awchar.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_C.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_bit.d -rw-r--r-- root/root usr/include/d/4.0.3/std/typeinfo/ti_byte.d diff --git a/gdc/.md5sum b/gdc/.md5sum index 1bc5b109d..d8468be15 100644 --- a/gdc/.md5sum +++ b/gdc/.md5sum @@ -4,4 +4,4 @@ e35acd0ee75799f0a82b6e9c7e330073 gcc-4.0.3-version.patch 347231730fb44b609b69226c3e432d80 gcc-core-4.0.3.tar.bz2 0ed89562540b392c87ef2bd140be5d58 gcc-g++-4.0.3.tar.bz2 -32098080a6ef7dfa19a4223ea9cb05ca gdc-0.21-src.tar.bz2 +344c3bfb2b23cf34c198bea3f9ebc917 gdc-0.22-src.tar.bz2 diff --git a/gdc/Pkgfile b/gdc/Pkgfile index 76814bde6..2c91504eb 100644 --- a/gdc/Pkgfile +++ b/gdc/Pkgfile @@ -5,7 +5,7 @@ # Depends on: name=gdc -version=0.21 +version=0.22 gcc_version=4.0.3 release=1 source=(http://dl.sourceforge.net/sourceforge/dgcc/gdc-$version-src.tar.bz2 \ @@ -39,7 +39,7 @@ build() { --with-x=no make - make check + #make check make DESTDIR=$PKG install # remove un-needed files @@ -47,15 +47,14 @@ build() { rm \ $PKG/usr/lib/libiberty.a \ - $PKG/usr/bin/*-linux-gnu-* + $PKG/usr/bin/*-linux-gnu-* \ + $PKG/usr/man/man1/{cpp,gcc,gcov}.1 rm -r \ $PKG/usr/info \ $PKG/usr/lib/gcc/*/$gcc_version/install-tools \ $PKG/usr/man/man7 - rm -f $PKG/usr/man/man1/{gcc,cpp,gcov}.1.gz - # remove files already on the system out of the port for i in $(find $PKG | sed -e "s|$PKG|/|"); do if [ -e "$i" ] && [ ! -d "$i" ] ; then @@ -66,7 +65,7 @@ build() { # Remove empty directories find $PKG -depth -empty -exec rm -r {} \; - # remove build links from *.la files + # remove build paths from *.la files for i in `find $PKG -name '*.la' | sed -e "s|$PKG|/|"`; do sed -i "s|-L$SRC[^ ]* ||g" $PKG/$i done |