diff options
author | miwi <miwi@FreeBSD.org> | 2011-02-26 00:52:50 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2011-02-26 00:52:50 +0800 |
commit | afbd9adc91ea20af30292938d6abd193791ae93f (patch) | |
tree | 81fd9833ef1b1f53de06c778a19bf1c393d0d703 /devel/imake | |
parent | a133868afc4cf84dbd611f2791989f867b0fb757 (diff) | |
download | freebsd-ports-gnome-afbd9adc91ea20af30292938d6abd193791ae93f.tar.gz freebsd-ports-gnome-afbd9adc91ea20af30292938d6abd193791ae93f.tar.zst freebsd-ports-gnome-afbd9adc91ea20af30292938d6abd193791ae93f.zip |
- Please welcome Xorg 7.5.1
The X-Server has been patched to the latest 1.7.X series, drivers
and fonts have been updated to the latest versions. This update includes
some components from Xorg 7.6 with a lot of improvements, and it seems
that the performance is much better than the old version. Also this
Update fix build issues with clang and binutils 2.17.50 in current,
remove 6.X gruft and de-author pkg-descr.
I would like to thank:
Beat Gaetzi
Dima Panov
Koop Mast
Eitan Adler
and all Testers.
PR: ports/147646
ports/148035
ports/148744
ports/150223
ports/152889
ports/154457
Diffstat (limited to 'devel/imake')
-rw-r--r-- | devel/imake/Makefile | 2 | ||||
-rw-r--r-- | devel/imake/distinfo | 5 | ||||
-rw-r--r-- | devel/imake/files/patch-xmkmf.cpp | 26 | ||||
-rw-r--r-- | devel/imake/pkg-descr | 3 |
4 files changed, 29 insertions, 7 deletions
diff --git a/devel/imake/Makefile b/devel/imake/Makefile index b2aba137837e..fa9ac23f4f43 100644 --- a/devel/imake/Makefile +++ b/devel/imake/Makefile @@ -6,7 +6,7 @@ # PORTNAME= imake -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 PORTEPOCH= 1 CATEGORIES= devel diff --git a/devel/imake/distinfo b/devel/imake/distinfo index 393b5982e730..1e2fe2cdcd7d 100644 --- a/devel/imake/distinfo +++ b/devel/imake/distinfo @@ -1,3 +1,2 @@ -MD5 (xorg/util/imake-1.0.3.tar.bz2) = ff553c4646edcc9e76b7308991ad421a -SHA256 (xorg/util/imake-1.0.3.tar.bz2) = 90015244dd7a32594162d2be6e934a258894d1ca2c37422ef727a7f1c0b553ea -SIZE (xorg/util/imake-1.0.3.tar.bz2) = 139230 +SHA256 (xorg/util/imake-1.0.4.tar.bz2) = acb27ff09e3083000441a8d555fbedbf35ecb4ad52d2bd5b8680dce853f146fe +SIZE (xorg/util/imake-1.0.4.tar.bz2) = 140773 diff --git a/devel/imake/files/patch-xmkmf.cpp b/devel/imake/files/patch-xmkmf.cpp new file mode 100644 index 000000000000..a08866e3855f --- /dev/null +++ b/devel/imake/files/patch-xmkmf.cpp @@ -0,0 +1,26 @@ +--- work/imake-1.0.2/xmkmf.cpp 2004-04-23 18:42:00.000000000 +0000 ++++ xmkmf.cpp 2009-12-14 20:51:01.695597560 +0000 +@@ -53,6 +53,10 @@ + args="-I$topdir/config/cf -DTOPDIR=$topdir -DCURDIR=$curdir" + fi + ++if [ -n "$CPP" -a -z "$IMAKECPP" ];then ++ export IMAKECPP=$CPP ++fi ++ + echo imake $imake_defines $args + case "$do_all" in + yes) +@@ -68,3 +72,12 @@ + imake $imake_defines $args + ;; + esac ++ ++if [ -f "Makefile" ];then ++ if [ -n "$CC" ];then ++ sed -i "" -e "s| CC = cc| CC = $CC|" Makefile ++ fi ++ if [ -n "$CXX" ];then ++ sed -i "" -e "s| CXX = c++| CXX = $CXX|" Makefile ++ fi ++fi diff --git a/devel/imake/pkg-descr b/devel/imake/pkg-descr index aa426ccf2e28..18425ed4eb59 100644 --- a/devel/imake/pkg-descr +++ b/devel/imake/pkg-descr @@ -2,6 +2,3 @@ This package contains X.Org's imake, imake config files, and other build-related tools. WWW: http://www.x.org/ - -- Eric Anholt -anholt@FreeBSD.org |