diff options
author | maho <maho@FreeBSD.org> | 2005-01-25 13:47:56 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2005-01-25 13:47:56 +0800 |
commit | 991921fc2b6a5e219a8dc173c3fa2af2643c156f (patch) | |
tree | dfe382b148952525fbff9073b0d53c5c6115e1c0 /math | |
parent | 01ea647f95be21e286098481aa74ca87925e969b (diff) | |
download | freebsd-ports-gnome-991921fc2b6a5e219a8dc173c3fa2af2643c156f.tar.gz freebsd-ports-gnome-991921fc2b6a5e219a8dc173c3fa2af2643c156f.tar.zst freebsd-ports-gnome-991921fc2b6a5e219a8dc173c3fa2af2643c156f.zip |
Add a warning message
Suggested by: Rob D. <162144@gmail.com>
Diffstat (limited to 'math')
-rw-r--r-- | math/atlas-devel/Makefile | 9 | ||||
-rw-r--r-- | math/atlas/Makefile | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/math/atlas-devel/Makefile b/math/atlas-devel/Makefile index c905ee32a6a8..0af4bb2dbaf9 100644 --- a/math/atlas-devel/Makefile +++ b/math/atlas-devel/Makefile @@ -48,7 +48,7 @@ post-patch: .endif .if ${MACHINE_ARCH} == "sparc64" -PICFLAG?= -fPIC +PICFLAG?= -fPIC .else PICFLAG?= -fpic .endif @@ -74,6 +74,13 @@ do-configure: ATLAS_LIBS1=libalapack libatlas libcblas libf77blas libtstatlas ATLAS_LIBS2=libptcblas libptf77blas +pre-build: + @${ECHO_MSG} "Warning:" + @${ECHO_MSG} "Building this port can take long time" + @${ECHO_MSG} "for slow computers (over 1 day)." + @${ECHO_MSG} "And sometimes stop building for Athlon." + @${ECHO_MSG} "In this case please retype make or rebuild whole atlas." + do-build: # make lapack .if ! exists(${WRKDIR}/lapack/Makefile) diff --git a/math/atlas/Makefile b/math/atlas/Makefile index 4c97b8145d77..2d15ddfb9914 100644 --- a/math/atlas/Makefile +++ b/math/atlas/Makefile @@ -47,7 +47,7 @@ post-patch: .endif .if ${MACHINE_ARCH} == "sparc64" -PICFLAG?= -fPIC +PICFLAG?= -fPIC .else PICFLAG?= -fpic .endif @@ -73,6 +73,13 @@ do-configure: ATLAS_LIBS1=libalapack libatlas libcblas libf77blas libtstatlas ATLAS_LIBS2=libptcblas libptf77blas +pre-build: + @${ECHO_MSG} "Warning:" + @${ECHO_MSG} "Building this port can take long time" + @${ECHO_MSG} "for slow computers (over 1 day)." + @${ECHO_MSG} "And sometimes stop building for Athlon." + @${ECHO_MSG} "In this case please retype make or rebuild whole atlas." + do-build: # make lapack .if ! exists(${WRKDIR}/lapack/Makefile) |