-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1) use SOVERSION (don't hardcode library versions in plists) 2) use pre-configure over post-patch (good practice) 3) only .so files stay in dev* * that's the current standard It's not perfect because sometimes configuration scripts assume that if .so is there, the symlinked target is also there. In reality .so files should be separate from both dev and primary subpackages but that is too cumbersome. so the result is sometimes the port has to physically remove the file after installation. Maybe rvn can be modified to help here?
- Loading branch information
Showing
3 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
lib/libfreeimage-3.18.0.so | ||
lib/libfreeimageplus-3.18.0.so | ||
lib/libfreeimage-%%SOVERSION%%.so | ||
lib/libfreeimage.so.%%SOMAJOR%% | ||
lib/libfreeimageplus-%%SOVERSION%%.so | ||
lib/libfreeimageplus.so.%%SOMAJOR%% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters