import of pear-1.5.0;

This port is going to replace the -pear subpackage of www/php5/core.
We have been planning this for a long time now.
Currently is not hooked to the builds, because it needs more testing.
This commit is contained in:
robert 2007-03-19 23:13:23 +00:00
parent 732fa02e8d
commit 6cd9243157
10 changed files with 512 additions and 0 deletions

54
www/pear/Makefile Normal file
View File

@ -0,0 +1,54 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/03/19 23:13:23 robert Exp $
COMMENT-main= "base classes for common PHP tasks"
COMMENT-utils= "utilities for managing pear extensions"
VERSION= 1.5.0
DISTNAME= pear-${VERSION}
PKGNAME= ${DISTNAME}
PKGNAME-main= ${DISTNAME}
PKGNAME-utils= pear-utils-${VERSION}
CATEGORIES= www devel
EXTRACT_SUFX= .tar.bz2
HOMEPAGE= http://pear.php.net/
MASTER_SITES= ${MASTER_SITE_FREEBSD_LOCAL:=ale/}
MAINTAINER= Robert Nagy <robert@openbsd.org>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MULTI_PACKAGES= -main -utils
BUILD_DEPENDS= :php5-core-*:www/php5/core
RUN_DEPENDS-main= ${BUILD_DEPENDS} \
::www/pear,-utils
# Most of pear have to live in /var/www where apache is chroot'ed to.
PREFIX-main= /var/www
PREFIX-utils= /usr/local
NO_BUILD= Yes
NO_REGRESS= Yes
do-install:
@perl -pi -e "s,%%PREFIX%%,${WRKINST}${PREFIX-main},g" ${WRKSRC}/go-pear
@${LOCALBASE}/bin/php -q ${WRKSRC}/go-pear
@mv ${WRKINST}${PREFIX-main}/bin ${WRKINST}${PREFIX-utils}/
@mv ${WRKINST}${PREFIX-main}/share/doc/pear ${WRKINST}${PREFIX-utils}/share/doc/
@mv ${WRKINST}${PREFIX-main}/etc/pear.conf ${WRKINST}${PREFIX-utils}/share/doc/pear
@rm -rf ${WRKINST}${PREFIX-main}/share ${WRKINST}${PREFIX-main}/etc
@find ${WRKINST}${PREFIX-main} -name "*.php" -exec perl -pi -e "s,${WRKINST},,g" {} \;
@find ${WRKINST}${PREFIX-utils}/bin -type f -exec perl -pi -e "s,${WRKINST},,g" {} \;
@patch -d ${WRKINST}${PREFIX-main}/pear < ${FILESDIR}/patch-lib_PEAR_Config_php
@perl -pi -e "s,OPENBSD_PEAR_ROOT,'${PREFIX-main}/pear',g" \
${WRKINST}${PREFIX-main}/pear/lib/PEAR/Config.php
.include <bsd.port.mk>

13
www/pear/Makefile.pear Normal file
View File

@ -0,0 +1,13 @@
# $OpenBSD: Makefile.pear,v 1.1.1.1 2007/03/19 23:13:23 robert Exp $
# Default Makefile to install a PHP PEAR module
default:
install:
cp ${WRKDIR}/package.xml ${.CURDIR}
mkdir -p ${PREFIX}/lib/php
${LOCALBASE}/bin/pear install -R ${WRKINST} -n ${.CURDIR}/package.xml
# These directories and files are not needed
cd ${WRKINST}/var/www/pear && rm -rf cache lib/.channels lib/.channels/__uri.reg \
lib/.depdb* lib/.registry/.channel*

5
www/pear/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (pear-1.5.0.tar.bz2) = b0b026789911b75464bc5e83e1b8f5f7
RMD160 (pear-1.5.0.tar.bz2) = 00b8ad9f8fae7d5e5dad2f1db4cabd436bf3cf63
SHA1 (pear-1.5.0.tar.bz2) = 7040a524b5b23bebc6d202b6a92e93611f05124d
SHA256 (pear-1.5.0.tar.bz2) = 7ce4229e606af74c7027c305022372eafe50db99d2f99570ac647c7da44fe416
SIZE (pear-1.5.0.tar.bz2) = 291923

