diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-03-14 19:16:45 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-03-14 19:16:45 +0800 |
commit | 2afa682dfaff5aacfa000d819c170a88d58ebd00 (patch) | |
tree | 4bc499a7118b337f272e102e7049d1a157a17452 /graphics | |
parent | 78839d23eba90e7948c9bd6e8ce5c4d6e145ef97 (diff) | |
download | freebsd-ports-gnome-2afa682dfaff5aacfa000d819c170a88d58ebd00.tar.gz freebsd-ports-gnome-2afa682dfaff5aacfa000d819c170a88d58ebd00.tar.zst freebsd-ports-gnome-2afa682dfaff5aacfa000d819c170a88d58ebd00.zip |
Adjust in accordance with the new location of freetype1 includes
(${PREFIX}/include/freetype1/freetype, not ${PREFIX}/include/freetype).
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/imlib2/Makefile | 3 | ||||
-rw-r--r-- | graphics/p5-Imager/Makefile | 3 | ||||
-rw-r--r-- | graphics/py-paint/Makefile | 2 | ||||
-rw-r--r-- | graphics/xpdf/Makefile | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/graphics/imlib2/Makefile b/graphics/imlib2/Makefile index 6b0a21c35315..f8ac2adfb2d6 100644 --- a/graphics/imlib2/Makefile +++ b/graphics/imlib2/Makefile @@ -23,7 +23,8 @@ USE_X_PREFIX= yes USE_FREETYPE= yes USE_LIBTOOL= yes INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/freetype1 \ + -I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" .include <bsd.port.pre.mk> diff --git a/graphics/p5-Imager/Makefile b/graphics/p5-Imager/Makefile index f960d74b6770..ab3167cca5d3 100644 --- a/graphics/p5-Imager/Makefile +++ b/graphics/p5-Imager/Makefile @@ -24,7 +24,8 @@ LIB_DEPENDS= t1:${PORTSDIR}/devel/t1lib \ USE_FREETYPE= yes PERL_CONFIGURE= yes -CONFIGURE_ENV= IM_LIBPATH="${LOCALBASE}/lib" +CONFIGURE_ENV= IM_LIBPATH="${LOCALBASE}/lib" \ + IM_INCPATH="${LOCALBASE}/include/freetype1/freetype" USE_GMAKE= yes MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} diff --git a/graphics/py-paint/Makefile b/graphics/py-paint/Makefile index 9ef833cdbd7b..a4ac6f27fdaa 100644 --- a/graphics/py-paint/Makefile +++ b/graphics/py-paint/Makefile @@ -25,7 +25,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME} SHARE_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME} PYDIST_SETUP= cd ${WRKSRC} && ${PYTHON_CMD} setup.py -INC_DIRS= ["${LOCALBASE}/include","${X11BASE}/include","${LOCALBASE}/include/freetype"] +INC_DIRS= ["${LOCALBASE}/include/freetype1","${LOCALBASE}/include","${X11BASE}/include","${LOCALBASE}/include/freetype"] LIB_DIRS= ["${LOCALBASE}/lib","${X11BASE}/lib"] REPATCH= cd ${WRKSRC} && ${SED} REPATCHSUBST= -e 's@^\(.*libraries.*\)$$@\1include_dirs=${INC_DIRS},library_dirs=${LIB_DIRS},@g' diff --git a/graphics/xpdf/Makefile b/graphics/xpdf/Makefile index 17934b790901..3167c2bb39f4 100644 --- a/graphics/xpdf/Makefile +++ b/graphics/xpdf/Makefile @@ -25,7 +25,7 @@ CONFIGURE_ARGS= --with-gzip --enable-opi \ --with-t1-library=${LOCALBASE}/lib \ --with-t1-includes=${LOCALBASE}/include \ --with-freetype-library=${LOCALBASE}/lib \ - --with-freetype-includes=${LOCALBASE}/include/freetype + --with-freetype-includes=${LOCALBASE}/include/freetype1/freetype .if defined(A4) CONFIGURE_ARGS+= --enable-a4-paper .endif |