[maemo-commits] [maemo-commits] r10520 - in projects/haf/tags/hildon-1: . 0.9.9-9 0.9.9-9/debian 0.9.9-9/pkgconfig 0.9.9-9/src
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Tue Mar 13 14:44:42 EET 2007
- Previous message: [maemo-commits] r10518 - in projects/haf/branches/hildon-libs/hildon-1: . debian pkgconfig src
- Next message: [maemo-commits] r10521 - projects/haf/tags
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: mdk Date: 2007-03-13 14:44:41 +0200 (Tue, 13 Mar 2007) New Revision: 10520 Added: projects/haf/tags/hildon-1/0.9.9-9/ projects/haf/tags/hildon-1/0.9.9-9/configure.ac projects/haf/tags/hildon-1/0.9.9-9/debian/changelog projects/haf/tags/hildon-1/0.9.9-9/pkgconfig/hildon.pc.in projects/haf/tags/hildon-1/0.9.9-9/src/Makefile.am Removed: projects/haf/tags/hildon-1/0.9.9-9/configure.ac projects/haf/tags/hildon-1/0.9.9-9/debian/changelog projects/haf/tags/hildon-1/0.9.9-9/pkgconfig/hildon.pc.in projects/haf/tags/hildon-1/0.9.9-9/src/Makefile.am Log: Tagging for 0.9.9-9 Copied: projects/haf/tags/hildon-1/0.9.9-9 (from rev 10512, projects/haf/branches/hildon-libs/hildon-1) Deleted: projects/haf/tags/hildon-1/0.9.9-9/configure.ac =================================================================== --- projects/haf/branches/hildon-libs/hildon-1/configure.ac 2007-03-13 12:12:34 UTC (rev 10512) +++ projects/haf/tags/hildon-1/0.9.9-9/configure.ac 2007-03-13 12:44:41 UTC (rev 10520) @@ -1,149 +0,0 @@ -AC_INIT([Hildon gtk widgets], [1.0.0], [michael.kostrzewa at nokia.com], [hildon]) -AC_CANONICAL_SYSTEM - -AM_CONFIG_HEADER(config.h) -AC_CONFIG_SRCDIR([src/hildon-window.h]) -AC_CONFIG_MACRO_DIR([m4]) -AM_MAINTAINER_MODE - -# define PACKAGE_VERSION_* variables -AS_VERSION - -# set the libtool versioning -AS_LIBTOOL(HILDON, 0, 0, 0) -AM_INIT_AUTOMAKE - -AC_PROG_CC -AM_PROG_LIBTOOL -AC_PROG_INSTALL -AC_PROG_AWK - -AC_HEADER_STDC - -GTK_VERSION=2.10 - -PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.10) -AC_SUBST(GTK_LIBS) -AC_SUBST(GTK_CFLAGS) -AC_SUBST(GTK_VERSION) - -# ESD is needed for the hildon-note sounds. - -PKG_CHECK_MODULES(ESD, esound) -AC_SUBST(ESD_LIBS) -AC_SUBST(ESD_CFLAGS) - -PKG_CHECK_MODULES(GCONF, gconf-2.0 >= 2.6) -AC_SUBST(GCONF_CFLAGS) -AC_SUBST(GCONF_LIBS) - -ALL_LINGUAS="en_GB" -AC_SUBST(ALL_LINGUAS) -AM_GLIB_GNU_GETTEXT - -GTK_DOC_CHECK([1.3]) - -localedir=${datadir}/locale - -AC_SUBST(localedir) - -# Disable rebuild of glib-mkenum -generated source code: -AC_ARG_ENABLE(rebuilds, [ --disable-rebuilds disable all source autogeneration rules],,enable_rebuilds=yes) - -# define a MAINT-like variable REBUILD which is set if Perl -# is found, so autogenerated sources can be rebuilt -AC_CHECK_PROGS(PERL, perl5 perl) - -REBUILD=\# -if test "x$enable_rebuilds" = "xyes" && \ - test -n "$PERL" && \ - $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 ; then - REBUILD= -fi -AC_SUBST(REBUILD) - -# build examples (or not) -AC_ARG_WITH(examples, - AC_HELP_STRING([--with-examples], [Build the examples]), - [ - case "${withval}" in - yes) BUILD_EXAMPLES=yes ;; - no) BUILD_EXAMPLES=no ;; - *) AC_MSG_ERROR(bad value ${withval} for --with-examples) ;; - esac], - [BUILD_EXAMPLES=no]) - -AM_CONDITIONAL(BUILD_EXAMPLES, test "x$BUILD_EXAMPLES" = "xyes") - -# just print out our status -if test x$BUILD_EXAMPLES = xyes; then - AC_MSG_NOTICE(Will locally build example programs) -else - AC_MSG_NOTICE(Will not build examples ) -fi - -# build with assertion checks (or not) -AC_ARG_WITH(asserts, - AC_HELP_STRING([--with-asserts], [Build with the assertion checks]), - [ - case "${withval}" in - yes) BUILD_WITH_ASSERTS=yes ;; - no) BUILD_WITH_ASSERTS=no ;; - *) AC_MSG_ERROR(bad value ${withval} for --with-asserts) ;; - esac], - [BUILD_WITH_ASSERTS=no]) - -# just print out our status -if test x$BUILD_WITH_ASSERTS = xyes; then - AC_MSG_NOTICE(Will build with assertion checks) - ASSERT_CFLAGS="" -else - AC_MSG_NOTICE(Will not build with assertion checks) - ASSERT_CFLAGS="-DG_DISABLE_ASSERT" -fi - -# Check support (c unit test) -PKG_CHECK_MODULES(CHECK, check , [BUILD_TESTS="yes"], [BUILD_TESTS="no"]) -AM_CONDITIONAL(BUILD_TESTS, test "x$BUILD_TESTS" = "xyes") - -CFLAGS="$CFLAGS ${ASSERT_CFLAGS} -Wall -Wmissing-prototypes -Wmissing-declarations -Werror -Wno-format" -# -Wno-format due to way translation string are done - -### enable MAEMO platform extensions -CFLAGS="$CFLAGS -DMAEMO_CHANGES" - -# HILDON_OBJ_* -# default vars for the examples -# includes all the low-level flags -# FIXME Add esd and gconf flags -HILDON_OBJ_CFLAGS="\$(CFLAGS) \$(GTK_CFLAGS) \$(CHECK_CFLAGS) \$(GCONF_CFLAGS) -I\$(top_builddir)/src/" -HILDON_OBJ_LIBS="\$(top_builddir)/src/libhildon_\$(PACKAGE_VERSION_MAJOR).la \$(GTK_LIBS) \$(GCONF_LIBS) \$(CHECK_LIBS) `pkg-config --libs gthread-2.0`" -AC_SUBST(HILDON_OBJ_CFLAGS) -AC_SUBST(HILDON_OBJ_LIBS) - -AC_CONFIG_FILES([Makefile src/Makefile \ - pkgconfig/Makefile \ - examples/Makefile \ - pkgconfig/hildon.pc \ - tests/Makefile \ - doc/Makefile \ - po/POTFILES \ - po/porules.mk \ - po/Makefile]) - -AC_OUTPUT - -echo " - -Configuration: - -- Package:...........: ${PACKAGE} -- Version............: ${VERSION} -- Api................: ${PACKAGE}-${PACKAGE_VERSION_MAJOR} -- Compiler...........: ${CC} -- gtk-doc support....: ${enable_gtk_doc} -- Build examples.....: ${BUILD_EXAMPLES} -- Build with asserts.: ${BUILD_WITH_ASSERTS} -- Build unit tests...: ${BUILD_TESTS} - -" Copied: projects/haf/tags/hildon-1/0.9.9-9/configure.ac (from rev 10518, projects/haf/branches/hildon-libs/hildon-1/configure.ac) Deleted: projects/haf/tags/hildon-1/0.9.9-9/debian/changelog =================================================================== --- projects/haf/branches/hildon-libs/hildon-1/debian/changelog 2007-03-13 12:12:34 UTC (rev 10512) +++ projects/haf/tags/hildon-1/0.9.9-9/debian/changelog 2007-03-13 12:44:41 UTC (rev 10520) @@ -1,7 +0,0 @@ -libhildon (0.9.9-7) unstable; urgency=low - - * Unreleased. - - -- Michael Dominic Kostrzewa <michael.kostrzewa at nokia.com> Fri, 02 Feb 2007 12:00:00 +0300 - - Copied: projects/haf/tags/hildon-1/0.9.9-9/debian/changelog (from rev 10518, projects/haf/branches/hildon-libs/hildon-1/debian/changelog) Deleted: projects/haf/tags/hildon-1/0.9.9-9/pkgconfig/hildon.pc.in =================================================================== --- projects/haf/branches/hildon-libs/hildon-1/pkgconfig/hildon.pc.in 2007-03-13 12:12:34 UTC (rev 10512) +++ projects/haf/tags/hildon-1/0.9.9-9/pkgconfig/hildon.pc.in 2007-03-13 12:44:41 UTC (rev 10520) @@ -1,11 +0,0 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@/hildon- at PACKAGE_VERSION_MAJOR@ - -Name: hildon -Description: Hildon widgets library -Requires: gtk+-2.0 >= @GTK_VERSION@ -Version: @VERSION@ -Libs: -L${libdir} -lhildon_ at PACKAGE_VERSION_MAJOR@ -Cflags: -I${includedir} -DMAEMO_CHANGES Copied: projects/haf/tags/hildon-1/0.9.9-9/pkgconfig/hildon.pc.in (from rev 10518, projects/haf/branches/hildon-libs/hildon-1/pkgconfig/hildon.pc.in) Deleted: projects/haf/tags/hildon-1/0.9.9-9/src/Makefile.am =================================================================== --- projects/haf/branches/hildon-libs/hildon-1/src/Makefile.am 2007-03-13 12:12:34 UTC (rev 10512) +++ projects/haf/tags/hildon-1/0.9.9-9/src/Makefile.am 2007-03-13 12:44:41 UTC (rev 10520) @@ -1,159 +0,0 @@ -INCLUDES = -DG_LOG_DOMAIN=\"hildon- at PACKAGE_VERSION_MAJOR@\" \ - -DLOCALEDIR=\"$(localedir)\" - -MAINTAINERCLEANFILES = Makefile.in \ - hildon-enum-types.c \ - hildon-enum-types.h \ - hildon-marshalers.h \ - hildon-marshalers.c - -EXTRA_DIST = hildon-marshalers.list - -lib_LTLIBRARIES = libhildon_ at PACKAGE_VERSION_MAJOR@.la - -libhildon_ at PACKAGE_VERSION_MAJOR@_la_LDFLAGS = $(HILDON_WIDGETS_LT_LDFLAGS) - -libhildon_ at PACKAGE_VERSION_MAJOR@_la_LIBADD = $(GTK_LIBS) \ - $(GCONF_LIBS) \ - $(ESD_LIBS) - -libhildon_ at PACKAGE_VERSION_MAJOR@_la_CFLAGS = $(GTK_CFLAGS) \ - $(GCONF_CFLAGS) \ - $(ESD_CFLAGS) - -libhildon_ at PACKAGE_VERSION_MAJOR@_la_SOURCES = hildon-private.c \ - hildon-controlbar.c \ - hildon-seekbar.c \ - hildon-note.c \ - hildon-volumebar.c \ - hildon-sound.c \ - hildon-volumebar-range.c \ - hildon-hvolumebar.c \ - hildon-vvolumebar.c \ - hildon-calendar-popup.c \ - hildon-date-editor.c \ - hildon-time-editor.c \ - hildon-time-picker.c \ - hildon-helper.c \ - hildon-weekday-picker.c \ - hildon-number-editor.c \ - hildon-range-editor.c \ - hildon-get-password-dialog.c \ - hildon-set-password-dialog.c \ - hildon-sort-dialog.c \ - hildon-font-selection-dialog.c \ - hildon-login-dialog.c \ - hildon-wizard-dialog.c \ - hildon-color-chooser.c \ - hildon-color-button.c \ - hildon-color-chooser-dialog.c \ - hildon-defines.c \ - hildon-find-toolbar.c \ - hildon-banner.c \ - hildon-caption.c \ - hildon-window.c \ - hildon-program.c \ - hildon-code-dialog.c \ - hildon-enum-types.c \ - hildon-marshalers.c - -libhildon_ at PACKAGE_VERSION_MAJOR@_includedir = $(includedir)/$(PACKAGE)-$(PACKAGE_VERSION_MAJOR)/$(PACKAGE) - -libhildon_ at PACKAGE_VERSION_MAJOR@_include_HEADERS = hildon-banner.h \ - hildon-calendar-popup.h \ - hildon-caption.h \ - hildon-code-dialog.h \ - hildon-color-button.h \ - hildon-color-chooser-dialog.h \ - hildon-color-chooser.h \ - hildon-controlbar.h \ - hildon-date-editor.h \ - hildon-defines.h \ - hildon-enum-types.h \ - hildon-find-toolbar.h \ - hildon-helper.h \ - hildon-font-selection-dialog.h \ - hildon-get-password-dialog.h \ - hildon-hvolumebar.h \ - hildon-login-dialog.h \ - hildon-marshalers.h \ - hildon-note.h \ - hildon-number-editor.h \ - hildon-program.h \ - hildon-range-editor.h \ - hildon-seekbar.h \ - hildon-set-password-dialog.h \ - hildon-sort-dialog.h \ - hildon-sound.h \ - hildon-time-editor.h \ - hildon-time-picker.h \ - hildon-volumebar-range.h \ - hildon-volumebar.h \ - hildon-vvolumebar.h \ - hildon-weekday-picker.h \ - hildon.h \ - hildon-window.h \ - hildon-wizard-dialog.h - -noinst_HEADERS = hildon-banner-private.h \ - hildon-calendar-popup-private.h \ - hildon-private.h \ - hildon-caption-private.h \ - hildon-code-dialog-private.h \ - hildon-color-button-private.h \ - hildon-color-chooser-dialog-private.h \ - hildon-color-chooser-private.h \ - hildon-controlbar-private.h \ - hildon-date-editor-private.h \ - hildon-find-toolbar-private.h \ - hildon-font-selection-dialog-private.h \ - hildon-get-password-dialog-private.h \ - hildon-login-dialog-private.h \ - hildon-note-private.h \ - hildon-number-editor-private.h \ - hildon-program-private.h \ - hildon-range-editor-private.h \ - hildon-seekbar-private.h \ - hildon-set-password-dialog-private.h \ - hildon-sort-dialog-private.h \ - hildon-time-editor-private.h \ - hildon-time-picker-private.h \ - hildon-volumebar-private.h \ - hildon-weekday-picker-private.h \ - hildon-window-private.h \ - hildon-wizard-dialog-private.h - -# Don't build the library until we have built the header that it needs: -$(OBJECTS) $(libhildon_$(PACKAGE_VERSION_MAJOR)_la_OBJECTS): hildon-enum-types.h hildon-marshalers.c hildon-marshalers.h - -hildon-enum-types.h: @REBUILD@ $(libhildon_$(PACKAGE_VERSION_MAJOR)_include_HEADERS) Makefile - (cd $(srcdir) && glib-mkenums \ - --fhead "#ifndef __HILDON_ENUM_TYPES_H__\n" \ - --fhead "#define __HILDON_ENUM_TYPES_H__\n" \ - --fhead "\n" \ - --fhead "#include <glib-object.h>\n" \ - --fhead "\n" \ - --fhead "G_BEGIN_DECLS\n" \ - --fhead "\n" \ - --fprod "/* Enumerations from \"@filename@\" */\n" \ - --vhead "GType @enum_name at _get_type (void);\n#define HILDON_TYPE_ at ENUMSHORT@ (@enum_name at _get_type())\n" \ - --ftail "\nG_END_DECLS\n\n#endif /* __HILDON_ENUM_TYPES_H__ */" \ - $(libhildon_$(PACKAGE_VERSION_MAJOR)_include_HEADERS)) > $@ - -hildon-enum-types.c: @REBUILD@ $(libhildon_$(PACKAGE_VERSION_MAJOR)_include_HEADERS) Makefile - (cd $(srcdir) && glib-mkenums \ - --fhead "#include \"hildon.h\"\n" \ - --fhead "#include <glib-object.h>" \ - --fprod "\n/* enumerations from \"@filename@\" */" \ - --vhead "GType\n at enum_name@_get_type (void)\n{\n static GType etype = 0;\n if (etype == 0) {\n static const G at Type@Value values[] = {" \ - --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \ - --vtail " { 0, NULL, NULL }\n };\n etype = g_ at type@_register_static (\"@EnumName@\", values);\n }\n return etype;\n}\n" \ - $(libhildon_$(PACKAGE_VERSION_MAJOR)_include_HEADERS)) > $@ - -hildon-marshalers.h: hildon-marshalers.list - glib-genmarshal --prefix _hildon_marshal --header hildon-marshalers.list >hildon-marshalers.h - -hildon-marshalers.c: hildon-marshalers.list hildon-marshalers.h - echo '#include "hildon-marshalers.h"' >hildon-marshalers.c - glib-genmarshal --prefix _hildon_marshal --body hildon-marshalers.list >>hildon-marshalers.c - Copied: projects/haf/tags/hildon-1/0.9.9-9/src/Makefile.am (from rev 10518, projects/haf/branches/hildon-libs/hildon-1/src/Makefile.am)
- Previous message: [maemo-commits] r10518 - in projects/haf/branches/hildon-libs/hildon-1: . debian pkgconfig src
- Next message: [maemo-commits] r10521 - projects/haf/tags
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]