summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorjdolecek <jdolecek@pkgsrc.org>2004-11-01 20:31:13 +0000
committerjdolecek <jdolecek@pkgsrc.org>2004-11-01 20:31:13 +0000
commitc332eb6c53fad794a44fa93518e8c6dcd86cdbd1 (patch)
tree4984d74ef5ca0a1aa3492a575260b714df99e6f4 /lang
parentd233684b292d5c4bbe41e63d4ec400512e9a38c0 (diff)
downloadpkgsrc-c332eb6c53fad794a44fa93518e8c6dcd86cdbd1.tar.gz
'data' items must be handled same way as 'test' and 'doc' - they are installed
into BASE/data/<pkgname>/*
Diffstat (limited to 'lang')
-rw-r--r--lang/php/pear_plist.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/php/pear_plist.php b/lang/php/pear_plist.php
index 405240df295..537d1ca5561 100644
--- a/lang/php/pear_plist.php
+++ b/lang/php/pear_plist.php
@@ -1,5 +1,5 @@
<?php
-# $NetBSD: pear_plist.php,v 1.2 2004/11/01 20:17:20 jdolecek Exp $
+# $NetBSD: pear_plist.php,v 1.3 2004/11/01 20:31:13 jdolecek Exp $
# Parses package XML file and outputs appropriate PLIST
$PEAR_LIB = getenv('PEAR_LIB');
@@ -18,6 +18,7 @@ foreach($info['filelist'] as $f => $v) {
switch($v['role']) {
case 'test':
case 'doc':
+ case 'data':
$prefix = "$v[role]/$pkg/";
$dirrm["$v[role]/$pkg"] = true;
break;