Opened 19 years ago
Closed 19 years ago
#4216 closed defect (fixed)
BUG: antigraingeometry-2.3_4
Reported by: | loic@… | Owned by: | macports-tickets@… |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | 1.0 |
Keywords: | Cc: | ||
Port: |
Description
antigraingeometry (version 2.3_4)
the error log can be found here: something about md5 checksum not correct. Cannot check form com.apple...
Description: MD5 and SHA1 checksums are not correct. Installation is blocked.
Comments: Installation is ok after updating Portfile (joined below). Current incorrect checksums are: md5 c4a48ee42fdbcc75d5ce12111f6f7cef sha1 21afd90246817f13b80c6df5f501c9f8811b885e
and correct checksums are: md5 c63d8d8f222ad1c8511f1040ff3804a7 sha1 0591662d83767333bec24da790cec45c0ccaa299
================INLINE CONTENT================ # $Id: Portfile,v 1.7 2005/06/26 19:48:01 blb Exp $
PortSystem 1.0 name antigraingeometry version 2.3 revision 4 categories graphics devel maintainers blb@… description A high quality rendering engine for C++ long_description \
Anti-Grain Geometry (AGG) is a general purpose graphical toolkit \ written completely in standard and platform independent C++. It can be \ used in many areas of computer programming where high quality 2D \ graphics is an essential part of the project. For example, if you \ render 2D geographic maps AGG is a must. AGG uses only C++ and standard \ C runtime functions, such as memcpy, sin, cos, sqrt, etc. The basic \ algorithms don't even use C++ Standard Template Library. Thus, AGG can \ be used in a very large number of applications, including embedded \ systems.
platforms darwin
homepage http://www.antigrain.com/ master_sites ${homepage} distname agg23
checksums md5 c63d8d8f222ad1c8511f1040ff3804a7 \
depends_lib lib:libfreetype.6:freetype lib:libX11:XFree86
patchfiles patch-Makefile.am
use_autoconf yes use_automake yes automake.args --foreign --add-missing --ignore-deps
pre-configure {
cd ${worksrcpath} if {[variant_isset darwin]} {
system "aclocal -I /usr/share/aclocal" system "glibtoolize --force"
} else {
system "aclocal" system "libtoolize --force"
}
}
configure.args LD_TWOLEVEL_NAMESPACE=1 MACOSX_DEPLOYMENT_TARGET="10.3"
build.env MACOSX_DEPLOYMENT_TARGET="10.3"
post-destroot {
xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} README.txt readme \
${destroot}${prefix}/share/doc/${name}
file copy ${worksrcpath}/tutorial \
${destroot}${prefix}/share/doc/${name}
}
# Empty so it gets set for pre-configure variant darwin { }
Portfile for the latest 2.3 archive has been correct; thanks for the report.