View File

@ -0,0 +1,68 @@
$OpenBSD: patch-lib_PEAR_Config_php,v 1.1.1.1 2007/03/19 23:13:23 robert Exp $
--- lib/PEAR/Config.php.orig Tue Mar 20 00:01:00 2007
+++ lib/PEAR/Config.php Tue Mar 20 00:03:08 2007
@@ -84,12 +84,7 @@
if (getenv('PHP_PEAR_INSTALL_DIR')) {
define('PEAR_CONFIG_DEFAULT_PHP_DIR', getenv('PHP_PEAR_INSTALL_DIR'));
} else {
- if (file_exists($PEAR_INSTALL_DIR) && is_dir($PEAR_INSTALL_DIR)) {
- define('PEAR_CONFIG_DEFAULT_PHP_DIR',
- $PEAR_INSTALL_DIR);
- } else {
- define('PEAR_CONFIG_DEFAULT_PHP_DIR', $PEAR_INSTALL_DIR);
- }
+ define('PEAR_CONFIG_DEFAULT_PHP_DIR', OPENBSD_PEAR_ROOT.'/lib');
}
// Default for ext_dir
@@ -112,8 +107,7 @@
if (getenv('PHP_PEAR_DOC_DIR')) {
define('PEAR_CONFIG_DEFAULT_DOC_DIR', getenv('PHP_PEAR_DOC_DIR'));
} else {
- define('PEAR_CONFIG_DEFAULT_DOC_DIR',
- $PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'docs');
+ define('PEAR_CONFIG_DEFAULT_DOC_DIR', OPENBSD_PEAR_ROOT.'/doc');
}
// Default for bin_dir
@@ -127,16 +121,14 @@
if (getenv('PHP_PEAR_DATA_DIR')) {
define('PEAR_CONFIG_DEFAULT_DATA_DIR', getenv('PHP_PEAR_DATA_DIR'));
} else {
- define('PEAR_CONFIG_DEFAULT_DATA_DIR',
- $PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'data');
+ define('PEAR_CONFIG_DEFAULT_DATA_DIR', OPENBSD_PEAR_ROOT.'/data');
}
// Default for test_dir
if (getenv('PHP_PEAR_TEST_DIR')) {
define('PEAR_CONFIG_DEFAULT_TEST_DIR', getenv('PHP_PEAR_TEST_DIR'));
} else {
- define('PEAR_CONFIG_DEFAULT_TEST_DIR',
- $PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'tests');
+ define('PEAR_CONFIG_DEFAULT_TEST_DIR', OPENBSD_PEAR_ROOT.'/tests');
}
// Default for temp_dir
@@ -152,9 +144,7 @@
if (getenv('PHP_PEAR_CACHE_DIR')) {
define('PEAR_CONFIG_DEFAULT_CACHE_DIR', getenv('PHP_PEAR_CACHE_DIR'));
} else {
- define('PEAR_CONFIG_DEFAULT_CACHE_DIR',
- System::tmpdir() . DIRECTORY_SEPARATOR . 'pear' .
- DIRECTORY_SEPARATOR . 'cache');
+ define('PEAR_CONFIG_DEFAULT_CACHE_DIR', OPENBSD_PEAR_ROOT.'/cache');
}
// Default for download_dir
@@ -213,9 +203,7 @@
if (getenv('PHP_PEAR_SIG_BIN')) {
define('PEAR_CONFIG_DEFAULT_SIG_BIN', getenv('PHP_PEAR_SIG_BIN'));
} else {
- define('PEAR_CONFIG_DEFAULT_SIG_BIN',
- System::which(
- 'gpg', OS_WINDOWS ? 'c:\gnupg\gpg.exe' : '/usr/local/bin/gpg'));
+ define('PEAR_CONFIG_DEFAULT_SIG_BIN', PHP_PREFIX . '/bin/gpg');
}
// Default for sig_keydir

View File

