| 1 use 5.006; |
1 use 5.006; |
| 2 use ExtUtils::MakeMaker; |
2 use ExtUtils::MakeMaker; |
| 3 |
3 |
| 4 WriteMakefile( |
4 WriteMakefile( |
| 5 'NAME' => 'Gaim::GtkUI', |
5 'NAME' => 'Purple::GtkUI', |
| 6 'VERSION_FROM' => '@srcdir@/GtkUI.pm', # finds $VERSION |
6 'VERSION_FROM' => '@srcdir@/GtkUI.pm', # finds $VERSION |
| 7 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
7 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
| 8 ('ABSTRACT_FROM' => '@srcdir@/GtkUI.pm', # finds $ABSTRACT |
8 ('ABSTRACT_FROM' => '@srcdir@/GtkUI.pm', # finds $ABSTRACT |
| 9 'AUTHOR' => 'Gaim <http://gaim.sourceforge.net/>') : ()), |
9 'AUTHOR' => 'Pidgin <http://pidgin.im/>') : ()), |
| 10 'DEFINE' => '@DEBUG_CFLAGS@', |
10 'DEFINE' => '@DEBUG_CFLAGS@', |
| 11 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libpurple -I@top_srcdir@/pidgin @GTK_CFLAGS@', |
11 'INC' => '-I. -I@srcdir@ -I@top_srcdir@ -I@top_srcdir@/libpurple -I@top_srcdir@/pidgin @GTK_CFLAGS@', |
| 12 # 'PREREQ_PM' => { 'Gaim' => '@VERSION@'}, |
12 # 'PREREQ_PM' => { 'Pidgin' => '@VERSION@'}, |
| 13 # Do this because the MakeMaker Makefile is dumb, and on clean it moves |
13 # Do this because the MakeMaker Makefile is dumb, and on clean it moves |
| 14 # Makefile to the default setting for MAKEFILE_OLD which is Makefile.old |
14 # Makefile to the default setting for MAKEFILE_OLD which is Makefile.old |
| 15 # but this breaks running make clean more than once in a row. |
15 # but this breaks running make clean more than once in a row. |
| 16 'MAKEFILE_OLD' => "Makefile", |
16 'MAKEFILE_OLD' => "Makefile", |
| 17 'OBJECT' => '$(O_FILES)', |
17 'OBJECT' => '$(O_FILES)', |