aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcy <cy@FreeBSD.org>2014-04-23 10:55:24 +0800
committercy <cy@FreeBSD.org>2014-04-23 10:55:24 +0800
commitba7e33d91fe0ee281bd4edcb2ffe934506100aee (patch)
treeaf8b31a9f9dffb93525e37bafe9099fc57576e98
parentaae943d004050d7b91a95f5cada3181173eddb9b (diff)
downloadfreebsd-ports-gnome-ba7e33d91fe0ee281bd4edcb2ffe934506100aee.tar.gz
freebsd-ports-gnome-ba7e33d91fe0ee281bd4edcb2ffe934506100aee.tar.zst
freebsd-ports-gnome-ba7e33d91fe0ee281bd4edcb2ffe934506100aee.zip
Remove extraneious MAN assignments.
-rw-r--r--security/krb5/Makefile9
1 files changed, 0 insertions, 9 deletions
diff --git a/security/krb5/Makefile b/security/krb5/Makefile
index b2cab259fa0a..06dab3687f2b 100644
--- a/security/krb5/Makefile
+++ b/security/krb5/Makefile
@@ -67,15 +67,6 @@ PLIST_SUB+= LDAP="@comment "
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
-MAN1= k5srvutil.1 kadmin.1 krb5-config.1 krb5-send-pr.1 \
- kpasswd.1 klist.1 kinit.1 kdestroy.1 kswitch.1 ksu.1 \
- ktutil.1 \
- sclient.1 kvno.1 compile_et.1
-MAN5= kadm5.acl.5 kdc.conf.5 krb5.conf.5 .k5identity.5 \
- .k5login.5 k5identity.5 k5login.5
-MAN8= krb5kdc.8 kadmin.local.8 kdb5_ldap_util.8 kdb5_util.8 \
- kadmind.8 kprop.8 kpropd.8 kproplog.8 sserver.8
-
.if defined(PROGRAM_TRANSFORM_NAME) && ${PROGRAM_TRANSFORM_NAME} != ""
CONFIGURE_ARGS+= --program-transform-name="${PROGRAM_TRANSFORM_NAME}"
.endif
committer Chris Lahey <clahey@src.gnome.org> 2000-01-11 14:44:57 +0800 Removed some code which got in the way of testing properly.' href='/~lantw44/cgit/gsoc2013-evolution/commit/e-util/e-text-event-processor.h?h=EVOLUTION_3_10_1&id=a01de808cd46baea31419a42b221cb65974a9fb1'>a01de808cd
dfdfa72ec5

a01de808cd













68b8639345
a01de808cd







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  



                                                                
  



                                                                    
  

                                                                               
  
  




                                                        
   
 


                                    
                    
                                                









                                                                     





                                                                                                                                          




                                                                   
                       
 

                                    













                                                                                         
                                                  







                                                                                                           
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>  
 *
 *
 * Authors:
 *      Chris Lahey <clahey@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifndef __E_TEXT_EVENT_PROCESSOR_H__
#define __E_TEXT_EVENT_PROCESSOR_H__

#include <gtk/gtk.h>
#include <e-util/e-text-event-processor-types.h>

#ifdef __cplusplus
extern "C" {
#pragma }
#endif /* __cplusplus */

/* ETextEventProcessor - Turns events on a text widget into commands.
 *
 */

#define E_TEXT_EVENT_PROCESSOR_TYPE     (e_text_event_processor_get_type ())
#define E_TEXT_EVENT_PROCESSOR(obj)     (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TEXT_EVENT_PROCESSOR_TYPE, ETextEventProcessor))
#define E_TEXT_EVENT_PROCESSOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_TEXT_EVENT_PROCESSOR_TYPE, ETextEventProcessorClass))
#define E_IS_TEXT_EVENT_PROCESSOR(obj)      (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TEXT_EVENT_PROCESSOR_TYPE))
#define E_IS_TEXT_EVENT_PROCESSOR_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((obj), E_TEXT_EVENT_PROCESSOR_TYPE))
#define E_TEXT_EVENT_PROCESSOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), E_TEXT_EVENT_PROCESSOR_TYPE, ETextEventProcessorClass))
typedef struct _ETextEventProcessor       ETextEventProcessor;
typedef struct _ETextEventProcessorClass  ETextEventProcessorClass;

struct _ETextEventProcessor
{
    GObject parent;

    /* object specific fields */
    guint allow_newlines : 1;
};

struct _ETextEventProcessorClass
{
    GtkObjectClass parent_class;

    /* signals */
    void (* command) (ETextEventProcessor *tep, ETextEventProcessorCommand *command);

    /* virtual functions */
    gint (* event) (ETextEventProcessor *tep, ETextEventProcessorEvent *event);
};


GType      e_text_event_processor_get_type (void);
gint       e_text_event_processor_handle_event (ETextEventProcessor *tep, ETextEventProcessorEvent *event);

#ifdef __cplusplus
}
#endif /* __cplusplus */


#endif /* __E_TEXT_EVENT_PROCESSOR_H__ */