@ -0,0 +1,150 @@
$OpenBSD: patch-go-pear,v 1.1.1.1 2007/03/19 23:13:23 robert Exp $
--- go-pear.orig Tue Feb 6 18:30:15 2007
+++ go-pear Mon Mar 19 12:23:42 2007
@@ -308,6 +308,7 @@ if (WEBINSTALLER) {
$install_pfc = $_SESSION['go-pear']['install_pfc'];
}
+/*
if (!WEBINSTALLER) {
$tty = WINDOWS ? @fopen('\con', 'r') : @fopen('/dev/tty', 'r');
@@ -351,6 +352,7 @@ If you wish to abort, press Control-C no
$http_proxy = $tmp;
}
}
+*/
$origpwd = getcwd();
@@ -423,6 +425,7 @@ we strongly recommand to use it.
}
}
+/*
while (!WEBINSTALLER) {
print "
Below is a suggested file layout for your new PEAR installation. To
@@ -505,6 +508,7 @@ If you have a CLI (or CGI) php.exe avail
}
}
}
+*/
foreach ($config_vars as $n => $var) {
for ($m = 1; $m <= count($config_vars); $m++) {
@@ -573,6 +577,7 @@ Run this script as $root or pick another
}
}
+/*
if (!WEBINSTALLER) {
$msg = "The following PEAR packages are bundled with PHP: " .
implode(', ', $pfc_packages);
@@ -581,6 +586,7 @@ if (!WEBINSTALLER) {
$install_pfc = !stristr(fgets($tty, 1024), "n");
print "\n";
}
+*/
####
# Download
@@ -592,6 +598,7 @@ if (function_exists('set_include_path'))
ini_set('include_path', $ptmp);
}
+/*
if (!extension_loaded('zlib') && !WEBINSTALLER) { // In Web context we could be in multithread env which makes dl() end up with a fatal error.
if (WINDOWS) {
@dl('php_zlib.dll');
@@ -616,6 +623,7 @@ print "Loading zlib: ".($have_gzip ? 'ok
if (!$have_gzip) {
print "Downloading uncompressed packages\n";
};
+*/
if ($install_pfc) {
$to_install = array_merge($installer_packages, $pfc_packages);
@@ -710,19 +718,6 @@ if (in_array('Getopt.php', $local_dir))
}
print "ok\n";
-print 'Bootstrapping: Console_Getopt.........';
-$r = 'RELEASE_' . ereg_replace('[^A-Za-z0-9]', '_', substr(substr($tarball['Console_Getopt'], 15), 0, -4));
-$url = "http://cvs.php.net/viewcvs.cgi/pear-core/Console/Getopt.php?view=co&pathrev=PEAR_1_4";
-mkdir('Console', 0700);
-if (in_array('Getopt.php', $local_dir)) {
- copy(dirname(__FILE__).'/go-pear-bundle/Getopt.php', 'Console/Getopt.php');
- echo "(local) ";
-} else {
- download_url($url, 'Console/Getopt.php', $http_proxy);
- echo "(remote) ";
-}
-print "ok\n";
-
if ($install_pfc) {
foreach ($pfc_packages as $pkg) {
foreach($local_dir as $file) {
@@ -788,7 +783,7 @@ include_once "PEAR/Registry.php";
if (WEBINSTALLER || isset($_SERVER['argv'][1]) && $_SERVER['argv'][1] == 'local') {
$config = &PEAR_Config::singleton($prefix."/pear.conf", '');
} else {
- $config = &PEAR_Config::singleton();
+ $config = &PEAR_Config::singleton($prefix."/etc/pear.conf", '');
}
@@ -824,6 +819,7 @@ displayHTMLProgress($progress = 99);
// Base installation finished
+/*
ini_restore("include_path");
if (!WEBINSTALLER) {
@@ -981,6 +977,7 @@ if ( WINDOWS ) {
if (WINDOWS && !WEBINSTALLER) {
win32CreateRegEnv();
}
+*/
// Set of functions following
// {{{ download_url()
@@ -1377,17 +1374,17 @@ function detect_install_dirs($_prefix =
}
} else {
if ($_prefix === null) {
- $prefix = dirname(PHP_BINDIR);
+ $prefix = "%%PREFIX%%";
} else {
$prefix = $_prefix;
}
$bin_dir = '$prefix/bin';
- $php_dir = '$prefix/share/pear';
- $doc_dir = '$php_dir/docs';
- $data_dir = '$php_dir/data';
- $test_dir = '$php_dir/tests';
- $temp_dir = '$prefix/temp';
-
+ $php_dir = '$prefix/pear/lib';
+ $doc_dir = '$prefix/share/doc/pear';
+ $data_dir = '$prefix/pear/data';
+ $test_dir = '$prefix/pear/tests';
+ $temp_dir = '/tmp';
+/*
// check if the user has installed PHP with PHP or GNU layout
if (@is_dir("$prefix/lib/php/.registry")) {
$php_dir = '$prefix/lib/php';
@@ -1399,6 +1396,7 @@ function detect_install_dirs($_prefix =
} elseif (@is_dir("$prefix/share/php/.registry")) {
$php_dir = '$prefix/share/php';
}
+*/
}
}
@@ -2504,3 +2502,4 @@ php.ini <$pathIni> include_path updated.
}
return true;
}
+?>

