diff options
author | miwi <miwi@FreeBSD.org> | 2008-04-27 16:18:42 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-04-27 16:18:42 +0800 |
commit | 31d3382159f174dfdb09faddbd31035bee618d39 (patch) | |
tree | 1bd6a531251625f69421b5d65f486589e8f8d1b5 /sysutils | |
parent | f291f3df9dc30bcc362683b9bad80625bbbf001f (diff) | |
download | freebsd-ports-gnome-31d3382159f174dfdb09faddbd31035bee618d39.tar.gz freebsd-ports-gnome-31d3382159f174dfdb09faddbd31035bee618d39.tar.zst freebsd-ports-gnome-31d3382159f174dfdb09faddbd31035bee618d39.zip |
- Add MANCOMPRESSED=no
- Fix library path order so [older] qpxtool libraries
under /usr/local/lib don't get erroneously linked during
port updating
PR: 122637
Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> (maintainer)
Reported by: bms
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/qpxtool/Makefile | 2 | ||||
-rw-r--r-- | sysutils/qpxtool/files/patch-qpxtool-gui-Makefile | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/sysutils/qpxtool/Makefile b/sysutils/qpxtool/Makefile index 8063846dae72..5e417ee1a227 100644 --- a/sysutils/qpxtool/Makefile +++ b/sysutils/qpxtool/Makefile @@ -7,6 +7,7 @@ PORTNAME= qpxtool PORTVERSION= 0.6.1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= SF @@ -24,6 +25,7 @@ MAKE_ENV= QMAKESPEC=${LOCALBASE}/share/qt/mkspecs/freebsd-g++ \ QTDIR="${QT_PREFIX}" USE_LDCONFIG= yes +MANCOMPRESSED= no MAN8= pxcontrol.8 pxfw.8 post-patch: diff --git a/sysutils/qpxtool/files/patch-qpxtool-gui-Makefile b/sysutils/qpxtool/files/patch-qpxtool-gui-Makefile new file mode 100644 index 000000000000..88146143c335 --- /dev/null +++ b/sysutils/qpxtool/files/patch-qpxtool-gui-Makefile @@ -0,0 +1,11 @@ +--- qpxtool-gui/Makefile.orig 2007-08-19 18:04:14.000000000 +0400 ++++ qpxtool-gui/Makefile 2008-04-10 22:06:05.000000000 +0400 +@@ -15,7 +15,7 @@ + CONFIG+="thread" \ + INCLUDEPATH+="../lib/include" \ + LIBS+="-lqpxtransport -lqpxplextor -lqpxpioneer -lqpxscan" \ +- LIBPATH+="../lib/lib" ++ LIBPATH="../lib/lib \$${LIBPATH}" + + install: Makefile.qmake + install -m 4755 qpxtool $(DESTDIR)$(BINDIR) |