| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 09 Jan 2026 20:47:53 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100106195407
location: https://web.archive.org/web/20100106195407/https://pango-devel.darwinports.com/
server-timing: captures_list;dur=0.657728, exclusion.robots;dur=0.049707, exclusion.robots.policy;dur=0.036774, esindex;dur=0.011263, cdx.remote;dur=7.628740, LoadShardBlock;dur=194.822673, PetaboxLoader3.datanode;dur=126.187541, PetaboxLoader3.resolve;dur=27.534080
x-app-server: wwwb-app211-dc8
x-ts: 302
x-tr: 235
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app211; path=/
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 09 Jan 2026 20:47:54 GMT
content-type: text/html
x-archive-orig-date: Wed, 06 Jan 2010 19:39:58 GMT
x-archive-orig-server: Apache
x-archive-orig-vary: Accept-Encoding
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: iso-8859-1
memento-datetime: Wed, 06 Jan 2010 19:54:07 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: TLA-20100106192508-00481-ia360906-c/TLA-20100106194752-00538-ia360908.us.archive.org.warc.gz
server-timing: captures_list;dur=0.853361, exclusion.robots;dur=0.033361, exclusion.robots.policy;dur=0.014800, esindex;dur=0.020783, cdx.remote;dur=25.559939, LoadShardBlock;dur=139.686206, PetaboxLoader3.datanode;dur=110.882993, PetaboxLoader3.resolve;dur=77.233049, load_resource;dur=84.066346
x-app-server: wwwb-app211-dc8
x-ts: 200
x-tr: 336
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Pango-devel version 1.25.6 - How to Download and Install on Mac OS X
|
|||||||||
Wednesday the 6th of January, 2010 |
|||||||||
pango-devel most recent diffversion 1.25.6
Scroll down toward the bottom of the page to get installation instructions for pango-devel. The raw portfile for pango-devel 1.25.6 is located here: https://pango-devel.darwinports.com/dports/x11/pango-devel/Portfile Find related portfiles with the unique DarwinPorts.com search feature. Check for any related Fink projects here: pdb.finkproject.org/pdb/package.php/pango-devel The pango-devel Portfile 58519 2009-09-30 06:16:15Z ryandesign PortSystem 1.0 PortGroup muniversal 1.0 Name: pango-devel conflicts pango set my_name pango Version: 1.25.6 set branch [join [lrange [split ${version} .] 0 1] .] Category: x11 Maintainers: ryandesign license LGPLv2 Homepage: https://www.pango.org/ Master Sites: gnome:sources/${my_name}/${branch} Platform: darwin distname ${my_name}-${version} dist_subdir ${my_name} use_bzip2 yes use_parallel_build yes Description: Framework for the layout and rendering of i18n text Long Description: The goal of the Pango project is to provide an open-source framework for the layout and rendering of internationalized text. Checksums: md5 f578a348fbe5f616d104b3a5ecbd2005 sha1 092a4650158bb8e022482f22f26190bb0c3309b8 rmd160 2cdfeb0d13e80f251babfef37e26e3c9203381de depends_extract port:pkgconfig depends_lib path:lib/pkgconfig/glib-2.0.pc:glib2 port:Xft2 path:lib/pkgconfig/cairo.pc:cairo Patch Files: patch-which.diff patch-ltmain.sh.diff configure.ccache no # Do not call gzip on man files as it interferes with the universal merger process. post-patch { reinplace "s|\$(MAKE) \$(AM_MAKEFLAGS) install-data-hook||" ${worksrcpath}/pango-view/Makefile.in } platform macosx {} Variant: quartz requires macosx { # Although this variant does nothing, pango will automatically build # itself differently depending on whether or not cairo is installed with # the quartz variant. Therefore this variant is necessary to be able to # distinguish whether an installed pango has quartz support or not. # pango 1.25.1 and up uses Core Text which is only available on 10.5+. pre-extract { if {${os.major} < 9} { ui_error "${name} ${version} +quartz requires Mac OS X 10.5 or greater." ui_error "Either don't use the +quartz variant or upgrade your Mac OS X." ui_error "Concerns about this should be addressed to the Pango mailing list:" ui_error "https://mail.gnome.org/mailman/listinfo/gtk-i18n-list" return -code error "incompatible Mac OS X version" } } } pre-extract { set glib_minimum_version 2.17.3 set glib_installed_version [exec pkg-config glib-2.0 --modversion] if {[rpm-vercomp ${glib_installed_version} ${glib_minimum_version}] < 0} { ui_error "${name} ${version} requires glib2 ${glib_minimum_version} or later but you have glib2 ${glib_installed_version}." return -code error "incompatible glib2 version" } set cairo_minimum_version 1.7.4 set cairo_installed_version [exec pkg-config cairo --modversion] if {[rpm-vercomp ${cairo_installed_version} ${cairo_minimum_version}] < 0} { ui_error "${name} ${version} requires cairo ${cairo_minimum_version} or later but you have cairo ${cairo_installed_version}." return -code error "incompatible cairo version" } set cairo_quartz_pc ${prefix}/lib/pkgconfig/cairo-quartz.pc if {[variant_isset quartz]} { if {![file exists ${cairo_quartz_pc}]} { ui_error "To install pango with the quartz variant, cairo must be installed with the quartz variant." return -code error "incompatible cairo installation" } } else { if {[file exists ${cairo_quartz_pc}]} { ui_error "To install pango without the quartz variant, cairo must be installed without the quartz variant." return -code error "incompatible cairo installation" } } set cairo_xlib_pc ${prefix}/lib/pkgconfig/cairo-xlib.pc if {[variant_isset no_x11]} { if {[file exists ${cairo_xlib_pc}]} { ui_error "To install pango with the no_x11 variant, cairo must be installed with the no_x11 variant." return -code error "incompatible cairo installation" } } else { if {![file exists ${cairo_xlib_pc}]} { ui_error "To install pango without the no_x11 variant, cairo must be installed without the no_x11 variant." return -code error "incompatible cairo installation" } } } if { ${os.arch}=="i386" } { set merger_configure_env(ppc) "NM='/usr/bin/nm -p'" set merger_configure_env(ppc64) "NM='/usr/bin/nm -p'" } else { set merger_configure_env(i386) "NM='/usr/bin/nm -p'" set merger_configure_env(x86_64) "NM='/usr/bin/nm -p'" } lappend merger_configure_env(ppc64) ac_cv_header_Carbon_Carbon_h=no lappend merger_configure_env(x86_64) ac_cv_header_Carbon_Carbon_h=no configure.cppflags-append -no-cpp-precomp configure.ldflags-append -no-undefined -bind_at_load configure.args --enable-static --x-include=${prefix}/include --x-lib=${prefix}/lib Variant: no_x11 { depends_lib-delete port:Xft2 configure.args-append --without-x } post-destroot { if {[variant_isset no_x11]} { xinstall -d ${destroot}${prefix}/etc/pango } xinstall -m 0644 ${worksrcpath}/modules/pangorc ${destroot}${prefix}/etc/pango reinplace "s|\\.\\./modules/|${prefix}/etc/pango/|g" ${destroot}${prefix}/etc/pango/pangorc system "env LANG=C DYLD_LIBRARY_PATH=${destroot}${prefix}/lib ${destroot}${prefix}/bin/pango-querymodules ${destroot}${prefix}/lib/pango/1.6.0/modules/*.so >${destroot}${prefix}/etc/pango/pango.modules" reinplace s|${destroot}||g ${destroot}${prefix}/etc/pango/pango.modules set docdir ${prefix}/share/doc/${name}-${version} xinstall -d ${destroot}${docdir} xinstall -m 0644 -W ${worksrcpath} AUTHORS ChangeLog COPYING MAINTAINERS NEWS README THANKS ${destroot}${docdir} } test.run yes test.target check livecheck.type regex livecheck.url https://ftp.gnome.org/pub/GNOME/sources/${my_name}/${branch}/?C=M&O;=D livecheck.regex ${my_name}-(\[0-9.\]+)\\.tar If you haven't already installed Darwin Ports, you can find easy instructions for doing so at the main Darwin Ports page. Once Darwin Ports has been installed, in a terminal window and while online, type the following and hit return:
% cd /opt/local/bin/portslocation/dports/pango-develYou will then be prompted for your root password, which you should enter. You may have to wait for a few minutes while the software is retrieved from the network and installed for you. Y ou should see something that looks similar to: - Make sure that you do not close the terminal window while Darwin Ports is working. Once the software has been installed, you can find further information about using pango-devel with these commands: % man pango-devel Where to find more information:
This website is back-ended by DB5, the best database in the business,
|
![]() |
![]()
Order Snow Leopard MacOSX 10.6 for only $29!
Other Helpful SitesMacOSForgeDebian Packages MacPorts - SVN Freshports - FreeBSD Fink Package List RPM for MacOSX Port Categories
accounting
amusements aqua archivers audio benchmarks biology blinkenlights cad chat chinese comms compression cross crypto databases devel editors education electronics emacs emulators erlang finance fonts framework fuse games genealogy gis gnome gnustep graphics gtk haskell iphone irc japanese java kde kde4 lang macports math mercurial ml mono multimedia net network news ocaml office palm parallel perl php pim project python reporting rox ruby russian scheme science security shells spelling squeak sysutils tcl tex textproc tk unicode vnc win32 wsn www x11 x11-font x11-wm xfce zope
Current SVN DownloadsDarwin Ports Current :nightly SVN snapshot SSH Key Gen See also: GNU-Darwin Ports for GNU-only software |
|||||||
| |