18
www/pear/pear.port.mk Normal file
View File

@ -0,0 +1,18 @@
# $OpenBSD: pear.port.mk,v 1.1.1.1 2007/03/19 23:13:23 robert Exp $
# PHP PEAR module
RUN_DEPENDS+= :pear-*:www/pear
BUILD_DEPENDS+= ${RUN_DEPENDS}
NO_BUILD= Yes
.if !target(do-regress)
NO_REGRESS= Yes
.endif
MAKE_FILE= ${PORTSDIR}/www/pear/Makefile.pear
FAKE_FLAGS+= WRKINST=${WRKINST} WRKDIR=${WRKDIR}
PREFIX= /var/www
PEAR_LIBDIR= ${PREFIX}/pear/lib
PEAR_PHPBIN= ${LOCALBASE}/bin/php

3
www/pear/pkg/DESCR-main Normal file
View File

@ -0,0 +1,3 @@
PEAR (PHP Extensions and Add-on Repository) is a code repository
for PHP extensions and PHP library code inspired by TeX's CTAN and
Perl's CPAN.

1
www/pear/pkg/DESCR-utils Normal file
View File

@ -0,0 +1 @@
Utilities and documentation for PEAR (PHP Extensions and Add-on Repository).

158
www/pear/pkg/PLIST-main Normal file
View File

