diff options
author | linimon <linimon@FreeBSD.org> | 2004-10-12 14:40:48 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2004-10-12 14:40:48 +0800 |
commit | 121cd4e5efb99ea4cf958c158df85f2ca091d7d7 (patch) | |
tree | 3fc617f8a3448edcb41fa96c0ab6c723bd1fb624 /math/qalculate | |
parent | 36c8e21b3d087f83eaa8fd4855e5fcfa4d4d4171 (diff) | |
download | freebsd-ports-gnome-121cd4e5efb99ea4cf958c158df85f2ca091d7d7.tar.gz freebsd-ports-gnome-121cd4e5efb99ea4cf958c158df85f2ca091d7d7.tar.zst freebsd-ports-gnome-121cd4e5efb99ea4cf958c158df85f2ca091d7d7.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)
Diffstat (limited to 'math/qalculate')
-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@ |