Opened 12 years ago
Closed 11 years ago
#38995 closed submission (fixed)
Submission: etsf_io
Reported by: | dstrubbe (David Strubbe) | Owned by: | macports-tickets@… |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | 2.1.3 |
Keywords: | Cc: | cooljeanius (Eric Gallager), ryandesign (Ryan Carsten Schmidt) | |
Port: | etsf_io |
Description
Portfile for ETSF_IO, an input/output library for electronic structure codes, intended for the science category.
Attachments (1)
Change History (12)
comment:1 Changed 12 years ago by cooljeanius (Eric Gallager)
comment:2 follow-up: 3 Changed 12 years ago by dstrubbe (David Strubbe)
Hm, thanks for trying it out. Were you building etsf_io, netcd-fortran, or both as universal? netcdf-fortran puts its mods here for me, when building +gcc46 and not universal:
/opt/local/include/NETCDF.mod /opt/local/include/TYPESIZES.mod
Not sure why this would be different. I don't see anything about mods explicitly in the netcdf-fortran Portfile. Also, there are no other ports depending on netcdf-fortran to use as a model, it seems from "port list depends:netcdf-fortran".
comment:3 Changed 12 years ago by cooljeanius (Eric Gallager)
Replying to dstrubbe@…:
Hm, thanks for trying it out. Were you building etsf_io, netcd-fortran, or both as universal?
Both. I have +universal
in my variants.conf
file.
comment:4 follow-up: 5 Changed 12 years ago by dstrubbe (David Strubbe)
I tried to build netcdf-fortran +universal
, but it set off a cascade of rebuilds of dependencies, ending in an error (#39016), so I cannot reproduce.
Maybe something like this is needed?
variant universal { configure.args.delete --with-netcdf-module-path=${prefix}/include configure.args.append --with-netcdf-module-path=${prefix}/mod32/include }
But, should it use mod32 or mod64?
comment:5 Changed 12 years ago by cooljeanius (Eric Gallager)
Replying to dstrubbe@…:
But, should it use mod32 or mod64?
If you use the `muniversal` portgroup, I'm pretty sure you could use both... although I'm not sure how exactly though...
comment:7 follow-up: 8 Changed 12 years ago by dstrubbe (David Strubbe)
Well, maybe the simplest is just to add "universal_variant no". I am not sure how to use the portgroup.
comment:8 Changed 12 years ago by cooljeanius (Eric Gallager)
Replying to dstrubbe@…:
I am not sure how to use the portgroup.
Yeah, it could really use some more usage notes in its comments...
Edit: That's #32428
comment:9 Changed 11 years ago by dstrubbe (David Strubbe)
Ok let's just have no universal, pending figuring out how to do that properly. Please review my revised Portfile submission.
Changed 11 years ago by dstrubbe (David Strubbe)
comment:10 Changed 11 years ago by ryandesign (Ryan Carsten Schmidt)
Cc: | ryandesign@… added |
---|
Fetch fails because the host is offline. I found a copy of the distfile on Launchpad.
Configure fails:
checking for /opt/local/include/netcdf.mod... no checking for /opt/local/include/NETCDF.mod... no checking for /opt/local/include/NETCDF.MOD... no Action: install NetCDF and set its path with --with-netcdf-module-path. configure: error: "No 'NetCDF' module found."
Note that I do have netcdf-fortran installed with the universal variant. It appears that netcdf-fortran installs NETCDF.mod into a different place depending on whether it is installed with the universal variant or not. That makes it difficult for ports like etsf_io that want to use NETCDF.mod to know where it is. This might be a bug in netcdf-fortran; I've filed #39319 for that.
comment:11 Changed 11 years ago by ryandesign (Ryan Carsten Schmidt)
Resolution: | → fixed |
---|---|
Status: | new → closed |
Committed the port in r106631 with these changes:
- added launchpad download location (the main host is back up in the mean time)
- changed "mod32" and "mod64" to "mods32" and "mods64" in comment about netcdf-fortran universal
- added "require_active_variants netcdf-fortran {} universal" to ensure netcdf-fortran is not installed universal, until we figure out what to do about that
- instead of setting "FCFLAGS=-O3 CFLAGS=-O3" in configure.args, I set configure.optflags to "-O3"
I tried building it, and it ran into this error when configuring:
This is where netcdf-fortran puts its mods:
Not sure how you'd do this when building universal... maybe by using the
muniversal
portgroup? idk...