@ -0,0 +1,158 @@
@comment $OpenBSD: PLIST-main,v 1.1.1.1 2007/03/19 23:13:23 robert Exp $
@conflict php5-pear-*
@pkgpath www/php5/core,-pear
@group daemon
pear/
pear/data/
pear/data/PEAR/
pear/data/PEAR/package.dtd
pear/data/PEAR/template.spec
pear/data/Structures_Graph/
pear/data/Structures_Graph/LICENSE
pear/data/Structures_Graph/genpackage.xml.pl
pear/data/Structures_Graph/package.sh
pear/data/Structures_Graph/publish.sh
pear/lib/
pear/lib/.channels/
pear/lib/.channels/.alias/
pear/lib/.channels/.alias/pear.txt
pear/lib/.channels/.alias/pecl.txt
pear/lib/.channels/__uri.reg
pear/lib/.channels/pear.php.net.reg
pear/lib/.channels/pecl.php.net.reg
pear/lib/.depdb
pear/lib/.depdblock
pear/lib/.registry/
pear/lib/.registry/.channel.__uri/
pear/lib/.registry/.channel.pecl.php.net/
pear/lib/.registry/archive_tar.reg
pear/lib/.registry/console_getopt.reg
pear/lib/.registry/pear.reg
pear/lib/.registry/structures_graph.reg
pear/lib/Archive/
pear/lib/Archive/Tar.php
pear/lib/Console/
pear/lib/Console/Getopt.php
pear/lib/OS/
pear/lib/OS/Guess.php
pear/lib/PEAR/
pear/lib/PEAR.php
pear/lib/PEAR/Autoloader.php
pear/lib/PEAR/Builder.php
pear/lib/PEAR/ChannelFile/
pear/lib/PEAR/ChannelFile.php
pear/lib/PEAR/ChannelFile/Parser.php
pear/lib/PEAR/Command/
pear/lib/PEAR/Command.php
pear/lib/PEAR/Command/Auth.php
pear/lib/PEAR/Command/Auth.xml
pear/lib/PEAR/Command/Build.php
pear/lib/PEAR/Command/Build.xml
pear/lib/PEAR/Command/Channels.php
pear/lib/PEAR/Command/Channels.xml
pear/lib/PEAR/Command/Common.php
pear/lib/PEAR/Command/Config.php
pear/lib/PEAR/Command/Config.xml
pear/lib/PEAR/Command/Install.php
pear/lib/PEAR/Command/Install.xml
pear/lib/PEAR/Command/Mirror.php
pear/lib/PEAR/Command/Mirror.xml
pear/lib/PEAR/Command/Package.php
pear/lib/PEAR/Command/Package.xml
pear/lib/PEAR/Command/Pickle.php
pear/lib/PEAR/Command/Pickle.xml
pear/lib/PEAR/Command/Registry.php
pear/lib/PEAR/Command/Registry.xml
pear/lib/PEAR/Command/Remote.php
pear/lib/PEAR/Command/Remote.xml
pear/lib/PEAR/Command/Test.php
pear/lib/PEAR/Command/Test.xml
pear/lib/PEAR/Common.php
pear/lib/PEAR/Config.php
@comment pear/lib/PEAR/Config.php.orig
pear/lib/PEAR/Dependency.php
pear/lib/PEAR/Dependency2.php
pear/lib/PEAR/DependencyDB.php
pear/lib/PEAR/Downloader/
pear/lib/PEAR/Downloader.php
pear/lib/PEAR/Downloader/Package.php
pear/lib/PEAR/ErrorStack.php
pear/lib/PEAR/Exception.php
pear/lib/PEAR/Frontend/
pear/lib/PEAR/Frontend.php
pear/lib/PEAR/Frontend/CLI.php
pear/lib/PEAR/Installer/
pear/lib/PEAR/Installer.php
pear/lib/PEAR/Installer/Role/
pear/lib/PEAR/Installer/Role.php
pear/lib/PEAR/Installer/Role/Common.php
pear/lib/PEAR/Installer/Role/Data.php
pear/lib/PEAR/Installer/Role/Data.xml
pear/lib/PEAR/Installer/Role/Doc.php
pear/lib/PEAR/Installer/Role/Doc.xml
pear/lib/PEAR/Installer/Role/Ext.php
pear/lib/PEAR/Installer/Role/Ext.xml
pear/lib/PEAR/Installer/Role/Php.php
pear/lib/PEAR/Installer/Role/Php.xml
pear/lib/PEAR/Installer/Role/Script.php
pear/lib/PEAR/Installer/Role/Script.xml
pear/lib/PEAR/Installer/Role/Src.php
pear/lib/PEAR/Installer/Role/Src.xml
pear/lib/PEAR/Installer/Role/Test.php
pear/lib/PEAR/Installer/Role/Test.xml
pear/lib/PEAR/PackageFile/
pear/lib/PEAR/PackageFile.php
pear/lib/PEAR/PackageFile/Generator/
pear/lib/PEAR/PackageFile/Generator/v1.php
pear/lib/PEAR/PackageFile/Generator/v2.php
pear/lib/PEAR/PackageFile/Parser/
pear/lib/PEAR/PackageFile/Parser/v1.php
pear/lib/PEAR/PackageFile/Parser/v2.php
pear/lib/PEAR/PackageFile/v1.php
pear/lib/PEAR/PackageFile/v2/
pear/lib/PEAR/PackageFile/v2.php
pear/lib/PEAR/PackageFile/v2/Validator.php
pear/lib/PEAR/PackageFile/v2/rw.php
pear/lib/PEAR/Packager.php
pear/lib/PEAR/REST/
pear/lib/PEAR/REST.php
pear/lib/PEAR/REST/10.php
pear/lib/PEAR/REST/11.php
pear/lib/PEAR/Registry.php
pear/lib/PEAR/Remote.php
pear/lib/PEAR/RunTest.php
pear/lib/PEAR/Task/
pear/lib/PEAR/Task/Common.php
pear/lib/PEAR/Task/Postinstallscript/
pear/lib/PEAR/Task/Postinstallscript.php
pear/lib/PEAR/Task/Postinstallscript/rw.php
pear/lib/PEAR/Task/Replace/
pear/lib/PEAR/Task/Replace.php
pear/lib/PEAR/Task/Replace/rw.php
pear/lib/PEAR/Task/Unixeol/
pear/lib/PEAR/Task/Unixeol.php
pear/lib/PEAR/Task/Unixeol/rw.php
pear/lib/PEAR/Task/Windowseol/
pear/lib/PEAR/Task/Windowseol.php
pear/lib/PEAR/Task/Windowseol/rw.php
pear/lib/PEAR/Validate.php
pear/lib/PEAR/Validator/
pear/lib/PEAR/Validator/PECL.php
pear/lib/PEAR/XMLParser.php
pear/lib/Structures/
pear/lib/Structures/Graph/
pear/lib/Structures/Graph.php
pear/lib/Structures/Graph/Manipulator/
pear/lib/Structures/Graph/Manipulator/AcyclicTest.php
pear/lib/Structures/Graph/Manipulator/TopologicalSorter.php
pear/lib/Structures/Graph/Node.php
pear/lib/System.php
pear/lib/pearcmd.php
pear/lib/peclcmd.php
pear/tests/
pear/tests/Structures_Graph/
pear/tests/Structures_Graph/tests/
pear/tests/Structures_Graph/tests/README
pear/tests/Structures_Graph/tests/all-tests.php
pear/tests/Structures_Graph/tests/testCase/
pear/tests/Structures_Graph/tests/testCase/BasicGraph.php

