You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(28) |
Sep
(20) |
Oct
(20) |
Nov
(6) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(17) |
Feb
(28) |
Mar
(13) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ren...@us...> - 2007-10-25 14:38:04
|
Revision: 875 http://gmyth.svn.sourceforge.net/gmyth/?rev=875&view=rev Author: renatofilho Date: 2007-10-25 07:38:08 -0700 (Thu, 25 Oct 2007) Log Message: ----------- fixed channel icon Modified Paths: -------------- trunk/myth-dbus/src/gmyth-dbus-server.c Modified: trunk/myth-dbus/src/gmyth-dbus-server.c =================================================================== --- trunk/myth-dbus/src/gmyth-dbus-server.c 2007-10-25 14:28:35 UTC (rev 874) +++ trunk/myth-dbus/src/gmyth-dbus-server.c 2007-10-25 14:38:08 UTC (rev 875) @@ -407,6 +407,7 @@ GError **error) { GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend, FALSE); @@ -437,7 +438,6 @@ g_return_val_if_fail (priv->myth_backend, FALSE); g_return_val_if_fail (gmyth_dbus_server_connect_epg (GMYTH_DBUS_SERVER (obj)), FALSE); - g_time_val_from_iso8601 (start_time, &start_time_val); g_time_val_from_iso8601 (end_time, &end_time_val); @@ -460,6 +460,9 @@ data = (GMythProgramInfo *) walk->data; + if (!data) + continue; + g_value_init (&program, program_type); g_value_take_boxed (&program, dbus_g_type_specialized_construct (program_type)); @@ -482,7 +485,10 @@ g_free (end_str); } - gmyth_free_program_list (list); + if (list) + gmyth_free_program_list (list); + + g_debug ("%s:%d", __FUNCTION__, __LINE__); return TRUE; } @@ -593,6 +599,7 @@ gmyth_dbus_server_parse_recorded_info (data, &record); g_ptr_array_add (*records, g_value_get_boxed (&record)); + //g_value_unset (&record); } gmyth_recorded_info_list_free (list); @@ -678,8 +685,6 @@ priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); - g_debug ("getting icon: %s", uri); - g_return_val_if_fail (priv->myth_backend, FALSE); if (!gmyth_util_file_exists (priv->myth_backend, uri)) @@ -708,6 +713,8 @@ return TRUE; fail: + if (*image) + g_byte_array_free (*image, TRUE); g_object_unref(file_transfer); return FALSE; } @@ -958,6 +965,7 @@ { GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend, FALSE); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-10-25 14:28:31
|
Revision: 874 http://gmyth.svn.sourceforge.net/gmyth/?rev=874&view=rev Author: renatofilho Date: 2007-10-25 07:28:35 -0700 (Thu, 25 Oct 2007) Log Message: ----------- fixed retur of funcion programlist Modified Paths: -------------- trunk/gmyth/src/gmyth_epg.c Modified: trunk/gmyth/src/gmyth_epg.c =================================================================== --- trunk/gmyth/src/gmyth_epg.c 2007-10-25 14:26:21 UTC (rev 873) +++ trunk/gmyth/src/gmyth_epg.c 2007-10-25 14:28:35 UTC (rev 874) @@ -299,7 +299,7 @@ return -1; } - (*proglist) = NULL; + *proglist = NULL; while ((row = mysql_fetch_row(res_set)) != NULL) { GMythProgramInfo *p = gmyth_program_info_new(); @@ -346,7 +346,7 @@ p->catType = g_string_new(row[18]); - *proglist = g_list_append((*proglist), p); + *proglist = g_list_append(*proglist, p); #ifdef GMYTH_USE_DEBUG gmyth_program_info_print(p); @@ -359,7 +359,7 @@ mysql_free_result(res_set); g_string_free(querystr, TRUE); - return TRUE; + return g_list_length (*proglist); } gboolean This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-10-25 14:26:16
|
Revision: 873 http://gmyth.svn.sourceforge.net/gmyth/?rev=873&view=rev Author: renatofilho Date: 2007-10-25 07:26:21 -0700 (Thu, 25 Oct 2007) Log Message: ----------- fixed bug on programlist Modified Paths: -------------- trunk/myth-dbus/src/gmyth-dbus-server.c Modified: trunk/myth-dbus/src/gmyth-dbus-server.c =================================================================== --- trunk/myth-dbus/src/gmyth-dbus-server.c 2007-10-24 22:47:06 UTC (rev 872) +++ trunk/myth-dbus/src/gmyth-dbus-server.c 2007-10-25 14:26:21 UTC (rev 873) @@ -468,7 +468,7 @@ end_str = g_time_val_to_iso8601 (data->endts); dbus_g_type_struct_set (&program, - 0, data->chanid, + 0, data->chanid->str, 1, start_str, 2, end_str, 3, data->title->str, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-10-24 22:47:04
|
Revision: 872 http://gmyth.svn.sourceforge.net/gmyth/?rev=872&view=rev Author: renatofilho Date: 2007-10-24 15:47:06 -0700 (Wed, 24 Oct 2007) Log Message: ----------- fixed valuearray types Modified Paths: -------------- trunk/myth-dbus/src/gmyth-dbus-common.h trunk/myth-dbus/src/gmyth-dbus-server.c trunk/myth-dbus/src/gmyth-dbus-server.xml trunk/myth-dbus/src/main.c Modified: trunk/myth-dbus/src/gmyth-dbus-common.h =================================================================== --- trunk/myth-dbus/src/gmyth-dbus-common.h 2007-10-24 19:01:02 UTC (rev 871) +++ trunk/myth-dbus/src/gmyth-dbus-common.h 2007-10-24 22:47:06 UTC (rev 872) @@ -1,7 +1,7 @@ #ifndef __GMYTH_DBUS_COMMON_H__ #define __GMYTH_DBUS_COMMON_H__ -#define GMYTH_DBUS_SERVER_NAME "/br/org/indt/GMyth" +#define GMYTH_DBUS_SERVER_NAME "br.org.indt.GMyth" #define GMYTH_DBUS_SERVER_PATH "/br/org/indt/GMyth" #define GMYTH_DBUS_SERVER_IFACE "br.org.indt.GMyth" @@ -34,6 +34,8 @@ G_TYPE_STRING, \ G_TYPE_STRING, \ G_TYPE_STRING, \ + G_TYPE_STRING, \ + G_TYPE_STRING, \ G_TYPE_UINT64, \ G_TYPE_INVALID); Modified: trunk/myth-dbus/src/gmyth-dbus-server.c =================================================================== --- trunk/myth-dbus/src/gmyth-dbus-server.c 2007-10-24 19:01:02 UTC (rev 871) +++ trunk/myth-dbus/src/gmyth-dbus-server.c 2007-10-24 22:47:06 UTC (rev 872) @@ -1,11 +1,6 @@ /** * GMyth Library * - * @file gmyth/gmyth_backend_info.c - * - * @brief <p> This component represents all the MythTV backend server - * configuration information. - * * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia. * @author Renato Filho <ren...@in...> * @@ -40,7 +35,6 @@ #define MYTH_DEFAULT_DB "mythconverg" - typedef struct _GMythDbusServerPrivate GMythDbusServerPrivate; struct _GMythDbusServerPrivate @@ -71,7 +65,7 @@ GError **error); static gboolean gmyth_dbus_server_get_channel_info (GObject *obj, gint channel_id, - GValue **info, + GValueArray **info, GError **error); static gboolean gmyth_dbus_server_file_exists (GObject *obj, const gchar *file_name, @@ -82,7 +76,7 @@ GError **error); static gboolean gmyth_dbus_server_get_recorded_info (GObject *obj, const gchar *basename, - GValue **info, + GValueArray **info, GError **error); static gboolean gmyth_dbus_server_get_program_list (GObject *obj, gint channel_id, @@ -294,6 +288,7 @@ gboolean ret = FALSE; GMythSocket *socket; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend != NULL, FALSE); @@ -334,13 +329,14 @@ static gboolean gmyth_dbus_server_get_channel_info (GObject *obj, gint channel_id, - GValue **info, + GValueArray **info, GError **error) { GType ch_type; GMythChannelInfo *ch_info; GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend != NULL, FALSE); @@ -351,10 +347,12 @@ ch_info = gmyth_epg_get_channel_info (priv->myth_epg, channel_id); if (ch_info) { - *info = g_new0 (GValue, 1); - g_value_init (*info, ch_type); - g_value_set_static_boxed (*info, dbus_g_type_specialized_construct (ch_type)); - gmyth_dbus_server_parse_channel_info (ch_info, *info); + GValue v = { 0, }; + g_value_init (&v, ch_type); + g_value_take_boxed (&v, dbus_g_type_specialized_construct (ch_type)); + gmyth_dbus_server_parse_channel_info (ch_info, &v); + + *info = g_value_get_boxed (&v); return TRUE; } @@ -372,6 +370,8 @@ int len; GType ch_type; GMythDbusServerPrivate *priv; + + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend != NULL, FALSE); @@ -391,7 +391,7 @@ data = (GMythChannelInfo *) walk->data; g_value_init (&ch, ch_type); - g_value_set_static_boxed (&ch, dbus_g_type_specialized_construct (ch_type)); + g_value_take_boxed (&ch, dbus_g_type_specialized_construct (ch_type)); gmyth_dbus_server_parse_channel_info (data, &ch); g_ptr_array_add (*channels, g_value_get_boxed (&ch)); } @@ -418,7 +418,7 @@ static gboolean gmyth_dbus_server_get_program_list (GObject *obj, - gint program_id, + gint channel_id, const gchar *start_time, const gchar *end_time, GPtrArray **programs) @@ -431,6 +431,7 @@ GTimeVal end_time_val; GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend, FALSE); @@ -440,9 +441,10 @@ g_time_val_from_iso8601 (start_time, &start_time_val); g_time_val_from_iso8601 (end_time, &end_time_val); + list = NULL; len = gmyth_epg_get_program_list (priv->myth_epg, &list, - program_id, + channel_id, &start_time_val, &end_time_val); @@ -459,8 +461,8 @@ data = (GMythProgramInfo *) walk->data; g_value_init (&program, program_type); - g_value_set_static_boxed (&program, - dbus_g_type_specialized_construct (program_type)); + g_value_take_boxed (&program, + dbus_g_type_specialized_construct (program_type)); start_str = g_time_val_to_iso8601 (data->startts); end_str = g_time_val_to_iso8601 (data->endts); @@ -481,7 +483,6 @@ } gmyth_free_program_list (list); - return TRUE; } @@ -494,6 +495,7 @@ start_str = g_time_val_to_iso8601 (info->start_time); end_str = g_time_val_to_iso8601 (info->end_time); + dbus_g_type_struct_set (val, 0, info->record_id, 1, info->program_id, @@ -507,7 +509,6 @@ 9, info->basename->str, 10, info->filesize, G_MAXUINT); - g_free (start_str); g_free (end_str); } @@ -515,13 +516,15 @@ static gboolean gmyth_dbus_server_get_recorded_info (GObject *obj, const gchar *basename, - GValue **info, + GValueArray **info, GError **error) { GType record_type; GMythDbusServerPrivate *priv; RecordedInfo *record_info; + + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend, FALSE); @@ -534,14 +537,17 @@ if (record_info) { - *info = g_new0 (GValue, 1); - g_value_init (*info, record_type); - g_value_set_static_boxed (*info, - dbus_g_type_specialized_construct (record_type)); - gmyth_dbus_server_parse_recorded_info (record_info, *info); + GValue r = { 0, }; + g_value_init (&r, record_type); + g_value_take_boxed (&r, + dbus_g_type_specialized_construct (record_type)); + + gmyth_dbus_server_parse_recorded_info (record_info, &r); gmyth_recorded_info_free (record_info); + *info = g_value_get_boxed (&r); + return TRUE; } @@ -560,6 +566,7 @@ GType record_type; GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend, FALSE); @@ -569,8 +576,8 @@ len = gmyth_scheduler_get_recorded_list (priv->myth_scheduler, &list); + record_type = GMYTH_DBUS_RECORD_G_TYPE; *records = g_ptr_array_sized_new (len); - record_type = GMYTH_DBUS_RECORD_G_TYPE; for (walk = list; walk != NULL; walk = walk->next) { @@ -580,9 +587,11 @@ data = (RecordedInfo *) walk->data; g_value_init (&record, record_type); - g_value_set_static_boxed (&record, - dbus_g_type_specialized_construct (record_type)); + g_value_take_boxed (&record, + dbus_g_type_specialized_construct (record_type)); + gmyth_dbus_server_parse_recorded_info (data, &record); + g_ptr_array_add (*records, g_value_get_boxed (&record)); } @@ -602,6 +611,7 @@ GType schedule_type; GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend, FALSE); @@ -624,8 +634,8 @@ data = (ScheduleInfo *) walk->data; g_value_init (&schedule, schedule_type); - g_value_set_static_boxed (&schedule, - dbus_g_type_specialized_construct (schedule_type)); + g_value_take_boxed (&schedule, + dbus_g_type_specialized_construct (schedule_type)); start_str_time = g_time_val_to_iso8601 (data->start_time); end_str_time = g_time_val_to_iso8601 (data->end_time); @@ -668,6 +678,8 @@ priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); + g_debug ("getting icon: %s", uri); + g_return_val_if_fail (priv->myth_backend, FALSE); if (!gmyth_util_file_exists (priv->myth_backend, uri)) @@ -711,6 +723,7 @@ guint icon_length; GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend, FALSE); @@ -759,6 +772,7 @@ gboolean ret = FALSE; GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend, FALSE); @@ -819,6 +833,7 @@ GTimeVal end_vtime; GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); *schedule_id = 0; @@ -905,6 +920,7 @@ GTimeVal end_vtime; GMythDbusServerPrivate *priv; + g_debug ("%s:%d", __FUNCTION__, __LINE__); priv = GMYTH_DBUS_SERVER_GET_PRIVATE (obj); g_return_val_if_fail (priv->myth_backend, FALSE); Modified: trunk/myth-dbus/src/gmyth-dbus-server.xml =================================================================== --- trunk/myth-dbus/src/gmyth-dbus-server.xml 2007-10-24 19:01:02 UTC (rev 871) +++ trunk/myth-dbus/src/gmyth-dbus-server.xml 2007-10-24 22:47:06 UTC (rev 872) @@ -40,12 +40,12 @@ </method> <method name="GetRecordedList"> - <arg type="a(uuussssst)" name="records" direction="out" /> + <arg type="a(uuussssssst)" name="records" direction="out" /> </method> <method name="GetRecordedInfo"> <arg type="s" name="basename" direction="in" /> - <arg type="(uuussssst)" name="details" direction="out" /> + <arg type="(uuussssssst)" name="details" direction="out" /> </method> <method name="GetScheduleList"> Modified: trunk/myth-dbus/src/main.c =================================================================== --- trunk/myth-dbus/src/main.c 2007-10-24 19:01:02 UTC (rev 871) +++ trunk/myth-dbus/src/main.c 2007-10-24 22:47:06 UTC (rev 872) @@ -6,7 +6,9 @@ GMythDbusServer *srv; g_type_init (); + g_thread_init (NULL); + loop = g_main_loop_new (NULL, FALSE); srv = gmyth_dbus_server_start_dbus_service (); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-10-24 17:41:42
|
Revision: 870 http://gmyth.svn.sourceforge.net/gmyth/?rev=870&view=rev Author: renatofilho Date: 2007-10-24 10:41:42 -0700 (Wed, 24 Oct 2007) Log Message: ----------- created function stop recording Modified Paths: -------------- trunk/gmyth/src/gmyth_backendinfo.h trunk/gmyth/src/gmyth_scheduler.c trunk/gmyth/src/gmyth_scheduler.h Modified: trunk/gmyth/src/gmyth_backendinfo.h =================================================================== --- trunk/gmyth/src/gmyth_backendinfo.h 2007-10-23 12:58:20 UTC (rev 869) +++ trunk/gmyth/src/gmyth_backendinfo.h 2007-10-24 17:41:42 UTC (rev 870) @@ -116,7 +116,6 @@ gboolean gmyth_backend_info_is_local_file (GMythBackendInfo *backend_info); GMythSocket* gmyth_backend_info_get_connected_socket (GMythBackendInfo *backend_info); - G_END_DECLS #endif /* __GMYTH_BACKEND_INFO_H__ */ Modified: trunk/gmyth/src/gmyth_scheduler.c =================================================================== --- trunk/gmyth/src/gmyth_scheduler.c 2007-10-23 12:58:20 UTC (rev 869) +++ trunk/gmyth/src/gmyth_scheduler.c 2007-10-24 17:41:42 UTC (rev 870) @@ -738,7 +738,7 @@ */ GMythProgramInfo* gmyth_scheduler_get_recorded_on_time(GMythScheduler* scheduler, - GString* channel) + guint channel_id) { MYSQL_RES *msql_res; GMythProgramInfo *proginfo = NULL; @@ -757,8 +757,8 @@ "category,findid,duplicate " "FROM recorded " "LEFT JOIN channel " "ON recorded.chanid = channel.chanid " - "WHERE recorded.chanid = \"%s\" " - "ORDER BY starttime DESC", channel->str); + "WHERE recorded.chanid = %d " + "ORDER BY starttime DESC", channel_id); msql_res = gmyth_query_process_statement(scheduler->msqlquery, query_str->str); @@ -980,6 +980,116 @@ return proginfo; } +gboolean +gmyth_scheduler_stop_recording (GMythScheduler * scheduler, + gint channel_id, + time_t start) +{ + GMythProgramInfo *program; + GMythSocket *socket; + gboolean res = FALSE; + GMythStringList *slist; + + socket = gmyth_backend_info_get_connected_socket (scheduler->backend_info); + program = gmyth_scheduler_get_recorded_on_time (scheduler, channel_id); + + if (program) { + slist = gmyth_string_list_new(); + gmyth_string_list_append_char_array(slist, "STOP_RECORDING"); + + gmyth_string_list_append_string(slist, program->title); /* 0 */ + gmyth_string_list_append_string(slist, program->subtitle); /* 1 */ + gmyth_string_list_append_string(slist, program->description); /* 2 */ + gmyth_string_list_append_string(slist, program->category); /* 3 */ + gmyth_string_list_append_string(slist, program->chanid); /* 4 */ + gmyth_string_list_append_string(slist, program->chanstr); /* 5 */ + gmyth_string_list_append_string(slist, program->chansign); /* 6 */ + gmyth_string_list_append_string(slist, program->channame); /* 7 */ + gmyth_string_list_append_string(slist, program->pathname); /* 8 */ + gmyth_string_list_append_int64(slist, program->filesize); /* 9 */ + + if (program->startts) + gmyth_string_list_append_int(slist, program->startts->tv_sec); /* 10 */ + else + gmyth_string_list_append_int(slist, 0); + + if (program->endts) + gmyth_string_list_append_int(slist, program->endts->tv_sec); /* 11 */ + else + gmyth_string_list_append_int(slist, 0); + + gmyth_string_list_append_int(slist, program->duplicate); /* 12 */ + gmyth_string_list_append_int(slist, program->shareable); /* 13 */ + gmyth_string_list_append_int(slist, program->findid); /* 14 */ + gmyth_string_list_append_string(slist, program->hostname); /* 15 */ + gmyth_string_list_append_int(slist, program->sourceid); /* 16 */ + gmyth_string_list_append_int(slist, program->cardid); /* 17 */ + gmyth_string_list_append_int(slist, program->inputid); /* 18 */ + gmyth_string_list_append_int(slist, program->recpriority); /* 19 */ + + // recstatus == recording + gmyth_string_list_append_int(slist, -3); /* 20 */ + + gmyth_string_list_append_int(slist, program->recordid); /* 21 */ + gmyth_string_list_append_int(slist, program->rectype); /* 22 */ + gmyth_string_list_append_int(slist, program->dupin); /* 23 */ + gmyth_string_list_append_int(slist, program->dupmethod); /* 24 */ + + + //fixme + program->recstartts->tv_sec -= (60*60); + + gmyth_string_list_append_int(slist, + program->recstartts != NULL ? + program->recstartts->tv_sec : 0); /* 26 */ + + gmyth_string_list_append_int(slist, + program->recendts != NULL ? + program->recendts->tv_sec : 0); /* 27 */ + + gmyth_string_list_append_int(slist, program->repeat); /* 28 */ + gmyth_string_list_append_int(slist, program->programflags); /* 29 */ + + gmyth_string_list_append_char_array(slist, + program->recgroup != NULL ? + program->recgroup->str : "Default"); /* 30 */ + + gmyth_string_list_append_int(slist, program->chancommfree); /* 31 */ + gmyth_string_list_append_string(slist, program->chanOutputFilters); /* 32 */ + gmyth_string_list_append_string(slist, program->seriesid); /* 33 */ + gmyth_string_list_append_string(slist, program->programid); /* 34 */ + + gmyth_string_list_append_int(slist, + program->lastmodified != NULL ? + program->lastmodified->tv_sec : 0); /* 35 */ + + gmyth_string_list_append_float(slist, program->stars); /* 36 */ + + gmyth_string_list_append_int(slist, + program->originalAirDate != NULL ? + program->originalAirDate->tv_sec : 0); /* 37 */ + + gmyth_string_list_append_int(slist, program->hasAirDate); /* 38 */ + + gmyth_string_list_append_char_array(slist, + program->playgroup != NULL ? + program->playgroup->str : "Default"); /* 39 */ + + gmyth_string_list_append_int(slist, program->recpriority2); /* 40 */ + gmyth_string_list_append_int(slist, program->recpriority2); /* 40 */ + + gmyth_socket_sendreceive_stringlist(socket, slist); + res = (gmyth_string_list_get_int(slist, 0) == 1); + + g_object_unref (program); + g_object_unref (slist); + } + + g_object_unref (socket); + return res; +} + + /** Notifies the backend of an update in the db. * * @param record_id the id of the modified recording. Modified: trunk/gmyth/src/gmyth_scheduler.h =================================================================== --- trunk/gmyth/src/gmyth_scheduler.h 2007-10-23 12:58:20 UTC (rev 869) +++ trunk/gmyth/src/gmyth_scheduler.h 2007-10-24 17:41:42 UTC (rev 870) @@ -136,52 +136,55 @@ } RecordedInfo; -GType gmyth_scheduler_get_type (void); +GType gmyth_scheduler_get_type (void); -GMythScheduler *gmyth_scheduler_new (void); -gboolean gmyth_scheduler_connect (GMythScheduler * scheduler, - GMythBackendInfo * backend_info); -gboolean gmyth_scheduler_connect_with_timeout(GMythScheduler * scheduler, - GMythBackendInfo * backend_info, - guint timeout); -gboolean gmyth_scheduler_disconnect (GMythScheduler * scheduler); -gint gmyth_scheduler_get_schedule_list (GMythScheduler * scheduler, - GList ** sched_list); -gint gmyth_scheduler_get_recorded_list (GMythScheduler * scheduler, - GList ** rec_list); -RecordedInfo* gmyth_scheduler_get_recorded_info (GMythScheduler *scheduler, - const char *basename); +GMythScheduler* gmyth_scheduler_new (void); +gboolean gmyth_scheduler_connect (GMythScheduler * scheduler, + GMythBackendInfo * backend_info); +gboolean gmyth_scheduler_connect_with_timeout (GMythScheduler * scheduler, + GMythBackendInfo * backend_info, + guint timeout); +gboolean gmyth_scheduler_disconnect (GMythScheduler * scheduler); +gint gmyth_scheduler_get_schedule_list (GMythScheduler * scheduler, + GList ** sched_list); +gint gmyth_scheduler_get_recorded_list (GMythScheduler * scheduler, + GList ** rec_list); +RecordedInfo* gmyth_scheduler_get_recorded_info (GMythScheduler *scheduler, + const char *basename); +gboolean gmyth_scheduler_was_recorded_before (GMythScheduler* scheduler, + gint channel_id, + time_t start_time); +gboolean gmyth_scheduler_reactivate_schedule (GMythScheduler* scheduler, + gint channel_id, + time_t start_time); +GMythProgramInfo* gmyth_scheduler_get_recorded_on_time (GMythScheduler* scheduler, + guint channel_id); +GMythProgramInfo* gmyth_scheduler_get_recorded (GMythScheduler * scheduler, + GString * channel, + GTimeVal * starttime); +gint gmyth_scheduler_add_schedule (GMythScheduler * scheduler, + ScheduleInfo * schedule_info); +gboolean gmyth_scheduler_add_schedule_full (GMythScheduler * scheduler, + ScheduleInfo * schedule_info, + GMythScheduleType type); +gboolean gmyth_scheduler_add_exception (GMythScheduler *scheduler, + gint schedule_id, + ScheduleInfo *exception_info); +gint gmyth_scheduler_delete_schedule (GMythScheduler * scheduler, + gint record_id); +gint gmyth_scheduler_delete_recorded (GMythScheduler * scheduler, + gint record_id); +gboolean gmyth_scheduler_stop_recording (GMythScheduler * scheduler, + gint channel_id, + time_t start); +void gmyth_scheduler_recorded_info_get_preview(RecordedInfo * info, + GByteArray * data); -gboolean gmyth_scheduler_was_recorded_before(GMythScheduler* scheduler, gint channel_id, - time_t start_time); -gboolean gmyth_scheduler_reactivate_schedule(GMythScheduler* scheduler, gint channel_id, - time_t start_time); -GMythProgramInfo* -gmyth_scheduler_get_recorded_on_time(GMythScheduler* scheduler, - GString* channel); -GMythProgramInfo *gmyth_scheduler_get_recorded (GMythScheduler * scheduler, - GString * channel, - GTimeVal * starttime); -gint gmyth_scheduler_add_schedule (GMythScheduler * scheduler, - ScheduleInfo * schedule_info); -gboolean gmyth_scheduler_add_schedule_full (GMythScheduler * scheduler, - ScheduleInfo * schedule_info, GMythScheduleType type); -gboolean gmyth_scheduler_add_exception (GMythScheduler *scheduler, gint schedule_id, - ScheduleInfo *exception_info); +void gmyth_recorded_info_free (RecordedInfo * info); +void gmyth_schedule_info_free (ScheduleInfo * info); +void gmyth_recorded_info_list_free (GList * list); +void gmyth_schedule_info_list_free (GList * list); - -gint gmyth_scheduler_delete_schedule (GMythScheduler * scheduler, - gint record_id); -gint gmyth_scheduler_delete_recorded (GMythScheduler * scheduler, - gint record_id); -void gmyth_scheduler_recorded_info_get_preview - (RecordedInfo * info, - GByteArray * data); -void gmyth_recorded_info_free (RecordedInfo * info); -void gmyth_schedule_info_free (ScheduleInfo * info); -void gmyth_recorded_info_list_free (GList * list); -void gmyth_schedule_info_list_free (GList * list); - G_END_DECLS #endif /* __GMYTH_SCHEDULER_H__ */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-10-23 12:58:16
|
Revision: 869 http://gmyth.svn.sourceforge.net/gmyth/?rev=869&view=rev Author: melunko Date: 2007-10-23 05:58:20 -0700 (Tue, 23 Oct 2007) Log Message: ----------- Version changed to 0.4.1. Small changes in the debian/control to correct libcurl dependencies Modified Paths: -------------- trunk/gmyth/configure.ac trunk/gmyth/debian/changelog trunk/gmyth/debian/control Modified: trunk/gmyth/configure.ac =================================================================== --- trunk/gmyth/configure.ac 2007-10-15 18:00:20 UTC (rev 868) +++ trunk/gmyth/configure.ac 2007-10-23 12:58:20 UTC (rev 869) @@ -3,14 +3,14 @@ AC_PREREQ(2.50) -AC_INIT([gmyth],[0.4]) +AC_INIT([gmyth],[0.4.1]) AC_CONFIG_SRCDIR([src/gmyth.h]) AC_CONFIG_HEADER(config.h) dnl when going to/from release please set the nano (fourth number) right ! dnl releases only do Wall, SVN and prerelease does Werror too -AS_VERSION(gmyth, GMYTH, 0, 4, 0, 0, GMYTH_SVN="no", GMYTH_SVN="yes") +AS_VERSION(gmyth, GMYTH, 0, 4, 1, 0, GMYTH_SVN="no", GMYTH_SVN="yes") GMYTH_MAJORMINOR=$GMYTH_MAJOR_VERSION.$GMYTH_MINOR_VERSION AC_SUBST(GMYTH_MAJORMINOR) Modified: trunk/gmyth/debian/changelog =================================================================== --- trunk/gmyth/debian/changelog 2007-10-15 18:00:20 UTC (rev 868) +++ trunk/gmyth/debian/changelog 2007-10-23 12:58:20 UTC (rev 869) @@ -1,3 +1,9 @@ +gmyth (0.4.1-indt1) unstable; urgency=low + + * Patch from Tim Philipp to fix debian/control libcurl dependency + + -- Hallyson Melo <hal...@in...> Mon, 08 Oct 2007 10:49:19 -0300 + gmyth (0.4-indt1) unstable; urgency=low * Bug fixes Modified: trunk/gmyth/debian/control =================================================================== --- trunk/gmyth/debian/control 2007-10-15 18:00:20 UTC (rev 868) +++ trunk/gmyth/debian/control 2007-10-23 12:58:20 UTC (rev 869) @@ -1,7 +1,7 @@ Source: gmyth Priority: optional Maintainer: Hallyson Melo <hal...@in...> -Build-Depends: debhelper (>= 4.0.0), autotools-dev, cdbs (>= 0.4.0), libcurl3, libcurl3-openssl-dev, libxml2-dev, libglib2.0-dev, libmysqlclient15-dev | libmysqlclient14-dev +Build-Depends: debhelper (>= 4.0.0), autotools-dev, cdbs (>= 0.4.0), libcurl3, libcurl3-openssl-dev | libcurl3-gnutls-dev, libxml2-dev, libglib2.0-dev, libmysqlclient15-dev | libmysqlclient14-dev Standards-Version: 3.6.2 Section: user/library @@ -14,12 +14,12 @@ Package: gmyth-dev Section: user/library Architecture: any -Depends: gmyth (= ${Source-Version}), libcurl3, libcurl3-openssl-dev, libxml2-dev, libglib2.0-dev, libmysqlclient15-dev | libmysqlclient14-dev +Depends: gmyth (= ${Source-Version}), libcurl3, libcurl3-openssl-dev | libcurl3-gnutls-dev, libxml2-dev, libglib2.0-dev, libmysqlclient15-dev | libmysqlclient14-dev Description: The gmyth library development files. GMyth is a library intended to access mythtv backend functionalities from a glib/gobject perspective. It includes access to the program guide, recorded programs, scheduling, etc. Package: gmyth-utils Section: user/multimedia Architecture: any -Depends: gmyth (= ${Source-Version}) +Depends: gmyth (= ${binary:Version}) Description: The gmyth utils package. It contain the application gmyth-cat. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-10-15 18:00:16
|
Revision: 868 http://gmyth.svn.sourceforge.net/gmyth/?rev=868&view=rev Author: renatofilho Date: 2007-10-15 11:00:20 -0700 (Mon, 15 Oct 2007) Log Message: ----------- fixed include dir in gmyth.pc Modified Paths: -------------- trunk/gmyth/gmyth.pc.in Modified: trunk/gmyth/gmyth.pc.in =================================================================== --- trunk/gmyth/gmyth.pc.in 2007-10-08 18:39:07 UTC (rev 867) +++ trunk/gmyth/gmyth.pc.in 2007-10-15 18:00:20 UTC (rev 868) @@ -9,4 +9,4 @@ Requires: gobject-2.0 glib-2.0 gthread-2.0 libcurl Libs: @MYSQL_LIBS@ -L${libdir} -lgmyth -lcurl -Cflags: -I${includedir}/gmyth +Cflags: -I${includedir} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-10-08 18:39:10
|
Revision: 867 http://gmyth.svn.sourceforge.net/gmyth/?rev=867&view=rev Author: melunko Date: 2007-10-08 11:39:07 -0700 (Mon, 08 Oct 2007) Log Message: ----------- Fixes at the gst-gmyth package name in changelog file Modified Paths: -------------- trunk/gst-gmyth/debian/changelog Modified: trunk/gst-gmyth/debian/changelog =================================================================== --- trunk/gst-gmyth/debian/changelog 2007-10-08 18:35:09 UTC (rev 866) +++ trunk/gst-gmyth/debian/changelog 2007-10-08 18:39:07 UTC (rev 867) @@ -1,4 +1,4 @@ -gst-indt-plugins (0.10.2-svn20070914) unstable; urgency=low +gstreamer0.10-indt-plugins (0.10.2-svn20070914) unstable; urgency=low * Initial packaged; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-10-08 18:35:05
|
Revision: 866 http://gmyth.svn.sourceforge.net/gmyth/?rev=866&view=rev Author: melunko Date: 2007-10-08 11:35:09 -0700 (Mon, 08 Oct 2007) Log Message: ----------- Fixed gst-gmyth Makefile to get source from gstreamer cvs Modified Paths: -------------- trunk/gst-gmyth/mythsrc/Makefile.am Modified: trunk/gst-gmyth/mythsrc/Makefile.am =================================================================== --- trunk/gst-gmyth/mythsrc/Makefile.am 2007-10-08 18:23:42 UTC (rev 865) +++ trunk/gst-gmyth/mythsrc/Makefile.am 2007-10-08 18:35:09 UTC (rev 866) @@ -22,6 +22,8 @@ gstmythtvsrc.c: gstmythtvsrc.h cvs -d:pserver:an...@an...:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.c mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.c . + +gstmythtvsrc.h: cvs -d:pserver:an...@an...:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.h mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.h . This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-10-08 18:23:40
|
Revision: 865 http://gmyth.svn.sourceforge.net/gmyth/?rev=865&view=rev Author: renatofilho Date: 2007-10-08 11:23:42 -0700 (Mon, 08 Oct 2007) Log Message: ----------- patch by Tim-Philipp M?\195?\188ller, release gmyth contex if connection error Modified Paths: -------------- trunk/gmyth/src/gmyth_file_transfer.c Modified: trunk/gmyth/src/gmyth_file_transfer.c =================================================================== --- trunk/gmyth/src/gmyth_file_transfer.c 2007-10-08 18:17:47 UTC (rev 864) +++ trunk/gmyth/src/gmyth_file_transfer.c 2007-10-08 18:23:42 UTC (rev 865) @@ -381,6 +381,7 @@ backend_info->hostname, backend_info->port, TRUE)) { + _control_release_context(transfer); g_object_unref(priv->control_sock); priv->control_sock = NULL; return FALSE; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-10-08 18:18:35
|
Revision: 864 http://gmyth.svn.sourceforge.net/gmyth/?rev=864&view=rev Author: renatofilho Date: 2007-10-08 11:17:47 -0700 (Mon, 08 Oct 2007) Log Message: ----------- fixed bug on uri without port Modified Paths: -------------- trunk/gmyth/src/gmyth_backendinfo.c trunk/gmyth/src/gmyth_backendinfo.h trunk/gmyth/src/gmyth_uri.c trunk/gmyth/src/gmyth_uri.h Modified: trunk/gmyth/src/gmyth_backendinfo.c =================================================================== --- trunk/gmyth/src/gmyth_backendinfo.c 2007-09-26 18:04:24 UTC (rev 863) +++ trunk/gmyth/src/gmyth_backendinfo.c 2007-10-08 18:17:47 UTC (rev 864) @@ -152,14 +152,13 @@ GMythBackendInfo * gmyth_backend_info_new_with_uri(const gchar * uri_str) { - GMythBackendInfo *backend_info = - GMYTH_BACKEND_INFO(g_object_new(GMYTH_BACKEND_INFO_TYPE, NULL)); + GMythBackendInfo *backend_info; + GMythURI *uri; + gchar **path_parts; - GMythURI *uri = gmyth_uri_new_with_value(uri_str); - - gchar **path_parts = - g_strsplit(gmyth_uri_get_path(uri), "&", -1); - + backend_info = GMYTH_BACKEND_INFO(g_object_new(GMYTH_BACKEND_INFO_TYPE, NULL)); + uri = gmyth_uri_new_with_value (uri_str); + path_parts = g_strsplit(gmyth_uri_get_path(uri), "&", -1); gmyth_backend_info_set_hostname(backend_info, gmyth_uri_get_host(uri)); gmyth_backend_info_set_username(backend_info, gmyth_uri_get_user(uri)); gmyth_backend_info_set_password(backend_info, Modified: trunk/gmyth/src/gmyth_backendinfo.h =================================================================== --- trunk/gmyth/src/gmyth_backendinfo.h 2007-09-26 18:04:24 UTC (rev 863) +++ trunk/gmyth/src/gmyth_backendinfo.h 2007-10-08 18:17:47 UTC (rev 864) @@ -100,9 +100,9 @@ const gchar *password); void gmyth_backend_info_set_db_name (GMythBackendInfo *backend_info, const gchar *db_name); -void gmyth_backend_info_set_db_port (GMythBackendInfo *backend_info, - gint db_port); -void gmyth_backend_info_set_port (GMythBackendInfo *backend_info, +void gmyth_backend_info_set_db_port (GMythBackendInfo *backend_info, + gint db_port); +void gmyth_backend_info_set_port (GMythBackendInfo *backend_info, gint port); void gmyth_backend_info_set_status_port (GMythBackendInfo *backend_info, gint port); Modified: trunk/gmyth/src/gmyth_uri.c =================================================================== --- trunk/gmyth/src/gmyth_uri.c 2007-09-26 18:04:24 UTC (rev 863) +++ trunk/gmyth/src/gmyth_uri.c 2007-10-08 18:17:47 UTC (rev 864) @@ -39,6 +39,33 @@ #include "gmyth_debug.h" +/**************************************** +* Define +****************************************/ + +#define GMYTH_URI_KNKOWN_PORT (-1) +#define GMYTH_URI_DEFAULT_HTTP_PORT 80 +#define GMYTH_URI_DEFAULT_FTP_PORT 21 +#define GMYTH_URI_DEFAULT_MYTH_PORT 6543 +#define GMYTH_URI_DEFAULT_PATH "/" +#define GMYTH_URI_MAXLEN 256 + +#define GMYTH_URI_PROTOCOL_DELIM "://" +#define GMYTH_URI_USER_DELIM "@" +#define GMYTH_URI_COLON_DELIM ":" +#define GMYTH_URI_SLASH_DELIM "/" +#define GMYTH_URI_SBLACET_DELIM "[" +#define GMYTH_URI_EBLACET_DELIM "]" +#define GMYTH_URI_SHARP_DELIM "#" +#define GMYTH_URI_QUESTION_DELIM "?" +#define GMYTH_URI_E_DELIM "&" +#define GMYTH_URI_ESCAPING_CHAR "%" + +#define GMYTH_URI_PROTOCOL_MYTH "myth" +#define GMYTH_URI_PROTOCOL_HTTP "http" +#define GMYTH_URI_PROTOCOL_FTP "ftp" + + static void gmyth_uri_class_init(GMythURIClass * klass); static void gmyth_uri_init(GMythURI * object); @@ -248,6 +275,21 @@ return ""; } +static gint +gmyth_uri_get_default_port (GMythURI * uri) +{ + const gchar *protocol = gmyth_uri_get_protocol(uri); + + if (strcmp(protocol, GMYTH_URI_PROTOCOL_HTTP) == 0) + return GMYTH_URI_DEFAULT_HTTP_PORT; + if (strcmp(protocol, GMYTH_URI_PROTOCOL_FTP) == 0) + return GMYTH_URI_DEFAULT_FTP_PORT; + if (strcmp(protocol, GMYTH_URI_PROTOCOL_MYTH) == 0) + return GMYTH_URI_DEFAULT_MYTH_PORT; + + return GMYTH_URI_KNKOWN_PORT; +} + /** * Parses a URI string into a GMythURI instance. * @@ -327,21 +369,15 @@ uri->host = g_string_new_len(hostStr->str + 1, colonIdx - 2); } + /**** port ****/ - portStr = - g_string_new_len(hostStr->str + colonIdx + 1, - hostLen - colonIdx - 1); + portStr = g_string_new_len(hostStr->str + colonIdx + 1, + hostLen - colonIdx - 1); uri->port = (gint) g_ascii_strtoull(portStr->str, NULL, 10); g_string_free(portStr, TRUE); g_string_free(hostStr, TRUE); } else { - const gchar *protocol = gmyth_uri_get_protocol(uri); - - uri->port = GMYTH_URI_KNKOWN_PORT; - if (strcmp(protocol, GMYTH_URI_PROTOCOL_HTTP) == 0) - uri->port = GMYTH_URI_DEFAULT_HTTP_PORT; - if (strcmp(protocol, GMYTH_URI_PROTOCOL_FTP) == 0) - uri->port = GMYTH_URI_DEFAULT_FTP_PORT; + uri->port = gmyth_uri_get_default_port (uri); } if (shashIdx > 0) Modified: trunk/gmyth/src/gmyth_uri.h =================================================================== --- trunk/gmyth/src/gmyth_uri.h 2007-09-26 18:04:24 UTC (rev 863) +++ trunk/gmyth/src/gmyth_uri.h 2007-10-08 18:17:47 UTC (rev 864) @@ -46,31 +46,7 @@ typedef struct _GMythURI GMythURI; typedef struct _GMythURIClass GMythURIClass; - /**************************************** - * Define - ****************************************/ -#define GMYTH_URI_KNKOWN_PORT (-1) -#define GMYTH_URI_DEFAULT_HTTP_PORT 80 -#define GMYTH_URI_DEFAULT_FTP_PORT 21 -#define GMYTH_URI_DEFAULT_PATH "/" -#define GMYTH_URI_MAXLEN 256 - -#define GMYTH_URI_PROTOCOL_DELIM "://" -#define GMYTH_URI_USER_DELIM "@" -#define GMYTH_URI_COLON_DELIM ":" -#define GMYTH_URI_SLASH_DELIM "/" -#define GMYTH_URI_SBLACET_DELIM "[" -#define GMYTH_URI_EBLACET_DELIM "]" -#define GMYTH_URI_SHARP_DELIM "#" -#define GMYTH_URI_QUESTION_DELIM "?" -#define GMYTH_URI_E_DELIM "&" -#define GMYTH_URI_ESCAPING_CHAR "%" - -#define GMYTH_URI_PROTOCOL_MYTH "myth" -#define GMYTH_URI_PROTOCOL_HTTP "http" -#define GMYTH_URI_PROTOCOL_FTP "ftp" - /**************************************** * Data Type ****************************************/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-09-26 18:04:22
|
Revision: 863 http://gmyth.svn.sourceforge.net/gmyth/?rev=863&view=rev Author: renatofilho Date: 2007-09-26 11:04:24 -0700 (Wed, 26 Sep 2007) Log Message: ----------- create a flag to work with decodebin1 Modified Paths: -------------- trunk/gmyth-stream/gmencoder/src/gmencoder.c Modified: trunk/gmyth-stream/gmencoder/src/gmencoder.c =================================================================== --- trunk/gmyth-stream/gmencoder/src/gmencoder.c 2007-09-24 15:08:56 UTC (rev 862) +++ trunk/gmyth-stream/gmencoder/src/gmencoder.c 2007-09-26 18:04:24 UTC (rev 863) @@ -887,7 +887,11 @@ if (src == NULL) goto error; - decode = gst_element_factory_make("decodebin2", "decode"); + + if (g_getenv ("USE_DECODEBIN1")) + decode = gst_element_factory_make("decodebin", "decode"); + else + decode = gst_element_factory_make("decodebin2", "decode"); if (decode == NULL) goto error; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-09-24 15:08:54
|
Revision: 862 http://gmyth.svn.sourceforge.net/gmyth/?rev=862&view=rev Author: renatofilho Date: 2007-09-24 08:08:56 -0700 (Mon, 24 Sep 2007) Log Message: ----------- removed playbin maemo deb scripts Removed Paths: ------------- trunk/gst-gmyth/debian/gstreamer0.10-indt-concatmux.install trunk/gst-gmyth/debian/gstreamer0.10-indt-playbinmaemo.install Deleted: trunk/gst-gmyth/debian/gstreamer0.10-indt-concatmux.install =================================================================== --- trunk/gst-gmyth/debian/gstreamer0.10-indt-concatmux.install 2007-09-24 15:07:47 UTC (rev 861) +++ trunk/gst-gmyth/debian/gstreamer0.10-indt-concatmux.install 2007-09-24 15:08:56 UTC (rev 862) @@ -1 +0,0 @@ -debian/tmp/usr/lib/gstreamer-*/*concatmux*.so Deleted: trunk/gst-gmyth/debian/gstreamer0.10-indt-playbinmaemo.install =================================================================== --- trunk/gst-gmyth/debian/gstreamer0.10-indt-playbinmaemo.install 2007-09-24 15:07:47 UTC (rev 861) +++ trunk/gst-gmyth/debian/gstreamer0.10-indt-playbinmaemo.install 2007-09-24 15:08:56 UTC (rev 862) @@ -1,3 +0,0 @@ -debian/tmp/usr/lib/gstreamer-*/*decodebin2*.so -debian/tmp/usr/lib/gstreamer-*/*multiqueue*.so -debian/tmp/usr/lib/gstreamer-*/*playbinmaemo*.so This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-09-24 15:07:48
|
Revision: 861 http://gmyth.svn.sourceforge.net/gmyth/?rev=861&view=rev Author: renatofilho Date: 2007-09-24 08:07:47 -0700 (Mon, 24 Sep 2007) Log Message: ----------- removed concatmux element Removed Paths: ------------- trunk/gst-gmyth/concatmux/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-09-24 15:06:57
|
Revision: 860 http://gmyth.svn.sourceforge.net/gmyth/?rev=860&view=rev Author: renatofilho Date: 2007-09-24 08:06:54 -0700 (Mon, 24 Sep 2007) Log Message: ----------- moved playbinmaemo to maemo-myth project 'https://garage.maemo.org/svn/mtv/trunk/gst' Modified Paths: -------------- trunk/gst-gmyth/Makefile.am trunk/gst-gmyth/configure.ac trunk/gst-gmyth/debian/control Removed Paths: ------------- trunk/gst-gmyth/decodebin2/ trunk/gst-gmyth/multiqueue/ trunk/gst-gmyth/playbinmaemo/ Modified: trunk/gst-gmyth/Makefile.am =================================================================== --- trunk/gst-gmyth/Makefile.am 2007-09-18 20:01:18 UTC (rev 859) +++ trunk/gst-gmyth/Makefile.am 2007-09-24 15:06:54 UTC (rev 860) @@ -1,16 +1,8 @@ SUBDIRS = \ - nuvdemux \ - concatmux \ - playbinmaemo \ - decodebin2 \ - multiqueue + nuvdemux DIST_SUBDIRS = \ - nuvdemux \ - concatmux \ - playbinmaemo \ - decodebin2 \ - multiqueue + nuvdemux if WITH_GMYTH SUBDIRS += mythsrc Modified: trunk/gst-gmyth/configure.ac =================================================================== --- trunk/gst-gmyth/configure.ac 2007-09-18 20:01:18 UTC (rev 859) +++ trunk/gst-gmyth/configure.ac 2007-09-24 15:06:54 UTC (rev 860) @@ -144,10 +144,6 @@ AC_OUTPUT( \ Makefile \ nuvdemux/Makefile \ - mythsrc/Makefile \ - concatmux/Makefile \ - playbinmaemo/Makefile \ - decodebin2/Makefile \ - multiqueue/Makefile + mythsrc/Makefile ) Modified: trunk/gst-gmyth/debian/control =================================================================== --- trunk/gst-gmyth/debian/control 2007-09-18 20:01:18 UTC (rev 859) +++ trunk/gst-gmyth/debian/control 2007-09-24 15:06:54 UTC (rev 860) @@ -21,21 +21,6 @@ Description: INdT mythtv source GStreamer plugin This GStreamer plugin permits read streamer from MythTv Server -Package: gstreamer0.10-indt-concatmux -Architecture: any -Section: user/library -Depends: ${misc:Depends}, ${shlibs:Depends} -Description: INdT Concat Stream Mux GStreamer plugin - This GStreamer plugin permits contact any stream in a single stream - -Package: gstreamer0.10-indt-playbinmaemo -Architecture: any -Section: user/library -Depends: ${misc:Depends}, ${shlibs:Depends} -Description: INdT Playbinmaemo GStreamer plugin - Contains some necessary gstreamear elemenets and playbinmaemo autoplug element - - Package: maemo-nuvdemux Architecture: all Section: user/library This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-09-18 20:01:15
|
Revision: 859 http://gmyth.svn.sourceforge.net/gmyth/?rev=859&view=rev Author: renatofilho Date: 2007-09-18 13:01:18 -0700 (Tue, 18 Sep 2007) Log Message: ----------- removed flat to keep aspect ration Modified Paths: -------------- trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c Modified: trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c =================================================================== --- trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c 2007-09-18 17:20:50 UTC (rev 858) +++ trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c 2007-09-18 20:01:18 UTC (rev 859) @@ -996,8 +996,10 @@ if ((pbm->video_sink != NULL) && (pbm->xid != -1) && (GST_IS_X_OVERLAY (pbm->video_sink))) { Display *display; + /* g_object_set (G_OBJECT (pbm->video_sink), "force-aspect-ratio", TRUE, NULL); + */ display = XOpenDisplay(NULL); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-09-18 17:20:51
|
Revision: 858 http://gmyth.svn.sourceforge.net/gmyth/?rev=858&view=rev Author: renatofilho Date: 2007-09-18 10:20:50 -0700 (Tue, 18 Sep 2007) Log Message: ----------- fixed debian scripts Modified Paths: -------------- trunk/gmyth/debian/changelog trunk/gst-gmyth/autogen.sh trunk/gst-gmyth/debian/control trunk/gst-gmyth/mythsrc/Makefile.am trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.h trunk/libgnomevfs2-mythtv/debian/changelog trunk/libgnomevfs2-mythtv/debian/control Modified: trunk/gmyth/debian/changelog =================================================================== --- trunk/gmyth/debian/changelog 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gmyth/debian/changelog 2007-09-18 17:20:50 UTC (rev 858) @@ -1,4 +1,4 @@ -gmyth (0.4) unstable; urgency=low +gmyth (0.4-indt1) unstable; urgency=low * Bug fixes * Improvements in the schedule management (add all schedule, add exception, ...) Modified: trunk/gst-gmyth/autogen.sh =================================================================== --- trunk/gst-gmyth/autogen.sh 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/autogen.sh 2007-09-18 17:20:50 UTC (rev 858) @@ -4,7 +4,7 @@ srcdir=`dirname $0` test -z "$srcdir" && srcdir=. -PKG_NAME="gmemcoder" +PKG_NAME="gstreamer elements" (test -f $srcdir/configure.ac) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" Modified: trunk/gst-gmyth/debian/control =================================================================== --- trunk/gst-gmyth/debian/control 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/debian/control 2007-09-18 17:20:50 UTC (rev 858) @@ -4,6 +4,7 @@ Maintainer: Renato Araujo Oliveira Filho <ren...@in...> Build-Depends: debhelper (>= 4.1.0), cdbs (>= 0.4.8), autotools-dev, pkg-config (>= 0.11.0), libgstreamer0.10-dev (>= 0.10.0), gmyth-dev (>= 0.3) Standards-Version: 3.6.2 +Section: user/library Package: gstreamer0.10-indt-nuvdemux Architecture: any Modified: trunk/gst-gmyth/mythsrc/Makefile.am =================================================================== --- trunk/gst-gmyth/mythsrc/Makefile.am 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/mythsrc/Makefile.am 2007-09-18 17:20:50 UTC (rev 858) @@ -22,8 +22,6 @@ gstmythtvsrc.c: gstmythtvsrc.h cvs -d:pserver:an...@an...:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.c mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.c . - -gstmythtvsrc.h: cvs -d:pserver:an...@an...:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.h mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.h . Modified: trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c =================================================================== --- trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c 2007-09-18 17:20:50 UTC (rev 858) @@ -74,7 +74,7 @@ const GstCaps *caps); static GstPad *find_sink_pad (GstElement * element); static void update_volume (GstPlayBinMaemo *pbm, - gfloat volume); + gdouble volume); static void update_xid (GstPlayBinMaemo *pbm); static void new_decoded_pad_cb (GstElement *object, GstPad* pad, @@ -87,9 +87,11 @@ GstPad *pad, GstCaps *casp, gpointer user_data); +#if 0 static gboolean autoplug_continue_cb (GstElement* object, GstCaps* caps, gpointer user_data); +#endif static gboolean add_element (GstPlayBinMaemo *pbm, GstElement *child); static void clear_elements (GstPlayBinMaemo *pbm); @@ -182,6 +184,7 @@ play_bin_maemo = GST_PLAY_BIN_MAEMO (object); g_free (play_bin_maemo->uri); play_bin_maemo->uri = NULL; + clear_elements (GST_PLAY_BIN_MAEMO (object)); G_OBJECT_CLASS (parent_class)->dispose (object); } @@ -189,7 +192,6 @@ static void gst_play_bin_maemo_finalize (GObject * object) { - clear_elements (GST_PLAY_BIN_MAEMO (object)); G_OBJECT_CLASS (parent_class)->finalize (object); } @@ -312,17 +314,62 @@ } static void +_setup_decoder (GstPlayBinMaemo *pbm, GstElement *element) +{ + GList *factories; + GstCaps *all_caps; + //GstCaps *decode_caps; + + +// all_caps = gst_caps_new_empty (); + g_object_get (element, "caps", &all_caps, NULL); + all_caps = gst_caps_copy (all_caps); +// gst_caps_append (all_caps, decode_caps); + + /* loop over all the factories */ + for (factories = pbm->factories; factories; factories = g_list_next (factories)) { + GstElementFactory *factory = GST_ELEMENT_FACTORY (factories->data); + const GList *templates; + GList *walk; + + /* get the templates from the element factory */ + templates = gst_element_factory_get_static_pad_templates (factory); + for (walk = (GList *) templates; walk; walk = g_list_next (walk)) { + GstStaticPadTemplate *templ = walk->data; + + /* we only care about the sink templates */ + if (templ->direction == GST_PAD_SINK) { + GstCaps *tmpl_caps; + + /* try to intersect the caps with the caps of the template */ + tmpl_caps = gst_static_caps_get (&templ->static_caps); + gst_caps_append (all_caps, gst_caps_copy (tmpl_caps)); + gst_caps_ref (tmpl_caps); + } + } + } + + g_object_set (element, "caps", all_caps, NULL); +} + +static void prepare_elements (GstPlayBinMaemo *pbm) { GstElement *decoder; GstElement *queue; + queue = gst_element_factory_make ("queue", NULL); + add_element (pbm, queue); + decoder = gst_element_factory_make ("decodebin2", "decode"); + _setup_decoder (pbm, decoder); add_element (pbm, decoder); + /* g_signal_connect (G_OBJECT (decoder), "autoplug-continue", G_CALLBACK (autoplug_continue_cb), pbm); + */ g_signal_connect (G_OBJECT (decoder), "unknown-type", @@ -340,9 +387,6 @@ pbm); - queue = gst_element_factory_make ("queue", NULL); - add_element (pbm, queue); - if (gst_element_link_many (pbm->source, queue, decoder, NULL) == FALSE) { GST_WARNING ("FAIL TO LINK SRC WITH DECODEBIN2"); } @@ -609,6 +653,7 @@ return to_try; } +#if 0 static gboolean autoplug_continue_cb (GstElement* object, GstCaps* caps, @@ -641,6 +686,7 @@ return ret; } +#endif static void unknown_type_cb (GstElement *object, @@ -717,7 +763,7 @@ } else if (strstr (gst_element_factory_get_klass (factory), "Sink/Audio") != NULL) { GParamSpec *vol_spec; - GstElement *prev; + GstElement *prev = NULL; prev = queue; vol_spec = g_object_class_find_property (G_OBJECT_GET_CLASS (element), "volume"); @@ -747,8 +793,6 @@ } prev = volume; - } else { - g_param_spec_unref (vol_spec); } gst_bin_add (GST_BIN (bin), element); @@ -768,6 +812,7 @@ gst_element_add_pad (bin, gst_ghost_pad_new ("sink", pad)); gst_object_unref (pad); + return bin; error: @@ -810,8 +855,8 @@ GstElementFactory *factory = (GstElementFactory *) walk->data; GstElement *element; GstPad *sinkpad = NULL; - gint result; + if ((element = create_element (pbm, factory)) == NULL) { GST_WARNING_OBJECT (pbm, "Could not create an element from %s", gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory))); @@ -861,7 +906,6 @@ g_list_free (comp); if (linked == FALSE) { - g_debug ("GstFlow Error"); GST_WARNING ("GstFlow ERROR"); } GST_PAD_STREAM_UNLOCK (pad); @@ -935,7 +979,7 @@ } static void -update_volume (GstPlayBinMaemo *pbm, gfloat volume) +update_volume (GstPlayBinMaemo *pbm, gdouble volume) { pbm->volume = volume; if (pbm->volume_element) { Modified: trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.h =================================================================== --- trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.h 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.h 2007-09-18 17:20:50 UTC (rev 858) @@ -48,7 +48,7 @@ gboolean is_stream; gboolean parse_metadata; glong xid; - gfloat volume; + gdouble volume; /* currently loaded media */ gboolean need_rebuild; Modified: trunk/libgnomevfs2-mythtv/debian/changelog =================================================================== --- trunk/libgnomevfs2-mythtv/debian/changelog 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/libgnomevfs2-mythtv/debian/changelog 2007-09-18 17:20:50 UTC (rev 858) @@ -1,4 +1,4 @@ -libgnomevfs2-mythtv (0.3) unstable; urgency=low +libgnomevfs2-mythtv (0.3-indt1) unstable; urgency=low * Some bugs fixed * Livetv improved Modified: trunk/libgnomevfs2-mythtv/debian/control =================================================================== --- trunk/libgnomevfs2-mythtv/debian/control 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/libgnomevfs2-mythtv/debian/control 2007-09-18 17:20:50 UTC (rev 858) @@ -3,6 +3,7 @@ Maintainer: Hallyson Melo <hal...@in...> Build-Depends: debhelper (>= 4.0.0), autotools-dev, cdbs (>= 0.4.0), libglib2.0-dev, gmyth-dev (>= 0.3) Standards-Version: 3.6.1 +Section: user/library Package: libgnomevfs2-mythtv Section: user/library This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-09-18 17:19:42
|
Revision: 857 http://gmyth.svn.sourceforge.net/gmyth/?rev=857&view=rev Author: melunko Date: 2007-09-18 10:19:39 -0700 (Tue, 18 Sep 2007) Log Message: ----------- updated gst-gmyth debian/control Modified Paths: -------------- trunk/gst-gmyth/debian/control Modified: trunk/gst-gmyth/debian/control =================================================================== --- trunk/gst-gmyth/debian/control 2007-09-18 13:09:39 UTC (rev 856) +++ trunk/gst-gmyth/debian/control 2007-09-18 17:19:39 UTC (rev 857) @@ -1,4 +1,5 @@ -Source: gst-indt-plugins +Source: gstreamer0.10-indt-plugins +Section: user/library Priority: optional Maintainer: Renato Araujo Oliveira Filho <ren...@in...> Build-Depends: debhelper (>= 4.1.0), cdbs (>= 0.4.8), autotools-dev, pkg-config (>= 0.11.0), libgstreamer0.10-dev (>= 0.10.0), gmyth-dev (>= 0.3) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-09-18 13:09:40
|
Revision: 856 http://gmyth.svn.sourceforge.net/gmyth/?rev=856&view=rev Author: melunko Date: 2007-09-18 06:09:39 -0700 (Tue, 18 Sep 2007) Log Message: ----------- debian/changelog updated Modified Paths: -------------- trunk/gmyth-stream/gmencoder/debian/changelog Modified: trunk/gmyth-stream/gmencoder/debian/changelog =================================================================== --- trunk/gmyth-stream/gmencoder/debian/changelog 2007-09-18 13:06:39 UTC (rev 855) +++ trunk/gmyth-stream/gmencoder/debian/changelog 2007-09-18 13:09:39 UTC (rev 856) @@ -1,4 +1,4 @@ -gmencoder (0.1) unstable; urgency=low +gmencoder (0.1-indt1) unstable; urgency=low * Initial release This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-09-18 13:06:35
|
Revision: 855 http://gmyth.svn.sourceforge.net/gmyth/?rev=855&view=rev Author: melunko Date: 2007-09-18 06:06:39 -0700 (Tue, 18 Sep 2007) Log Message: ----------- Fixed debian/control file Modified Paths: -------------- trunk/gmyth-stream/gmencoder/debian/control Modified: trunk/gmyth-stream/gmencoder/debian/control =================================================================== --- trunk/gmyth-stream/gmencoder/debian/control 2007-09-18 12:53:38 UTC (rev 854) +++ trunk/gmyth-stream/gmencoder/debian/control 2007-09-18 13:06:39 UTC (rev 855) @@ -8,5 +8,5 @@ Package: gmencoder Section: user/multimedia Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, libgstreamer-plugins-base0.10, libglib2.0-0, libgnomevfs2-0 +Depends: ${shlibs:Depends}, ${misc:Depends}, libgstreamer-plugins-base0.10-0, libglib2.0-0, libgnomevfs2-0 Description: GMencoder is an application similar to mencoder, but it uses gstreamer as its backend engine. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-09-18 12:53:38
|
Revision: 854 http://gmyth.svn.sourceforge.net/gmyth/?rev=854&view=rev Author: melunko Date: 2007-09-18 05:53:38 -0700 (Tue, 18 Sep 2007) Log Message: ----------- Added debian folder for gmencoder deb package generation Added Paths: ----------- trunk/gmyth-stream/gmencoder/debian/ trunk/gmyth-stream/gmencoder/debian/README.Debian trunk/gmyth-stream/gmencoder/debian/changelog trunk/gmyth-stream/gmencoder/debian/compat trunk/gmyth-stream/gmencoder/debian/control trunk/gmyth-stream/gmencoder/debian/copyright trunk/gmyth-stream/gmencoder/debian/docs trunk/gmyth-stream/gmencoder/debian/rules Added: trunk/gmyth-stream/gmencoder/debian/README.Debian =================================================================== --- trunk/gmyth-stream/gmencoder/debian/README.Debian (rev 0) +++ trunk/gmyth-stream/gmencoder/debian/README.Debian 2007-09-18 12:53:38 UTC (rev 854) @@ -0,0 +1,6 @@ +gmencoder for Debian +-------------------- + +<possible notes regarding this package - if none, delete this file> + + -- Hallyson Melo <hal...@in...> Mon, 17 Sep 2007 16:44:13 -0300 Added: trunk/gmyth-stream/gmencoder/debian/changelog =================================================================== --- trunk/gmyth-stream/gmencoder/debian/changelog (rev 0) +++ trunk/gmyth-stream/gmencoder/debian/changelog 2007-09-18 12:53:38 UTC (rev 854) @@ -0,0 +1,6 @@ +gmencoder (0.1) unstable; urgency=low + + * Initial release + + -- Hallyson Melo <hal...@in...> Mon, 17 Sep 2007 16:44:13 -0300 + Added: trunk/gmyth-stream/gmencoder/debian/compat =================================================================== --- trunk/gmyth-stream/gmencoder/debian/compat (rev 0) +++ trunk/gmyth-stream/gmencoder/debian/compat 2007-09-18 12:53:38 UTC (rev 854) @@ -0,0 +1 @@ +5 Added: trunk/gmyth-stream/gmencoder/debian/control =================================================================== --- trunk/gmyth-stream/gmencoder/debian/control (rev 0) +++ trunk/gmyth-stream/gmencoder/debian/control 2007-09-18 12:53:38 UTC (rev 854) @@ -0,0 +1,12 @@ +Source: gmencoder +Section: user/multimedia +Priority: extra +Maintainer: Hallyson Melo <hal...@in...> +Build-Depends: debhelper (>= 5), autotools-dev, libgstreamer-plugins-base0.10-dev, libglib2.0-dev, libgnomevfs2-dev +Standards-Version: 3.7.2 + +Package: gmencoder +Section: user/multimedia +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libgstreamer-plugins-base0.10, libglib2.0-0, libgnomevfs2-0 +Description: GMencoder is an application similar to mencoder, but it uses gstreamer as its backend engine. Added: trunk/gmyth-stream/gmencoder/debian/copyright =================================================================== --- trunk/gmyth-stream/gmencoder/debian/copyright (rev 0) +++ trunk/gmyth-stream/gmencoder/debian/copyright 2007-09-18 12:53:38 UTC (rev 854) @@ -0,0 +1,22 @@ +This package was debianized by Hallyson Melo <hal...@in...> on +Mon, 17 Sep 2007 16:44:13 -0300. + +It was downloaded from <fill in http/ftp site> + +Upstream Author: <put author(s) name and email here> + +Copyright: <put the year(s) of the copyright, and the names of the + copyright holder(s) here> + +License: + +<Put the license of the package here> + + +The Debian packaging is (C) 2007, Hallyson Melo <hal...@in...> and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. + Added: trunk/gmyth-stream/gmencoder/debian/docs =================================================================== --- trunk/gmyth-stream/gmencoder/debian/docs (rev 0) +++ trunk/gmyth-stream/gmencoder/debian/docs 2007-09-18 12:53:38 UTC (rev 854) @@ -0,0 +1,2 @@ +NEWS +README Added: trunk/gmyth-stream/gmencoder/debian/rules =================================================================== --- trunk/gmyth-stream/gmencoder/debian/rules (rev 0) +++ trunk/gmyth-stream/gmencoder/debian/rules 2007-09-18 12:53:38 UTC (rev 854) @@ -0,0 +1,107 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/gmencoder.sgml > gmencoder.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/gmencoder. + $(MAKE) DESTDIR=$(CURDIR)/debian/gmencoder install + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install Property changes on: trunk/gmyth-stream/gmencoder/debian/rules ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-09-18 12:45:33
|
Revision: 853 http://gmyth.svn.sourceforge.net/gmyth/?rev=853&view=rev Author: melunko Date: 2007-09-18 05:45:36 -0700 (Tue, 18 Sep 2007) Log Message: ----------- gmemcoder folder renamed to gmencoder Added Paths: ----------- trunk/gmyth-stream/gmencoder/ trunk/gmyth-stream/gmencoder/AUTHORS trunk/gmyth-stream/gmencoder/COPYING trunk/gmyth-stream/gmencoder/ChangeLog trunk/gmyth-stream/gmencoder/INSTALL trunk/gmyth-stream/gmencoder/Makefile.am trunk/gmyth-stream/gmencoder/NEWS trunk/gmyth-stream/gmencoder/README trunk/gmyth-stream/gmencoder/autogen.sh trunk/gmyth-stream/gmencoder/configure.ac trunk/gmyth-stream/gmencoder/m4/ trunk/gmyth-stream/gmencoder/src/ trunk/gmyth-stream/gmencoder/tests/ Removed Paths: ------------- trunk/gmyth-stream/gmemcoder/ trunk/gmyth-stream/gmencoder/AUTHORS trunk/gmyth-stream/gmencoder/COPYING trunk/gmyth-stream/gmencoder/ChangeLog trunk/gmyth-stream/gmencoder/INSTALL trunk/gmyth-stream/gmencoder/Makefile.am trunk/gmyth-stream/gmencoder/NEWS trunk/gmyth-stream/gmencoder/README trunk/gmyth-stream/gmencoder/autogen.sh trunk/gmyth-stream/gmencoder/configure.ac trunk/gmyth-stream/gmencoder/m4/ trunk/gmyth-stream/gmencoder/src/ trunk/gmyth-stream/gmencoder/tests/ Copied: trunk/gmyth-stream/gmencoder (from rev 850, trunk/gmyth-stream/gmemcoder) Deleted: trunk/gmyth-stream/gmencoder/AUTHORS =================================================================== Copied: trunk/gmyth-stream/gmencoder/AUTHORS (from rev 851, trunk/gmyth-stream/gmemcoder/AUTHORS) =================================================================== Deleted: trunk/gmyth-stream/gmencoder/COPYING =================================================================== Copied: trunk/gmyth-stream/gmencoder/COPYING (from rev 851, trunk/gmyth-stream/gmemcoder/COPYING) =================================================================== Deleted: trunk/gmyth-stream/gmencoder/ChangeLog =================================================================== Copied: trunk/gmyth-stream/gmencoder/ChangeLog (from rev 851, trunk/gmyth-stream/gmemcoder/ChangeLog) =================================================================== Deleted: trunk/gmyth-stream/gmencoder/INSTALL =================================================================== --- trunk/gmyth-stream/gmemcoder/INSTALL 2007-09-14 20:35:12 UTC (rev 850) +++ trunk/gmyth-stream/gmencoder/INSTALL 2007-09-18 12:45:36 UTC (rev 853) @@ -1,236 +0,0 @@ -Installation Instructions -************************* - -Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free -Software Foundation, Inc. - -This file is free documentation; the Free Software Foundation gives -unlimited permission to copy, distribute and modify it. - -Basic Installation -================== - -These are generic installation instructions. - - The `configure' shell script attempts to guess correct values for -various system-dependent variables used during compilation. It uses -those values to create a `Makefile' in each directory of the package. -It may also create one or more `.h' files containing system-dependent -definitions. Finally, it creates a shell script `config.status' that -you can run in the future to recreate the current configuration, and a -file `config.log' containing compiler output (useful mainly for -debugging `configure'). - - It can also use an optional file (typically called `config.cache' -and enabled with `--cache-file=config.cache' or simply `-C') that saves -the results of its tests to speed up reconfiguring. (Caching is -disabled by default to prevent problems with accidental use of stale -cache files.) - - If you need to do unusual things to compile the package, please try -to figure out how `configure' could check whether to do them, and mail -diffs or instructions to the address given in the `README' so they can -be considered for the next release. If you are using the cache, and at -some point `config.cache' contains results you don't want to keep, you -may remove or edit it. - - The file `configure.ac' (or `configure.in') is used to create -`configure' by a program called `autoconf'. You only need -`configure.ac' if you want to change it or regenerate `configure' using -a newer version of `autoconf'. - -The simplest way to compile this package is: - - 1. `cd' to the directory containing the package's source code and type - `./configure' to configure the package for your system. If you're - using `csh' on an old version of System V, you might need to type - `sh ./configure' instead to prevent `csh' from trying to execute - `configure' itself. - - Running `configure' takes awhile. While running, it prints some - messages telling which features it is checking for. - - 2. Type `make' to compile the package. - - 3. Optionally, type `make check' to run any self-tests that come with - the package. - - 4. Type `make install' to install the programs and any data files and - documentation. - - 5. You can remove the program binaries and object files from the - source code directory by typing `make clean'. To also remove the - files that `configure' created (so you can compile the package for - a different kind of computer), type `make distclean'. There is - also a `make maintainer-clean' target, but that is intended mainly - for the package's developers. If you use it, you may have to get - all sorts of other programs in order to regenerate files that came - with the distribution. - -Compilers and Options -===================== - -Some systems require unusual options for compilation or linking that the -`configure' script does not know about. Run `./configure --help' for -details on some of the pertinent environment variables. - - You can give `configure' initial values for configuration parameters -by setting variables in the command line or in the environment. Here -is an example: - - ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix - - *Note Defining Variables::, for more details. - -Compiling For Multiple Architectures -==================================== - -You can compile the package for more than one kind of computer at the -same time, by placing the object files for each architecture in their -own directory. To do this, you must use a version of `make' that -supports the `VPATH' variable, such as GNU `make'. `cd' to the -directory where you want the object files and executables to go and run -the `configure' script. `configure' automatically checks for the -source code in the directory that `configure' is in and in `..'. - - If you have to use a `make' that does not support the `VPATH' -variable, you have to compile the package for one architecture at a -time in the source code directory. After you have installed the -package for one architecture, use `make distclean' before reconfiguring -for another architecture. - -Installation Names -================== - -By default, `make install' installs the package's commands under -`/usr/local/bin', include files under `/usr/local/include', etc. You -can specify an installation prefix other than `/usr/local' by giving -`configure' the option `--prefix=PREFIX'. - - You can specify separate installation prefixes for -architecture-specific files and architecture-independent files. If you -pass the option `--exec-prefix=PREFIX' to `configure', the package uses -PREFIX as the prefix for installing programs and libraries. -Documentation and other data files still use the regular prefix. - - In addition, if you use an unusual directory layout you can give -options like `--bindir=DIR' to specify different values for particular -kinds of files. Run `configure --help' for a list of the directories -you can set and what kinds of files go in them. - - If the package supports it, you can cause programs to be installed -with an extra prefix or suffix on their names by giving `configure' the -option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. - -Optional Features -================= - -Some packages pay attention to `--enable-FEATURE' options to -`configure', where FEATURE indicates an optional part of the package. -They may also pay attention to `--with-PACKAGE' options, where PACKAGE -is something like `gnu-as' or `x' (for the X Window System). The -`README' should mention any `--enable-' and `--with-' options that the -package recognizes. - - For packages that use the X Window System, `configure' can usually -find the X include and library files automatically, but if it doesn't, -you can use the `configure' options `--x-includes=DIR' and -`--x-libraries=DIR' to specify their locations. - -Specifying the System Type -========================== - -There may be some features `configure' cannot figure out automatically, -but needs to determine by the type of machine the package will run on. -Usually, assuming the package is built to be run on the _same_ -architectures, `configure' can figure that out, but if it prints a -message saying it cannot guess the machine type, give it the -`--build=TYPE' option. TYPE can either be a short name for the system -type, such as `sun4', or a canonical name which has the form: - - CPU-COMPANY-SYSTEM - -where SYSTEM can have one of these forms: - - OS KERNEL-OS - - See the file `config.sub' for the possible values of each field. If -`config.sub' isn't included in this package, then this package doesn't -need to know the machine type. - - If you are _building_ compiler tools for cross-compiling, you should -use the option `--target=TYPE' to select the type of system they will -produce code for. - - If you want to _use_ a cross compiler, that generates code for a -platform different from the build platform, you should specify the -"host" platform (i.e., that on which the generated programs will -eventually be run) with `--host=TYPE'. - -Sharing Defaults -================ - -If you want to set default values for `configure' scripts to share, you -can create a site shell script called `config.site' that gives default -values for variables like `CC', `cache_file', and `prefix'. -`configure' looks for `PREFIX/share/config.site' if it exists, then -`PREFIX/etc/config.site' if it exists. Or, you can set the -`CONFIG_SITE' environment variable to the location of the site script. -A warning: not all `configure' scripts look for a site script. - -Defining Variables -================== - -Variables not defined in a site shell script can be set in the -environment passed to `configure'. However, some packages may run -configure again during the build, and the customized values of these -variables may be lost. In order to avoid this problem, you should set -them in the `configure' command line, using `VAR=value'. For example: - - ./configure CC=/usr/local2/bin/gcc - -causes the specified `gcc' to be used as the C compiler (unless it is -overridden in the site shell script). Here is a another example: - - /bin/bash ./configure CONFIG_SHELL=/bin/bash - -Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent -configuration-related scripts to be executed by `/bin/bash'. - -`configure' Invocation -====================== - -`configure' recognizes the following options to control how it operates. - -`--help' -`-h' - Print a summary of the options to `configure', and exit. - -`--version' -`-V' - Print the version of Autoconf used to generate the `configure' - script, and exit. - -`--cache-file=FILE' - Enable the cache: use and save the results of the tests in FILE, - traditionally `config.cache'. FILE defaults to `/dev/null' to - disable caching. - -`--config-cache' -`-C' - Alias for `--cache-file=config.cache'. - -`--quiet' -`--silent' -`-q' - Do not print messages saying which checks are being made. To - suppress all normal output, redirect it to `/dev/null' (any error - messages will still be shown). - -`--srcdir=DIR' - Look for the package's source code in directory DIR. Usually - `configure' can determine that directory automatically. - -`configure' also accepts some other, not widely useful, options. Run -`configure --help' for more details. - Copied: trunk/gmyth-stream/gmencoder/INSTALL (from rev 851, trunk/gmyth-stream/gmemcoder/INSTALL) =================================================================== --- trunk/gmyth-stream/gmencoder/INSTALL (rev 0) +++ trunk/gmyth-stream/gmencoder/INSTALL 2007-09-18 12:45:36 UTC (rev 853) @@ -0,0 +1,236 @@ +Installation Instructions +************************* + +Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free +Software Foundation, Inc. + +This file is free documentation; the Free Software Foundation gives +unlimited permission to copy, distribute and modify it. + +Basic Installation +================== + +These are generic installation instructions. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. (Caching is +disabled by default to prevent problems with accidental use of stale +cache files.) + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You only need +`configure.ac' if you want to change it or regenerate `configure' using +a newer version of `autoconf'. + +The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. If you're + using `csh' on an old version of System V, you might need to type + `sh ./configure' instead to prevent `csh' from trying to execute + `configure' itself. + + Running `configure' takes awhile. While running, it prints some + messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package. + + 4. Type `make install' to install the programs and any data files and + documentation. + + 5. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + +Compilers and Options +===================== + +Some systems require unusual options for compilation or linking that the +`configure' script does not know about. Run `./configure --help' for +details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + +You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you must use a version of `make' that +supports the `VPATH' variable, such as GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. + + If you have to use a `make' that does not support the `VPATH' +variable, you have to compile the package for one architecture at a +time in the source code directory. After you have installed the +package for one architecture, use `make distclean' before reconfiguring +for another architecture. + +Installation Names +================== + +By default, `make install' installs the package's commands under +`/usr/local/bin', include files under `/usr/local/include', etc. You +can specify an installation prefix other than `/usr/local' by giving +`configure' the option `--prefix=PREFIX'. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +pass the option `--exec-prefix=PREFIX' to `configure', the package uses +PREFIX as the prefix for installing programs and libraries. +Documentation and other data files still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + +Optional Features +================= + +Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + +Specifying the System Type +========================== + +There may be some features `configure' cannot figure out automatically, +but needs to determine by the type of machine the package will run on. +Usually, assuming the package is built to be run on the _same_ +architectures, `configure' can figure that out, but if it prints a +message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the option `--target=TYPE' to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + +If you want to set default values for `configure' scripts to share, you +can create a site shell script called `config.site' that gives default +values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + +Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). Here is a another example: + + /bin/bash ./configure CONFIG_SHELL=/bin/bash + +Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent +configuration-related scripts to be executed by `/bin/bash'. + +`configure' Invocation +====================== + +`configure' recognizes the following options to control how it operates. + +`--help' +`-h' + Print a summary of the options to `configure', and exit. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. + Deleted: trunk/gmyth-stream/gmencoder/Makefile.am =================================================================== --- trunk/gmyth-stream/gmemcoder/Makefile.am 2007-09-14 20:35:12 UTC (rev 850) +++ trunk/gmyth-stream/gmencoder/Makefile.am 2007-09-18 12:45:36 UTC (rev 853) @@ -1,7 +0,0 @@ -SUBDIRS = src - -EXTRA_DIST = \ - ChangeLog - -DIST_SUBDIRS = \ - src Copied: trunk/gmyth-stream/gmencoder/Makefile.am (from rev 851, trunk/gmyth-stream/gmemcoder/Makefile.am) =================================================================== --- trunk/gmyth-stream/gmencoder/Makefile.am (rev 0) +++ trunk/gmyth-stream/gmencoder/Makefile.am 2007-09-18 12:45:36 UTC (rev 853) @@ -0,0 +1,7 @@ +SUBDIRS = src + +EXTRA_DIST = \ + ChangeLog + +DIST_SUBDIRS = \ + src Deleted: trunk/gmyth-stream/gmencoder/NEWS =================================================================== Copied: trunk/gmyth-stream/gmencoder/NEWS (from rev 851, trunk/gmyth-stream/gmemcoder/NEWS) =================================================================== Deleted: trunk/gmyth-stream/gmencoder/README =================================================================== Copied: trunk/gmyth-stream/gmencoder/README (from rev 851, trunk/gmyth-stream/gmemcoder/README) =================================================================== Deleted: trunk/gmyth-stream/gmencoder/autogen.sh =================================================================== --- trunk/gmyth-stream/gmemcoder/autogen.sh 2007-09-14 20:35:12 UTC (rev 850) +++ trunk/gmyth-stream/gmencoder/autogen.sh 2007-09-18 12:45:36 UTC (rev 853) @@ -1,19 +0,0 @@ -#!/bin/sh -# Run this to generate all the initial makefiles, etc. - -srcdir=`dirname $0` -test -z "$srcdir" && srcdir=. - -PKG_NAME="gmemcoder" - -(test -f $srcdir/configure.ac) || { - echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" - echo " top-level $PKG_NAME directory" - exit 1 -} - -which gnome-autogen.sh || { - echo "You need to install gnome-common from the GNOME CVS" - exit 1 -} -REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh Copied: trunk/gmyth-stream/gmencoder/autogen.sh (from rev 851, trunk/gmyth-stream/gmemcoder/autogen.sh) =================================================================== --- trunk/gmyth-stream/gmencoder/autogen.sh (rev 0) +++ trunk/gmyth-stream/gmencoder/autogen.sh 2007-09-18 12:45:36 UTC (rev 853) @@ -0,0 +1,19 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +PKG_NAME="gmemcoder" + +(test -f $srcdir/configure.ac) || { + echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" + echo " top-level $PKG_NAME directory" + exit 1 +} + +which gnome-autogen.sh || { + echo "You need to install gnome-common from the GNOME CVS" + exit 1 +} +REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh Deleted: trunk/gmyth-stream/gmencoder/configure.ac =================================================================== --- trunk/gmyth-stream/gmemcoder/configure.ac 2007-09-14 20:35:12 UTC (rev 850) +++ trunk/gmyth-stream/gmencoder/configure.ac 2007-09-18 12:45:36 UTC (rev 853) @@ -1,93 +0,0 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. - -AC_PREREQ(2.50) - -AC_INIT([gmemcoder],[0.1]) - -AC_CONFIG_MACRO_DIR([m4]) -AC_CONFIG_HEADER(config.h) - -AS_VERSION(gmemcoder, GMEMCODER, 0, 1, 0, 0, GMEMCODER_SVN="no", GMEMCODER_SVN="yes") -GMEMCODER_MAJORMINOR=$GMEMCODER_VERSION.$GMEMCODER_MINOR_VERSION -AC_SUBST(GMEMCODER_MAJORMINOR) - -dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode -AM_MAINTAINER_MODE -dnl make aclocal work in maintainer mode -AC_SUBST(ACLOCAL_AMFLAGS, "-I m4") - -AM_INIT_AUTOMAKE($PACKAGE, $VERSION) - -# Checks for programs. -# check for tools -# Make sure CFLAGS is defined to stop AC_PROC_CC adding -g -CFLAGS="$CFLAGS -Wall" -AC_PROG_CC -AC_PROG_LIBTOOL - -# Checks for libraries. - -# Checks for header files. -AC_HEADER_STDC - -#Test if --disable-debug given -AC_ARG_ENABLE(debug, - AC_HELP_STRING([--disable-debug], [enable debugging mode])) -if test x"$enable_debug" != xno; then - CFLAGS="$CFLAGS -g -DMYTH_STREAM_USE_DEBUG" -else - CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS" -fi - - -# Checks required packages #################################################### -############################################################################### - -## Check for pkgconfig ######################################################## -############################################################################### -AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no) -if test "x$HAVE_PKGCONFIG" = "xno"; then - AC_MSG_ERROR(you need to have pkgconfig installed !) -fi - -## Check for Glib2.0 ########################################################## -############################################################################### -PKG_CHECK_MODULES(GLIB, glib-2.0, HAVE_GLIB=yes,HAVE_GLIB=no) -if test "x$HAVE_GLIB" = "xno"; then - AC_MSG_ERROR(you need glib-2.0 installed) -fi -AC_SUBST(GLIB_CFLAGS) -AC_SUBST(GLIB_LIBS) - -## Check for GnomeVFS ########################################################## -############################################################################### -PKG_CHECK_MODULES(GVFS, gnome-vfs-2.0, HAVE_GVFS=yes,HAVE_GVFS=no) -if test "x$HAVE_GVFS" = "xno"; then - AC_MSG_ERROR(you need gnome-vfs-2.0 installed) -fi -AC_SUBST(GVFS_CFLAGS) -AC_SUBST(GVFS_LIBS) - - -## Check for gst-base ######################################################### -############################################################################### -PKG_CHECK_MODULES(GST, [gstreamer-base-0.10]) -AC_SUBST(GST_CFLAGS) -AC_SUBST(GST_LIBS) - -AC_SUBST(CFLAGS) -AC_SUBST(LDFLAGS) -AC_SUBST(LIBS) - -AC_OUTPUT([ -Makefile -src/Makefile -]) - -if test "x$enable_debug" != "xno"; then - AC_MSG_NOTICE([Debug: Enabled]) -else - AC_MSG_NOTICE([Debug: Disabled]) -fi - Copied: trunk/gmyth-stream/gmencoder/configure.ac (from rev 851, trunk/gmyth-stream/gmemcoder/configure.ac) =================================================================== --- trunk/gmyth-stream/gmencoder/configure.ac (rev 0) +++ trunk/gmyth-stream/gmencoder/configure.ac 2007-09-18 12:45:36 UTC (rev 853) @@ -0,0 +1,93 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.50) + +AC_INIT([gmemcoder],[0.1]) + +AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_HEADER(config.h) + +AS_VERSION(gmemcoder, GMEMCODER, 0, 1, 0, 0, GMEMCODER_SVN="no", GMEMCODER_SVN="yes") +GMEMCODER_MAJORMINOR=$GMEMCODER_VERSION.$GMEMCODER_MINOR_VERSION +AC_SUBST(GMEMCODER_MAJORMINOR) + +dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode +AM_MAINTAINER_MODE +dnl make aclocal work in maintainer mode +AC_SUBST(ACLOCAL_AMFLAGS, "-I m4") + +AM_INIT_AUTOMAKE($PACKAGE, $VERSION) + +# Checks for programs. +# check for tools +# Make sure CFLAGS is defined to stop AC_PROC_CC adding -g +CFLAGS="$CFLAGS -Wall" +AC_PROG_CC +AC_PROG_LIBTOOL + +# Checks for libraries. + +# Checks for header files. +AC_HEADER_STDC + +#Test if --disable-debug given +AC_ARG_ENABLE(debug, + AC_HELP_STRING([--disable-debug], [enable debugging mode])) +if test x"$enable_debug" != xno; then + CFLAGS="$CFLAGS -g -DMYTH_STREAM_USE_DEBUG" +else + CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS" +fi + + +# Checks required packages #################################################### +############################################################################### + +## Check for pkgconfig ######################################################## +############################################################################### +AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no) +if test "x$HAVE_PKGCONFIG" = "xno"; then + AC_MSG_ERROR(you need to have pkgconfig installed !) +fi + +## Check for Glib2.0 ########################################################## +############################################################################### +PKG_CHECK_MODULES(GLIB, glib-2.0, HAVE_GLIB=yes,HAVE_GLIB=no) +if test "x$HAVE_GLIB" = "xno"; then + AC_MSG_ERROR(you need glib-2.0 installed) +fi +AC_SUBST(GLIB_CFLAGS) +AC_SUBST(GLIB_LIBS) + +## Check for GnomeVFS ########################################################## +############################################################################### +PKG_CHECK_MODULES(GVFS, gnome-vfs-2.0, HAVE_GVFS=yes,HAVE_GVFS=no) +if test "x$HAVE_GVFS" = "xno"; then + AC_MSG_ERROR(you need gnome-vfs-2.0 installed) +fi +AC_SUBST(GVFS_CFLAGS) +AC_SUBST(GVFS_LIBS) + + +## Check for gst-base ######################################################### +############################################################################### +PKG_CHECK_MODULES(GST, [gstreamer-base-0.10]) +AC_SUBST(GST_CFLAGS) +AC_SUBST(GST_LIBS) + +AC_SUBST(CFLAGS) +AC_SUBST(LDFLAGS) +AC_SUBST(LIBS) + +AC_OUTPUT([ +Makefile +src/Makefile +]) + +if test "x$enable_debug" != "xno"; then + AC_MSG_NOTICE([Debug: Enabled]) +else + AC_MSG_NOTICE([Debug: Disabled]) +fi + Copied: trunk/gmyth-stream/gmencoder/m4 (from rev 851, trunk/gmyth-stream/gmemcoder/m4) Copied: trunk/gmyth-stream/gmencoder/src (from rev 851, trunk/gmyth-stream/gmemcoder/src) Copied: trunk/gmyth-stream/gmencoder/tests (from rev 851, trunk/gmyth-stream/gmemcoder/tests) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-09-18 12:45:01
|
Revision: 852 http://gmyth.svn.sourceforge.net/gmyth/?rev=852&view=rev Author: melunko Date: 2007-09-18 05:45:04 -0700 (Tue, 18 Sep 2007) Log Message: ----------- server/data/gmsd script fixed Modified Paths: -------------- trunk/gmyth-stream/server/data/gmsd Modified: trunk/gmyth-stream/server/data/gmsd =================================================================== --- trunk/gmyth-stream/server/data/gmsd 2007-09-17 17:50:42 UTC (rev 851) +++ trunk/gmyth-stream/server/data/gmsd 2007-09-18 12:45:04 UTC (rev 852) @@ -24,11 +24,11 @@ echo "$PROGRAM_NAME already running." else rm -f $PIDFILE - $PROGRAM_BIN -d > $LOGFILE + $PROGRAM_BIN -d > $LOGFILE 2> $LOGFILE echo "OK" fi else - $PROGRAM_BIN -d > $LOGFILE + $PROGRAM_BIN -d > $LOGFILE 2> $LOGFILE echo "OK" fi ;; @@ -38,11 +38,12 @@ if [ -f $PIDFILE ] then PID=`cat $PIDFILE` - if ps ax | grep -q "^$PID" + if ps -p "$PID" > /dev/null then - kill -10 $PID + kill -9 $PID fi rm $PIDFILE + echo "OK" else echo "No $PROGRAM_NAME found running; no killed." fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-09-17 17:50:42
|
Revision: 851 http://gmyth.svn.sourceforge.net/gmyth/?rev=851&view=rev Author: melunko Date: 2007-09-17 10:50:42 -0700 (Mon, 17 Sep 2007) Log Message: ----------- Bug #1790620 fixed. COPYING file updated to the correct license (LGPL) Modified Paths: -------------- trunk/gmyth/COPYING Modified: trunk/gmyth/COPYING =================================================================== --- trunk/gmyth/COPYING 2007-09-14 20:35:12 UTC (rev 850) +++ trunk/gmyth/COPYING 2007-09-17 17:50:42 UTC (rev 851) @@ -1,23 +1,26 @@ - GNU GENERAL PUBLIC LICENSE + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Copyright (C) 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. +[This is the first released version of the library GPL. It is + numbered 2 because it goes with version 2 of the ordinary GPL.] + Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + This license, the Library General Public License, applies to some +specially designated Free Software Foundation software, and to any +other libraries whose authors decide to use it. You can use it for +your libraries, too. + When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for @@ -27,195 +30,347 @@ To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. +These restrictions translate to certain responsibilities for you if +you distribute copies of the library, or if you modify it. - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link a program with the library, you must provide +complete object files to the recipients so that they can relink them +with the library, after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. + Our method of protecting your rights has two steps: (1) copyright +the library, and (2) offer you this license which gives you legal +permission to copy, distribute and/or modify the library. - Also, for each author's protection and ours, we want to make certain + Also, for each distributor's protection, we want to make certain that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - +library. If the library is modified by someone else and passed on, we +want its recipients to know that what they have is not the original +version, so that any problems introduced by others will not reflect on +the original authors' reputations. + Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. +patents. We wish to avoid the danger that companies distributing free +software will individually obtain patent licenses, thus in effect +transforming the program into proprietary software. To prevent this, +we have made it clear that any patent must be licensed for everyone's +free use or not licensed at all. + Most GNU software, including some libraries, is covered by the ordinary +GNU General Public License, which was designed for utility programs. This +license, the GNU Library General Public License, applies to certain +designated libraries. This license is quite different from the ordinary +one; be sure to read it in full, and don't assume that anything in it is +the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that +they blur the distinction we usually make between modifying or adding to a +program and simply using it. Linking a program with a library, without +changing the library, is in some sense simply using the library, and is +analogous to running a utility program or application program. However, in +a textual and legal sense, the linked executable is a combined work, a +derivative of the original library, and the ordinary General Public License +treats it as such. + + Because of this blurred distinction, using the ordinary General +Public License for libraries did not effectively promote software +sharing, because most developers did not use the libraries. We +concluded that weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the +users of those programs of all benefit from the free status of the +libraries themselves. This Library General Public License is intended to +permit developers of non-free programs to use free libraries, while +preserving your freedom as a user of such programs to change the free +libraries that are incorporated in them. (We have not seen how to achieve +this as regards changes in header files, but we have achieved it as regards +changes in the actual functions of the Library.) The hope is that this +will lead to faster development of free libraries. + The precise terms and conditions for copying, distribution and -modification follow. +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, while the latter only +works together with the library. + + Note that it is possible for a library to be covered by the ordinary +General Public License rather than by this special one. - GNU GENERAL PUBLIC LICENSE + GNU LIBRARY GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". + 0. This License Agreement applies to any software library which +contains a notice placed by the copyright holder or other authorized +party saying it may be distributed under the terms of this Library +General Public License (also called "this License"). Each licensee is +addressed as "you". -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - a) You must cause the modified files to carry prominent notices + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, +identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of +on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. +entire whole, and thus to each and every part regardless of who wrote +it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or -collective works based on the Program. +collective works based on the Library. -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. + 6. As an exception to the Sections above, you may also compile or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. - 5. You are not required to accept this License, since you have not + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the source code distributed need not include anything that is normally +distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are +distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying -the Program or works based on it. +the Library or works based on it. - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - - 7. If, as a consequence of a court judgment or allegation of patent + + 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. +refrain entirely from distribution of the Library. -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is +integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that @@ -225,116 +380,103 @@ This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in + + 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. + 13. The Free Software Foundation may publish revised and/or new +versions of the Library General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - NO WARRANTY - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. END OF TERMS AND CONDITIONS - How to Apply These Terms to Your New Programs + How to Apply These Terms to Your New Libraries - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. - <one line to give the program's name and a brief idea of what it does.> + <one line to give the library's name and a brief idea of what it does.> Copyright (C) <year> <name of author> - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + This library 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 General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307 USA. - Also add information on how to contact you by electronic and paper mail. -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if +school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. - <signature of Ty Coon>, 1 April 1989 + <signature of Ty Coon>, 1 April 1990 Ty Coon, President of Vice -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. +That's all there is to it! This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <me...@us...> - 2007-09-14 20:35:11
|
Revision: 850 http://gmyth.svn.sourceforge.net/gmyth/?rev=850&view=rev Author: melunko Date: 2007-09-14 13:35:12 -0700 (Fri, 14 Sep 2007) Log Message: ----------- nuvdemux package changelog updated Modified Paths: -------------- trunk/gst-gmyth/debian/changelog Modified: trunk/gst-gmyth/debian/changelog =================================================================== --- trunk/gst-gmyth/debian/changelog 2007-09-14 20:18:38 UTC (rev 849) +++ trunk/gst-gmyth/debian/changelog 2007-09-14 20:35:12 UTC (rev 850) @@ -1,4 +1,4 @@ -gst-indt-plugins (0.10.2.debian-1) unstable; urgency=low +gst-indt-plugins (0.10.2-svn20070914) unstable; urgency=low * Initial packaged; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |