diff options
author | Gabor Kovesdan <gabor@FreeBSD.org> | 2007-08-04 11:41:30 +0000 |
---|---|---|
committer | Gabor Kovesdan <gabor@FreeBSD.org> | 2007-08-04 11:41:30 +0000 |
commit | 42542fb07642b8336e808272918f3ae46aa67e0b (patch) | |
tree | 98ff235c33c6493aa26457284f122652c38935f7 /math | |
parent | 4c9cd257fd4e6eca46807a43e128d298429ee3cd (diff) |
Notes
Diffstat (limited to 'math')
-rw-r--r-- | math/PDL/Makefile | 10 | ||||
-rw-r--r-- | math/blas/files/makefile.lib | 2 | ||||
-rw-r--r-- | math/ltl/Makefile | 2 | ||||
-rw-r--r-- | math/py-matplotlib/Makefile | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/math/PDL/Makefile b/math/PDL/Makefile index f555d742edaa..b400740f679f 100644 --- a/math/PDL/Makefile +++ b/math/PDL/Makefile @@ -75,17 +75,17 @@ test: # autogen plist post-install: @(cd ${WRKSRC}/blib/man3 ; \ - ${FIND} *.3 | ${SED} "s,^,${MAN3PREFIX:S,^${TARGETDIR}/,,}/man/man3/," \ + ${FIND} *.3 | ${SED} "s,^,${MAN3PREFIX:S,^${PREFIX}/,,}/man/man3/," \ >> ${TMPPLIST} ; \ cd ${WRKSRC}/blib/man1 ; \ ${FIND} *.1 | ${SED} "s,^,man/man1/," >> ${TMPPLIST}) @(${FIND} ${SITE_PERL}/${PERL_ARCH}/PDL* -type f | \ - ${SED} "s,^${TARGETDIR}/,," >> ${TMPPLIST} ; \ + ${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} ; \ ${FIND} ${SITE_PERL}/${PERL_ARCH}/PDL* -type d | ${SORT} -r | \ - ${SED} "s,^${TARGETDIR}/,@dirrm ," >> ${TMPPLIST} ; \ + ${SED} "s,^${PREFIX}/,@dirrm ," >> ${TMPPLIST} ; \ ${FIND} ${SITE_PERL}/${PERL_ARCH}/auto/PDL -type f | \ - ${SED} "s,^${TARGETDIR}/,," >> ${TMPPLIST} ; \ + ${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} ; \ ${FIND} ${SITE_PERL}/${PERL_ARCH}/auto/PDL -type d | ${SORT} -r | \ - ${SED} "s,^${TARGETDIR}/,@dirrm ," >> ${TMPPLIST}) + ${SED} "s,^${PREFIX}/,@dirrm ," >> ${TMPPLIST}) .include <bsd.port.post.mk> diff --git a/math/blas/files/makefile.lib b/math/blas/files/makefile.lib index 99a484141cfc..f12ef652709d 100644 --- a/math/blas/files/makefile.lib +++ b/math/blas/files/makefile.lib @@ -1,7 +1,7 @@ # @(#)Makefile 5.7 (Berkeley) 6/27/91 FFLAGS= @FFLAGS@ -LIBDIR= ${TARGETDIR}/lib +LIBDIR= ${PREFIX}/lib .if (${OSVERSION} > 600007) NO_PROFILE= no .else diff --git a/math/ltl/Makefile b/math/ltl/Makefile index 4d7922c2318e..029142c5c4c7 100644 --- a/math/ltl/Makefile +++ b/math/ltl/Makefile @@ -20,7 +20,7 @@ GNU_CONFIGURE= yes USE_AUTOTOOLS= libtool:15 CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --with-cxx=gcc --disable-doxygen --prefix=${PREFIX} --includedir=${PREFIX}/include/LTL -MAKE_ENV= prefix=${TARGETDIR} exec_prefix=${TARGETDIR} +MAKE_ENV= prefix=${PREFIX} exec_prefix=${PREFIX} MAKE_ARGS+= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \ AUTOHEADER="${TRUE}" INSTALL_TARGET= install install-data check distdir diff --git a/math/py-matplotlib/Makefile b/math/py-matplotlib/Makefile index 6f7e5732f424..63d6316762ad 100644 --- a/math/py-matplotlib/Makefile +++ b/math/py-matplotlib/Makefile @@ -37,7 +37,7 @@ USE_TCL_RUN= yes USE_TK_RUN= yes CFLAGS+= -I${X11BASE}/include -EXAMPLESDIR= ${TARGETDIR}/share/examples/py-${PORTNAME} +EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} post-patch: @${GREP} -lR "share/matplotlib" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \ |