wok rev 1067

Up: pcmanfm (0.4.6.2)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jul 15 22:29:47 2008 +0200 (2008-07-15)
parents 6c076951fbe8
children 7f9fba5a6819
files pcmanfm/receipt pcmanfm/stuff/pcmanfm.h
line diff
     1.1 --- a/pcmanfm/receipt	Tue Jul 15 19:35:08 2008 +0000
     1.2 +++ b/pcmanfm/receipt	Tue Jul 15 22:29:47 2008 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="pcmanfm"
     1.7 -VERSION="0.4.6"
     1.8 +VERSION="0.4.6.2"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Light and easy to use file manager."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -16,7 +16,6 @@
    1.13  compile_rules()
    1.14  {
    1.15  	cd $src
    1.16 -	cp ../stuff/pcmanfm.h src
    1.17  	./configure \
    1.18  		--prefix=/usr \
    1.19  		--mandir=/usr/share/man \
     2.1 --- a/pcmanfm/stuff/pcmanfm.h	Tue Jul 15 19:35:08 2008 +0000
     2.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.3 @@ -1,39 +0,0 @@
     2.4 -/*
     2.5 - *      pcmanfm.h
     2.6 - *
     2.7 - *      Copyright 2008  <pcman.tw@gmail.com>
     2.8 - *
     2.9 - *      This program is free software; you can redistribute it and/or modify
    2.10 - *      it under the terms of the GNU General Public License as published by
    2.11 - *      the Free Software Foundation; either version 2 of the License, or
    2.12 - *      (at your option) any later version.
    2.13 - *
    2.14 - *      This program is distributed in the hope that it will be useful,
    2.15 - *      but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.16 - *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.17 - *      GNU General Public License for more details.
    2.18 - *
    2.19 - *      You should have received a copy of the GNU General Public License
    2.20 - *      along with this program; if not, write to the Free Software
    2.21 - *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
    2.22 - *      MA 02110-1301, USA.
    2.23 - */
    2.24 -
    2.25 -#ifndef _PCMANFM_H_
    2.26 -#define _PCMANFM_H_
    2.27 -
    2.28 -#include <gtk/gtk.h>
    2.29 -
    2.30 -G_BEGIN_DECLS
    2.31 -
    2.32 -/* After opening any window/dialog/tool, this should be called. */
    2.33 -void pcmanfm_ref();
    2.34 -
    2.35 -/* After closing any window/dialog/tool, this should be called.
    2.36 - * If the last window is closed and we are not a deamon, pcmanfm will quit.
    2.37 - */
    2.38 -gboolean pcmanfm_unref();
    2.39 -
    2.40 -G_END_DECLS
    2.41 -
    2.42 -#endif