diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2004-10-12 06:40:48 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2004-10-12 06:40:48 +0000 |
commit | d9dcb982a2ba888bb184bbafcc12d076e829a1bf (patch) | |
tree | 2d4edb5e0189ba1c00a0add19a5a1b30bfbc73c5 /math | |
parent | d0692333c29a31ff46ca4d85de897cb37ce241ef (diff) | |
download | ports-d9dcb982a2ba888bb184bbafcc12d076e829a1bf.tar.gz ports-d9dcb982a2ba888bb184bbafcc12d076e829a1bf.zip |
1) fix plist: test builds show, that 0.6.3 configure fails to detect
gettext on 5x too :( So we need to temporarily disable translations for now...
2) reinstall didn't ever work, because of use of 'ln -s' instead of
ln -sf for symlinking qalculate-gtk binary.
PR: ports/71228
Submitted by: Sergey Akifyev <asa at gascom dot ru> (maintainer)
Notes
Notes:
svn path=/head/; revision=118814
Diffstat (limited to 'math')
-rw-r--r-- | math/qalculate/Makefile | 2 | ||||
-rw-r--r-- | math/qalculate/files/patch-src::Makefile.in | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/math/qalculate/Makefile b/math/qalculate/Makefile index 1540584a5e13..b650b408a4a4 100644 --- a/math/qalculate/Makefile +++ b/math/qalculate/Makefile @@ -34,7 +34,7 @@ EXTRA_PATCHES= ${FILESDIR}/extra-patch-FreeBSD4 # XXX configure script fails to detect gettext on FreeBSD 4.x with gcc 3.3 PLIST_SUB+= 5X="@comment " .else -PLIST_SUB+= 5X="" +PLIST_SUB+= 5X="@comment " .endif .include <bsd.port.post.mk> diff --git a/math/qalculate/files/patch-src::Makefile.in b/math/qalculate/files/patch-src::Makefile.in new file mode 100644 index 000000000000..8a39fe6ce887 --- /dev/null +++ b/math/qalculate/files/patch-src::Makefile.in @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig Wed Sep 1 10:41:43 2004 ++++ src/Makefile.in Wed Sep 1 10:41:50 2004 +@@ -110,7 +110,7 @@ + LIBOBJS = @LIBOBJS@ + LIBS = @LIBS@ + LIBTOOL = @LIBTOOL@ +-LN_S = @LN_S@ ++LN_S = @LN_S@ -f + LTLIBOBJS = @LTLIBOBJS@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ |