diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2014-09-25 23:18:27 +0800 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2014-09-25 23:18:27 +0800 |
commit | a6d2f30533e141f8a5dc3d20b01d58339654c5cf (patch) | |
tree | c350c4abc20ce22bda0b7dba0636816742669bc8 /graphics/ocrfeeder | |
parent | ac56971df4fe7c1fad64354371b6054246299b18 (diff) | |
download | freebsd-ports-gnome-a6d2f30533e141f8a5dc3d20b01d58339654c5cf.tar.gz freebsd-ports-gnome-a6d2f30533e141f8a5dc3d20b01d58339654c5cf.tar.zst freebsd-ports-gnome-a6d2f30533e141f8a5dc3d20b01d58339654c5cf.zip |
- Set CPPFLAGS and LIBS in a number of ports so configure can find libintl.h
and libintl.so. This fixes a problem where DATADIRNAME gets an incorrect
value which causes locale files to be installed in the wrong place.
- The only configure checks that still need to be patched are related
to intltool so move DATADIRNAME patching from USES=pathfix to
USE_GNOME=intlhack.
- games/klavaro: remove excessive dependencies
- japanese/libskk: add INSTALL_TARGET=install-strip
- math/libqalculate: add INSTALL_TARGET=install-strip and remove pthread
patching
- multimedia/freetuxtv: remove excessive dependencies
- science/gramps: fix shared-mime-info use
Exp-run by: antoine
Approved by: portmgr (antoine)
Diffstat (limited to 'graphics/ocrfeeder')
-rw-r--r-- | graphics/ocrfeeder/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/graphics/ocrfeeder/Makefile b/graphics/ocrfeeder/Makefile index 71609c471434..f804183256be 100644 --- a/graphics/ocrfeeder/Makefile +++ b/graphics/ocrfeeder/Makefile @@ -23,12 +23,14 @@ RUN_DEPENDS:= ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \ gtkspell3>0:${PORTSDIR}/textproc/gtkspell3 \ ${BUILD_DEPENDS} -USES= desktop-file-utils gettext gmake pathfix pkgconfig tar:xz +USES= desktop-file-utils gettext gmake pkgconfig tar:xz USE_GNOME= gnomedocutils gnomehier gtk30 librsvg2 pygobject3 USE_GHOSTSCRIPT=yes USE_PYTHON= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-silent-rules +CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib post-patch: @${REINPLACE_CMD} -e \ |