42
www/pear/pkg/PLIST-utils Normal file
View File

@ -0,0 +1,42 @@
@comment $OpenBSD: PLIST-utils,v 1.1.1.1 2007/03/19 23:13:23 robert Exp $
@group daemon
bin/pear
bin/peardev
bin/pecl
share/doc/pear/
share/doc/pear/Archive_Tar/
share/doc/pear/Archive_Tar/docs/
share/doc/pear/Archive_Tar/docs/Archive_Tar.txt
share/doc/pear/PEAR/
share/doc/pear/PEAR/INSTALL
share/doc/pear/PEAR/README
share/doc/pear/Structures_Graph/
share/doc/pear/Structures_Graph/docs/
share/doc/pear/Structures_Graph/docs/generate.sh
share/doc/pear/Structures_Graph/docs/html/
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/Structures_Graph.html
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/Structures_Graph_Manipulator_AcyclicTest.html
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/Structures_Graph_Manipulator_TopologicalSorter.html
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/Structures_Graph_Node.html
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/_Structures_Graph_Manipulator_AcyclicTest_php.html
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/_Structures_Graph_Manipulator_TopologicalSorter_php.html
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/_Structures_Graph_Node_php.html
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/_Structures_Graph_php.html
share/doc/pear/Structures_Graph/docs/html/Structures_Graph/tutorial_Structures_Graph.pkg.html
share/doc/pear/Structures_Graph/docs/html/classtrees_Structures_Graph.html
share/doc/pear/Structures_Graph/docs/html/elementindex.html
share/doc/pear/Structures_Graph/docs/html/elementindex_Structures_Graph.html
share/doc/pear/Structures_Graph/docs/html/errors.html
share/doc/pear/Structures_Graph/docs/html/index.html
share/doc/pear/Structures_Graph/docs/html/li_Structures_Graph.html
share/doc/pear/Structures_Graph/docs/html/media/
share/doc/pear/Structures_Graph/docs/html/media/banner.css
share/doc/pear/Structures_Graph/docs/html/media/stylesheet.css
share/doc/pear/Structures_Graph/docs/html/packages.html
share/doc/pear/Structures_Graph/docs/html/todolist.html
share/doc/pear/Structures_Graph/docs/tutorials/
share/doc/pear/Structures_Graph/docs/tutorials/Structures_Graph/
share/doc/pear/Structures_Graph/docs/tutorials/Structures_Graph/Structures_Graph.pkg
share/doc/pear/pear.conf
@sample ${SYSCONFDIR}/pear.conf