diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-04-29 19:23:21 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-04-29 19:23:21 +0800 |
commit | ba9abfc62162dff8039b7c7ad9a5cf0fff66a484 (patch) | |
tree | e00fb3e2dfa5486f872dd5a5dbfaa4737edd50bd /devel/pkgconfig/pkg-descr | |
parent | 844409bc2a707cb6fdb2fd35adf2dd0967ef8166 (diff) | |
download | freebsd-ports-gnome-ba9abfc62162dff8039b7c7ad9a5cf0fff66a484.tar.gz freebsd-ports-gnome-ba9abfc62162dff8039b7c7ad9a5cf0fff66a484.tar.zst freebsd-ports-gnome-ba9abfc62162dff8039b7c7ad9a5cf0fff66a484.zip |
Add pkgconfig 0.5.0, an utility used to retrieve information about
installed libraries.
Diffstat (limited to 'devel/pkgconfig/pkg-descr')
-rw-r--r-- | devel/pkgconfig/pkg-descr | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/devel/pkgconfig/pkg-descr b/devel/pkgconfig/pkg-descr new file mode 100644 index 000000000000..e65c9fb28df1 --- /dev/null +++ b/devel/pkgconfig/pkg-descr @@ -0,0 +1,17 @@ +The pkg-config program is used to retrieve information about installed +libraries in the system. It is typically used to compile and link against one +or more libraries. + +pkg-config retrieves information about packages from special metadata files. +These files are named after the package, with the extension .pc. By default, +pkg-config looks in the directory ${PREFIX}/libata/pkgconfig for these files; +it will also look in the list of directories specified by the PKG_CONFIG_PATH +environment variable. + +The package name specified on the pkg-config command line is defined to be the +name of the metadata file, minus the .pc extension. If a library can install +multiple versions simultaneously, it must give each version its own name (for +example, GTK 1.2 might have the package name "gtk+" while GTK 2.0 has +"gtk+-2.0"). + +WWW: http://pkgconfig.sourceforge.net |