diff options
author | vd <vd@FreeBSD.org> | 2006-06-05 23:29:49 +0800 |
---|---|---|
committer | vd <vd@FreeBSD.org> | 2006-06-05 23:29:49 +0800 |
commit | 7679a5785d7efb7130ca0c697a1401966048ad63 (patch) | |
tree | 9a28aaca545425432ba91d89114d1540da0ef902 /graphics/xaralx-devel | |
parent | 8702b7880a42ba1fcd362e26f98bd305ba0d8874 (diff) | |
download | freebsd-ports-gnome-7679a5785d7efb7130ca0c697a1401966048ad63.tar.gz freebsd-ports-gnome-7679a5785d7efb7130ca0c697a1401966048ad63.tar.zst freebsd-ports-gnome-7679a5785d7efb7130ca0c697a1401966048ad63.zip |
* Upgrade graphics/xaralx-devel from 0.5r1184 to 0.5r1250
* Add libtool dependency because configure.in mentions AC_PROG_LIBTOOL
which seems to be defined by libtool.m4 installed by libtool. This allows
us to drop the hack of removing it from configure.in
* Invoking "pkg-config --cflags atk fontconfig gdk-2.0 pango" is not
necessary anymore. Drop it.
* Invoke autoreconf with a hacked value of ACLOCAL environment variable
to make aclocal find gettext.m4 which is installed in /usr/local/aclocal/
but aclocal is searching /usr/local/aclocal19/. ade@ promised to fix this
soon
* Remove unnecessary changes to configure.in, they are not needed now
Diffstat (limited to 'graphics/xaralx-devel')
-rw-r--r-- | graphics/xaralx-devel/Makefile | 6 | ||||
-rw-r--r-- | graphics/xaralx-devel/distinfo | 6 | ||||
-rw-r--r-- | graphics/xaralx-devel/files/patch-configure.in | 22 |
3 files changed, 30 insertions, 4 deletions
diff --git a/graphics/xaralx-devel/Makefile b/graphics/xaralx-devel/Makefile index 89d617ed9936..823885ef298d 100644 --- a/graphics/xaralx-devel/Makefile +++ b/graphics/xaralx-devel/Makefile @@ -5,7 +5,8 @@ # $FreeBSD$ # -PORTVERSION= 0.5r1184 +PORTVERSION= 0.5r1250 +PORTREVISION= 0 PKGNAMESUFFIX= -devel DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.bz2 @@ -14,4 +15,7 @@ COMMENT= Top-tier vector/general purpose graphics program (development version) MASTERDIR= ${.CURDIR}/../xaralx MD5_FILE= ${.CURDIR}/distinfo +PATCHDIR= ${.CURDIR}/files +EXTRA_PATCHES= ${MASTERDIR}/files/patch-PreComp_Makefile.am + .include "${MASTERDIR}/Makefile" diff --git a/graphics/xaralx-devel/distinfo b/graphics/xaralx-devel/distinfo index a98167280fa6..4e6d5cf7c211 100644 --- a/graphics/xaralx-devel/distinfo +++ b/graphics/xaralx-devel/distinfo @@ -1,3 +1,3 @@ -MD5 (XaraLX-0.5r1184.tar.bz2) = 1ee08cef8862061a8b257eb164dcac59 -SHA256 (XaraLX-0.5r1184.tar.bz2) = 419f8d6521fac56f2b674d486d5c318a5f0d374b0b0bba7b422c1ed43d11fe0e -SIZE (XaraLX-0.5r1184.tar.bz2) = 23498180 +MD5 (XaraLX-0.5r1250.tar.bz2) = ac939247f9ea84a673bfe40ae9bf7502 +SHA256 (XaraLX-0.5r1250.tar.bz2) = 88fa74abc984ef7870c520b96c2265213a4e5f1485dcb20d1272cfa5078b130c +SIZE (XaraLX-0.5r1250.tar.bz2) = 23593964 diff --git a/graphics/xaralx-devel/files/patch-configure.in b/graphics/xaralx-devel/files/patch-configure.in new file mode 100644 index 000000000000..cf6e135ded28 --- /dev/null +++ b/graphics/xaralx-devel/files/patch-configure.in @@ -0,0 +1,22 @@ +--- configure.in.orig Mon Jun 5 09:30:36 2006 ++++ configure.in Mon Jun 5 10:14:28 2006 +@@ -165,7 +165,7 @@ + + if test "$InternationalEnable" = "yes"; then + AC_MSG_CHECKING([wxWidgets wxrc utility]) +- WXRC="`$WXCONFIG --utility=wxrc`" ++ WXRC="`$WXCONFIG --utility=wxrc-gtk2u`" + + if test "$WXRC" = "" ; then + AC_MSG_RESULT([not found, disabling international build]) +@@ -277,8 +277,8 @@ + fi + + # pass the Pango, FreeType and GTK flags (required for wxGTK font rendering) +-CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS $PANGO_CFLAGS $FT_CFLAGS $GTK_CFLAGS $LIBXML2_CFLAGS" +-CXXFLAGS="$CXXFLAGS $WX_CPPFLAGS $PANGO_CFLAGS $FT_CFLAGS $GTK_CFLAGS $LIBXML2_CFLAGS" ++CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS $PANGO_CFLAGS $FT_CFLAGS $GTK_CFLAGS $LIBXML2_CFLAGS $CPPFLAGS_APPEND" ++CXXFLAGS="$CXXFLAGS $WX_CPPFLAGS $PANGO_CFLAGS $FT_CFLAGS $GTK_CFLAGS $LIBXML2_CFLAGS $CPPFLAGS_APPEND" + + AC_MSG_CHECKING([Linker]) + case $host in |