1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

- Update to 0.13

This commit is contained in:
Pietro Cerutti 2010-05-31 11:27:32 +00:00
parent 6fab7cbdf3
commit ab5e1314b1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=255384
4 changed files with 4 additions and 41 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= epplets
PORTVERSION= 0.12
PORTREVISION= 4
PORTVERSION= 0.13
CATEGORIES= x11-wm
MASTER_SITES= SF/enlightenment/${PORTNAME}/${PORTVERSION}

View File

@ -1,3 +1,3 @@
MD5 (epplets-0.12.tar.gz) = 7f5119eeac9b938e6d64b972e4b9d984
SHA256 (epplets-0.12.tar.gz) = 676522217e91955cda67ba1f7dcd11f9242685af5652ea408cd6128a8b332ce2
SIZE (epplets-0.12.tar.gz) = 894232
MD5 (epplets-0.13.tar.gz) = 6304130e5741b626c27b6b0cf7ae58e0
SHA256 (epplets-0.13.tar.gz) = 605dfec7ce380eefa42dbd36bcec9b41e7754d4cc5d4f7365761743df5640021
SIZE (epplets-0.13.tar.gz) = 953034

View File

@ -31,30 +31,3 @@
static char **dirscan(char *dir, unsigned long *num);
static char **randomize_file_list(char **names, unsigned long num);
@@ -376,7 +376,7 @@
cfg_popup_cb(void *data)
{
- int n = (int)data;
+ size_t n = (size_t)data;
switch (n)
{
@@ -404,7 +404,7 @@
play_cb(void *data)
{
- int op = (int)data;
+ size_t op = (size_t)data;
switch (op)
{
@@ -588,7 +588,7 @@
static void
auto_popup_cb(void *data)
{
- cfg_auto_setbg = (int)data;
+ cfg_auto_setbg = (size_t)data;
}
static void

View File

@ -144,15 +144,6 @@
data = NULL;
}
@@ -234,7 +313,7 @@
{
char s[2] = { 0, 0 };
- color = (int)data;
+ color = (size_t)data;
s[0] = '0' + color;
Epplet_modify_config("color", s);
Epplet_save_config();
@@ -283,10 +362,10 @@
p = Epplet_create_popup();