summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2005-08-09 20:58:40 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2005-08-09 20:58:40 +0000
commit7a6b22e62e31bd29e78b2efbe7c27a78aebf4387 (patch)
treef450aa5633e1e3424f46158eced9818d3440b84c /media-gfx/truevision/files
parentCleaned out old ebuilds. (diff)
downloadhistorical-7a6b22e62e31bd29e78b2efbe7c27a78aebf4387.tar.gz
historical-7a6b22e62e31bd29e78b2efbe7c27a78aebf4387.tar.bz2
historical-7a6b22e62e31bd29e78b2efbe7c27a78aebf4387.zip
bug 75912
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'media-gfx/truevision/files')
-rw-r--r--media-gfx/truevision/files/digest-truevision-0.3.101
-rw-r--r--media-gfx/truevision/files/truevision-0.3.10-gentoo1.patch203
-rw-r--r--media-gfx/truevision/files/truevision-0.3.10-gentoo2.patch186
-rw-r--r--media-gfx/truevision/files/truevision-0.3.10-gentoo3.patch18
4 files changed, 1 insertions, 407 deletions
diff --git a/media-gfx/truevision/files/digest-truevision-0.3.10 b/media-gfx/truevision/files/digest-truevision-0.3.10
index a5a0906b3d06..09f5e15fa960 100644
--- a/media-gfx/truevision/files/digest-truevision-0.3.10
+++ b/media-gfx/truevision/files/digest-truevision-0.3.10
@@ -1,2 +1,3 @@
MD5 260acc07ffb0943554816eb47d4be88b truevision-0.3.10.tar.gz 1088249
MD5 658bf82b0000435b04737de181e534e5 truevision-extramat-0.3.10.tar.gz 1738369
+MD5 7f9b96ef904729e639a7bf5da08103b7 truevision-0.3.10-genpatch.tar.bz2 3171
diff --git a/media-gfx/truevision/files/truevision-0.3.10-gentoo1.patch b/media-gfx/truevision/files/truevision-0.3.10-gentoo1.patch
deleted file mode 100644
index 9d8954673066..000000000000
--- a/media-gfx/truevision/files/truevision-0.3.10-gentoo1.patch
+++ /dev/null
@@ -1,203 +0,0 @@
-diff -U3 -r truevision-0.3.10/configure truevision-0.3.10-patched/configure
---- truevision-0.3.10/configure 2002-01-01 06:43:00.000000000 -0500
-+++ truevision-0.3.10-patched/configure 2003-03-15 18:38:04.000000000 -0500
-@@ -4629,11 +4629,11 @@
-
-
-
--PACKAGE_PIXMAPS_DIR="`gnome-config --datadir`/pixmaps/${PACKAGE}"
-+PACKAGE_PIXMAPS_DIR="${datadir}/pixmaps/${PACKAGE}"
-
-
-
--PACKAGE_MATERIALS_DIR="`gnome-config --datadir`/${PACKAGE}/materials"
-+PACKAGE_MATERIALS_DIR="${datadir}/${PACKAGE}/materials"
-
-
-
-diff -U3 -r truevision-0.3.10/src/density.cc truevision-0.3.10-patched/src/density.cc
---- truevision-0.3.10/src/density.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/density.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -49,7 +49,7 @@
- //**************************************
- // Constructeur
- //**************************************
--PovTexDensity::PovTexDensity( app_objs *appref, void (*asuicidal_func)(gpointer, gpointer), gpointer amother, bool is_top=true ) : MaterialItem( app_ref )
-+PovTexDensity::PovTexDensity( app_objs *appref, void (*asuicidal_func)(gpointer, gpointer), gpointer amother, bool is_top ) : MaterialItem( app_ref )
- {
- num = ++count;
- char text[25];
-@@ -74,7 +74,7 @@
- warp = new TvWidget_warp_rb( N_("Warp"), "WARP", NULL, app_ref );
- }
-
--void PovTexDensity::set_params( void (*asuicidal_func)(gpointer, gpointer), gpointer amother, bool is_top=true )
-+void PovTexDensity::set_params( void (*asuicidal_func)(gpointer, gpointer), gpointer amother, bool is_top )
- {
- suicidal_func = asuicidal_func;
- mother = amother;
-@@ -337,7 +337,7 @@
- if ( map_editor != NULL ) map_editor->flush();
- }
-
--void PovTexDensity::output_to_povray( ofstream & file, bool inmap = false )
-+void PovTexDensity::output_to_povray( ofstream & file, bool inmap )
- {
- if ( !inmap ) file << "\n\t\t\tdensity {\n\t\t\t\t";
-
-diff -U3 -r truevision-0.3.10/src/dlgutils.cc truevision-0.3.10-patched/src/dlgutils.cc
---- truevision-0.3.10/src/dlgutils.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/dlgutils.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -41,7 +41,7 @@
- }
-
- // Double box
--GtkWidget *dlg_double_box( GtkWidget *parent, GtkWidget* &vbox1, GtkWidget* &vbox2, bool packed = false )
-+GtkWidget *dlg_double_box( GtkWidget *parent, GtkWidget* &vbox1, GtkWidget* &vbox2, bool packed )
- {
- GtkWidget *hbox = gtk_hbox_new( TRUE, 5 );
- if ( packed ) gtk_box_pack_start( GTK_BOX(parent), hbox, TRUE, TRUE, 1 );
-diff -U3 -r truevision-0.3.10/src/mapedit.cc truevision-0.3.10-patched/src/mapedit.cc
---- truevision-0.3.10/src/mapedit.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/mapedit.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -28,7 +28,7 @@
- //********************************************
- // MAP ITEM
- //********************************************
--MapItem::MapItem( char *nom, float val = -1 )
-+MapItem::MapItem( char *nom, float val)
- {
- name = nom;
- value = val;
-diff -U3 -r truevision-0.3.10/src/material.cc truevision-0.3.10-patched/src/material.cc
---- truevision-0.3.10/src/material.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/material.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -66,7 +66,7 @@
- //**************************************
- // Add to list
- //**************************************
--void Material::add_to_list( GtkWidget *list, int position = -1 )
-+void Material::add_to_list( GtkWidget *list, int position)
- {
- clist = GTK_CLIST( list );
- gchar *titre[] = { name->value() };
-@@ -182,7 +182,7 @@
- item_type = ref.item_type;
- }
-
--void MaterialItem::add_to_tree( GtkCTree *tree, GtkCTreeNode *node , GtkCTreeNode *sibling = NULL )
-+void MaterialItem::add_to_tree( GtkCTree *tree, GtkCTreeNode *node , GtkCTreeNode *sibling)
- {
- ctree = tree;
- parent_node = node;
-diff -U3 -r truevision-0.3.10/src/matpov.cc truevision-0.3.10-patched/src/matpov.cc
---- truevision-0.3.10/src/matpov.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/matpov.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -600,7 +600,7 @@
- }
-
-
--void PovTexture::output_to_povray( ofstream & file, bool inmap = false )
-+void PovTexture::output_to_povray( ofstream & file, bool inmap )
- {
- //if ( !is_used() ) return;
-
-diff -U3 -r truevision-0.3.10/src/texnormal.cc truevision-0.3.10-patched/src/texnormal.cc
---- truevision-0.3.10/src/texnormal.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/texnormal.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -44,7 +44,7 @@
- //**************************************
- // Constructeurs & Destructeurs
- //**************************************
--PovTexNormal::PovTexNormal( app_objs *appref, bool mother = true ) : MaterialItem( app_ref )
-+PovTexNormal::PovTexNormal( app_objs *appref, bool mother ) : MaterialItem( app_ref )
- {
- set_name( _("Normal") );
- item_type = TV_MITEM_NORMAL;
-diff -U3 -r truevision-0.3.10/src/texpigment.cc truevision-0.3.10-patched/src/texpigment.cc
---- truevision-0.3.10/src/texpigment.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/texpigment.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -48,7 +48,7 @@
- //**************************************
- // Constructeur
- //**************************************
--PovTexPigment::PovTexPigment( app_objs *appref, bool mother = true ) : MaterialItem( appref )
-+PovTexPigment::PovTexPigment( app_objs *appref, bool mother ) : MaterialItem( appref )
- {
- set_name( _("Pigment") );
- item_type = TV_MITEM_PIGMENT;
-@@ -373,7 +373,7 @@
- }
-
-
--void PovTexPigment::output_to_povray( ofstream & file, bool in_map=false )
-+void PovTexPigment::output_to_povray( ofstream & file, bool in_map )
- {
- if ( !used->value() ) return;
- if ( !in_map ) file << "\n\t\tpigment {\n\t\t\t";
-diff -U3 -r truevision-0.3.10/src/tvwidgets.cc truevision-0.3.10-patched/src/tvwidgets.cc
---- truevision-0.3.10/src/tvwidgets.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/tvwidgets.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -56,7 +56,7 @@
- in_update = false;
- }
-
--void TvWidget::pack_widget( GtkWidget *box, bool tt, GtkWidget *target=NULL )
-+void TvWidget::pack_widget( GtkWidget *box, bool tt, GtkWidget *target )
- {
- if ( tt && tooltip != NULL )
- {
-diff -U3 -r truevision-0.3.10/src/tvwidgets2.cc truevision-0.3.10-patched/src/tvwidgets2.cc
---- truevision-0.3.10/src/tvwidgets2.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/tvwidgets2.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -887,7 +887,7 @@
- const char *bfiletype_ext[bfiletype_num] = { "df3" };
- const char *bfiletype_def[bfiletype_num] = { " df3 " };
-
--TvWidget_blendmap::TvWidget_blendmap( const char *name, const char *sname, const char *tooltip, app_objs *appref, bool is_colmap = false )
-+TvWidget_blendmap::TvWidget_blendmap( const char *name, const char *sname, const char *tooltip, app_objs *appref, bool is_colmap )
- : TvWidget( name, sname, tooltip, appref )
- {
- option_box = NULL;
-diff -U3 -r truevision-0.3.10/src/undo.cc truevision-0.3.10-patched/src/undo.cc
---- truevision-0.3.10/src/undo.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/undo.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -181,7 +181,7 @@
- }
-
- // Undo layers creation / deletion / move
--void UndoRedoManager::push( UndoAction act, ObjectLayer *lay, int sens = -1 )
-+void UndoRedoManager::push( UndoAction act, ObjectLayer *lay, int sens )
- {
- UndoItem *item = new UndoItem( act, lay, sens );
- UndoList.push_back( item );
-@@ -191,7 +191,7 @@
- }
-
- // Undo materials creation / deletion / move
--void UndoRedoManager::push( UndoAction act, Material *mat, int position = -1 )
-+void UndoRedoManager::push( UndoAction act, Material *mat, int position )
- {
- UndoItem *item = new UndoItem( act, mat, position );
- UndoList.push_back( item );
-@@ -231,7 +231,7 @@
- // The main function used
- // in fact it is also used for redo ;-)
- //***************************************************
--void UndoRedoManager::undo( bool doredo = false )
-+void UndoRedoManager::undo( bool doredo )
- {
- // Define source & destination lists
- // The determine if we act as undo or redo...
-diff -U3 -r truevision-0.3.10/src/undo.h truevision-0.3.10-patched/src/undo.h
---- truevision-0.3.10/src/undo.h 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/undo.h 2003-03-15 18:38:29.000000000 -0500
-@@ -65,7 +65,7 @@
- // one for undo and the other for redo
- //**********************************************************
- class UndoItem {
-- friend UndoRedoManager;
-+ friend struct UndoRedoManager;
-
- private:
- UndoAction action;
diff --git a/media-gfx/truevision/files/truevision-0.3.10-gentoo2.patch b/media-gfx/truevision/files/truevision-0.3.10-gentoo2.patch
deleted file mode 100644
index da3e6da24ddc..000000000000
--- a/media-gfx/truevision/files/truevision-0.3.10-gentoo2.patch
+++ /dev/null
@@ -1,186 +0,0 @@
-diff -U3 -r truevision-0.3.10/src/density.cc truevision-0.3.10-patched/src/density.cc
---- truevision-0.3.10/src/density.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/density.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -49,7 +49,7 @@
- //**************************************
- // Constructeur
- //**************************************
--PovTexDensity::PovTexDensity( app_objs *appref, void (*asuicidal_func)(gpointer, gpointer), gpointer amother, bool is_top=true ) : MaterialItem( app_ref )
-+PovTexDensity::PovTexDensity( app_objs *appref, void (*asuicidal_func)(gpointer, gpointer), gpointer amother, bool is_top ) : MaterialItem( app_ref )
- {
- num = ++count;
- char text[25];
-@@ -74,7 +74,7 @@
- warp = new TvWidget_warp_rb( N_("Warp"), "WARP", NULL, app_ref );
- }
-
--void PovTexDensity::set_params( void (*asuicidal_func)(gpointer, gpointer), gpointer amother, bool is_top=true )
-+void PovTexDensity::set_params( void (*asuicidal_func)(gpointer, gpointer), gpointer amother, bool is_top )
- {
- suicidal_func = asuicidal_func;
- mother = amother;
-@@ -337,7 +337,7 @@
- if ( map_editor != NULL ) map_editor->flush();
- }
-
--void PovTexDensity::output_to_povray( ofstream & file, bool inmap = false )
-+void PovTexDensity::output_to_povray( ofstream & file, bool inmap )
- {
- if ( !inmap ) file << "\n\t\t\tdensity {\n\t\t\t\t";
-
-diff -U3 -r truevision-0.3.10/src/dlgutils.cc truevision-0.3.10-patched/src/dlgutils.cc
---- truevision-0.3.10/src/dlgutils.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/dlgutils.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -41,7 +41,7 @@
- }
-
- // Double box
--GtkWidget *dlg_double_box( GtkWidget *parent, GtkWidget* &vbox1, GtkWidget* &vbox2, bool packed = false )
-+GtkWidget *dlg_double_box( GtkWidget *parent, GtkWidget* &vbox1, GtkWidget* &vbox2, bool packed )
- {
- GtkWidget *hbox = gtk_hbox_new( TRUE, 5 );
- if ( packed ) gtk_box_pack_start( GTK_BOX(parent), hbox, TRUE, TRUE, 1 );
-diff -U3 -r truevision-0.3.10/src/mapedit.cc truevision-0.3.10-patched/src/mapedit.cc
---- truevision-0.3.10/src/mapedit.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/mapedit.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -28,7 +28,7 @@
- //********************************************
- // MAP ITEM
- //********************************************
--MapItem::MapItem( char *nom, float val = -1 )
-+MapItem::MapItem( char *nom, float val)
- {
- name = nom;
- value = val;
-diff -U3 -r truevision-0.3.10/src/material.cc truevision-0.3.10-patched/src/material.cc
---- truevision-0.3.10/src/material.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/material.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -66,7 +66,7 @@
- //**************************************
- // Add to list
- //**************************************
--void Material::add_to_list( GtkWidget *list, int position = -1 )
-+void Material::add_to_list( GtkWidget *list, int position)
- {
- clist = GTK_CLIST( list );
- gchar *titre[] = { name->value() };
-@@ -182,7 +182,7 @@
- item_type = ref.item_type;
- }
-
--void MaterialItem::add_to_tree( GtkCTree *tree, GtkCTreeNode *node , GtkCTreeNode *sibling = NULL )
-+void MaterialItem::add_to_tree( GtkCTree *tree, GtkCTreeNode *node , GtkCTreeNode *sibling)
- {
- ctree = tree;
- parent_node = node;
-diff -U3 -r truevision-0.3.10/src/matpov.cc truevision-0.3.10-patched/src/matpov.cc
---- truevision-0.3.10/src/matpov.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/matpov.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -600,7 +600,7 @@
- }
-
-
--void PovTexture::output_to_povray( ofstream & file, bool inmap = false )
-+void PovTexture::output_to_povray( ofstream & file, bool inmap )
- {
- //if ( !is_used() ) return;
-
-diff -U3 -r truevision-0.3.10/src/texnormal.cc truevision-0.3.10-patched/src/texnormal.cc
---- truevision-0.3.10/src/texnormal.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/texnormal.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -44,7 +44,7 @@
- //**************************************
- // Constructeurs & Destructeurs
- //**************************************
--PovTexNormal::PovTexNormal( app_objs *appref, bool mother = true ) : MaterialItem( app_ref )
-+PovTexNormal::PovTexNormal( app_objs *appref, bool mother ) : MaterialItem( app_ref )
- {
- set_name( _("Normal") );
- item_type = TV_MITEM_NORMAL;
-diff -U3 -r truevision-0.3.10/src/texpigment.cc truevision-0.3.10-patched/src/texpigment.cc
---- truevision-0.3.10/src/texpigment.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/texpigment.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -48,7 +48,7 @@
- //**************************************
- // Constructeur
- //**************************************
--PovTexPigment::PovTexPigment( app_objs *appref, bool mother = true ) : MaterialItem( appref )
-+PovTexPigment::PovTexPigment( app_objs *appref, bool mother ) : MaterialItem( appref )
- {
- set_name( _("Pigment") );
- item_type = TV_MITEM_PIGMENT;
-@@ -373,7 +373,7 @@
- }
-
-
--void PovTexPigment::output_to_povray( ofstream & file, bool in_map=false )
-+void PovTexPigment::output_to_povray( ofstream & file, bool in_map )
- {
- if ( !used->value() ) return;
- if ( !in_map ) file << "\n\t\tpigment {\n\t\t\t";
-diff -U3 -r truevision-0.3.10/src/tvwidgets.cc truevision-0.3.10-patched/src/tvwidgets.cc
---- truevision-0.3.10/src/tvwidgets.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/tvwidgets.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -56,7 +56,7 @@
- in_update = false;
- }
-
--void TvWidget::pack_widget( GtkWidget *box, bool tt, GtkWidget *target=NULL )
-+void TvWidget::pack_widget( GtkWidget *box, bool tt, GtkWidget *target )
- {
- if ( tt && tooltip != NULL )
- {
-diff -U3 -r truevision-0.3.10/src/tvwidgets2.cc truevision-0.3.10-patched/src/tvwidgets2.cc
---- truevision-0.3.10/src/tvwidgets2.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/tvwidgets2.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -887,7 +887,7 @@
- const char *bfiletype_ext[bfiletype_num] = { "df3" };
- const char *bfiletype_def[bfiletype_num] = { " df3 " };
-
--TvWidget_blendmap::TvWidget_blendmap( const char *name, const char *sname, const char *tooltip, app_objs *appref, bool is_colmap = false )
-+TvWidget_blendmap::TvWidget_blendmap( const char *name, const char *sname, const char *tooltip, app_objs *appref, bool is_colmap )
- : TvWidget( name, sname, tooltip, appref )
- {
- option_box = NULL;
-diff -U3 -r truevision-0.3.10/src/undo.cc truevision-0.3.10-patched/src/undo.cc
---- truevision-0.3.10/src/undo.cc 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/undo.cc 2003-03-15 18:38:29.000000000 -0500
-@@ -181,7 +181,7 @@
- }
-
- // Undo layers creation / deletion / move
--void UndoRedoManager::push( UndoAction act, ObjectLayer *lay, int sens = -1 )
-+void UndoRedoManager::push( UndoAction act, ObjectLayer *lay, int sens )
- {
- UndoItem *item = new UndoItem( act, lay, sens );
- UndoList.push_back( item );
-@@ -191,7 +191,7 @@
- }
-
- // Undo materials creation / deletion / move
--void UndoRedoManager::push( UndoAction act, Material *mat, int position = -1 )
-+void UndoRedoManager::push( UndoAction act, Material *mat, int position )
- {
- UndoItem *item = new UndoItem( act, mat, position );
- UndoList.push_back( item );
-@@ -231,7 +231,7 @@
- // The main function used
- // in fact it is also used for redo ;-)
- //***************************************************
--void UndoRedoManager::undo( bool doredo = false )
-+void UndoRedoManager::undo( bool doredo )
- {
- // Define source & destination lists
- // The determine if we act as undo or redo...
-diff -U3 -r truevision-0.3.10/src/undo.h truevision-0.3.10-patched/src/undo.h
---- truevision-0.3.10/src/undo.h 2002-01-01 06:43:01.000000000 -0500
-+++ truevision-0.3.10-patched/src/undo.h 2003-03-15 18:38:29.000000000 -0500
-@@ -65,7 +65,7 @@
- // one for undo and the other for redo
- //**********************************************************
- class UndoItem {
-- friend UndoRedoManager;
-+ friend struct UndoRedoManager;
-
- private:
- UndoAction action;
diff --git a/media-gfx/truevision/files/truevision-0.3.10-gentoo3.patch b/media-gfx/truevision/files/truevision-0.3.10-gentoo3.patch
deleted file mode 100644
index dd96cf9c0a02..000000000000
--- a/media-gfx/truevision/files/truevision-0.3.10-gentoo3.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- truevision-0.3.10/Makefile.in 2002-01-01 11:43:00.000000000 +0000
-+++ truevision-0.3.10/Makefile.in.new 2003-06-10 21:56:46.000000000 +0100
-@@ -407,11 +407,11 @@
-
- install-data-local:
- test -d pixmaps \
-- && install -d -m 0755 @PACKAGE_PIXMAPS_DIR@ \
-- && install -m 0644 pixmaps/* @PACKAGE_PIXMAPS_DIR@
-+ && install -d -m 0755 $(PACKAGE_PIXMAPS_DIR) \
-+ && install -m 0644 pixmaps/* $(PACKAGE_PIXMAPS_DIR)
- test -d materials \
-- && install -d -m 0755 @PACKAGE_MATERIALS_DIR@ \
-- && cp -Rp materials/* @PACKAGE_MATERIALS_DIR@
-+ && install -d -m 0755 $(PACKAGE_MATERIALS_DIR) \
-+ && cp -Rp materials/* $(PACKAGE_MATERIALS_DIR)
-
- dist-hook:
- test -d pixmaps \