From c03efc545855fd01cb940b42ae1d5843feaae29c Mon Sep 17 00:00:00 2001 From: Sergey Matveychuk Date: Sat, 11 Dec 2004 01:14:05 +0000 Subject: - Update to 0.7.3 PR: ports/74931 Submitted by: maintainer --- deskutils/kbirthday/Makefile | 5 +++-- deskutils/kbirthday/distinfo | 4 ++-- deskutils/kbirthday/pkg-plist | 2 ++ 3 files changed, 7 insertions(+), 4 deletions(-) (limited to 'deskutils') diff --git a/deskutils/kbirthday/Makefile b/deskutils/kbirthday/Makefile index e06c01336f71..32ae2a684684 100644 --- a/deskutils/kbirthday/Makefile +++ b/deskutils/kbirthday/Makefile @@ -5,8 +5,7 @@ # $FreeBSD$ PORTNAME= kbirthday -PORTVERSION= 0.7.1 -PORTREVISION= 2 +PORTVERSION= 0.7.3 CATEGORIES= deskutils kde MASTER_SITES= http://www.gfai.de/~jaham/download/ \ http://freshmeat.net/redir/kbirthday/32531/url_tgz/ @@ -19,6 +18,8 @@ USE_GMAKE= yes USE_KDELIBS_VER=3 INSTALLS_SHLIB= yes USE_INC_LIBTOOL_VER= 13 +# may or may not solve the alpha compilation issue.... +CONFIGURE_ARGS= --with-pic # necesary to access the second master site by getting rid of the default switch -A FETCH_CMD ?=/usr/bin/fetch -Rr diff --git a/deskutils/kbirthday/distinfo b/deskutils/kbirthday/distinfo index 32431ec6d57b..c3ffdee3cee3 100644 --- a/deskutils/kbirthday/distinfo +++ b/deskutils/kbirthday/distinfo @@ -1,2 +1,2 @@ -MD5 (kbirthday-0.7.1.tar.gz) = d33d37a6e412c7a98723b4f30705546a -SIZE (kbirthday-0.7.1.tar.gz) = 562276 +MD5 (kbirthday-0.7.3.tar.gz) = 997b6003772a67042cfdf9a45bdb2b19 +SIZE (kbirthday-0.7.3.tar.gz) = 567367 diff --git a/deskutils/kbirthday/pkg-plist b/deskutils/kbirthday/pkg-plist index 934601edd222..0979b8df8cfd 100644 --- a/deskutils/kbirthday/pkg-plist +++ b/deskutils/kbirthday/pkg-plist @@ -1,6 +1,8 @@ lib/libkbirthday.la lib/libkbirthday.so share/apps/kicker/applets/kbirthday.desktop +share/icons/hicolor/16x16/apps/kbirthday.png +share/icons/hicolor/32x32/apps/kbirthday.png share/locale/de/LC_MESSAGES/kbirthday.mo share/locale/es/LC_MESSAGES/kbirthday.mo share/locale/ru/LC_MESSAGES/kbirthday.mo -- cgit =9ca299b427db9febb37208a33d238463f7a9b3bd'>refslogblamecommitdiffstats
path: root/tests/test3.c
blob: 9893e2e507cd6f9464d52da26a294d4f552b2e3f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                           
                                                                           


                                                             
                                                                                       


                                                          
                                                                           


                                                          
                 

 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#include "camel.h"

int
main (int argc, char**argv)
{
    GtkType type;
    
    gtk_init (&argc, &argv);
    camel_init ();
    
    printf ("Test 3 : data wrapper repository\n");

    printf ("\nMime type : \"multipart\"\n");
    type = data_wrapper_repository_get_data_wrapper_type ("multipart");
    printf ("Type found %s\n", gtk_type_name (type) );
    
    printf ("\nMime type : \"multipart/alternative\"\n");
    type = data_wrapper_repository_get_data_wrapper_type ("multipart/alternative");
    printf ("Type found %s\n", gtk_type_name (type) );
    
    printf ("\nMime type : \"toto/titi\"\n");
    type = data_wrapper_repository_get_data_wrapper_type ("toto/titi");
    printf ("Type found %s\n", gtk_type_name (type) );
    
    printf ("Test3 finished\n");
    return 1;
}