mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
- Kill french/gfaim -- abandonware
This commit is contained in:
parent
244263bff0
commit
546410486e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=342574
1
MOVED
1
MOVED
@ -5435,3 +5435,4 @@ deskutils/mcal||2014-02-03|Has expired: Depends on expired misc/libmcal
|
||||
sysutils/relpath||2014-02-03|Has expired: unfetchable distfiles
|
||||
sysutils/decomment||2014-02-03|Has expired: unfetchable distfiles
|
||||
multimedia/openmovieeditor||2014-02-03|Has expired: segfaults, upstread development ceased
|
||||
french/gfaim||2014-02-04|Abandonware
|
||||
|
@ -16,7 +16,6 @@
|
||||
SUBDIR += facturier
|
||||
SUBDIR += fortune-mod-zarathoustra
|
||||
SUBDIR += geonext
|
||||
SUBDIR += gfaim
|
||||
SUBDIR += gimp-help
|
||||
SUBDIR += homard
|
||||
SUBDIR += hunspell
|
||||
|
@ -1,29 +0,0 @@
|
||||
# Created by: Clement Laforet <sheepkiller@cultdeadsheep.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gfaim
|
||||
PORTVERSION= 0.30
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= french
|
||||
MASTER_SITES= http://freeperso.free.fr/ \
|
||||
http://sheepkiller.nerim.net/ports/${PORTNAME}/ \
|
||||
http://www.cultdeadsheep.org/FreeBSD/ports/download/distfiles/
|
||||
|
||||
MAINTAINER= gahr@FreeBSD.org
|
||||
COMMENT= Gfaim est un logiciel de recherche de recettes de cuisine
|
||||
|
||||
USE_GNOME= gtk12
|
||||
|
||||
DATADIR?= ${PREFIX}/lib/gfaim
|
||||
MAKE_ENV+= DATADIR=${DATADIR}
|
||||
|
||||
PLIST_FILES= bin/gfaim bin/imprec lib/gfaim/cuisine.dat \
|
||||
lib/gfaim/cuisine.idx
|
||||
PLIST_DIRS= lib/gfaim
|
||||
PORTDOCS= legal.txt lisezmoi.txt
|
||||
.if defined(NOPORTDOCS)
|
||||
MAKE_ENV+= NOPORTDOCS=yes
|
||||
.endif
|
||||
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (gfaim-0.30.tar.gz) = da8876a0c2e53fb729b0cc126463680686d4ae2fcf798015fc033120341f44a8
|
||||
SIZE (gfaim-0.30.tar.gz) = 2697841
|
@ -1,34 +0,0 @@
|
||||
--- Makefile.orig Tue Nov 21 11:35:22 2000
|
||||
+++ Makefile Tue Apr 6 08:48:34 2004
|
||||
@@ -1,18 +1,19 @@
|
||||
-CC=gcc
|
||||
-DATADIR=/usr/lib/gfaim
|
||||
|
||||
-gfaim: gfaim.c
|
||||
- $(CC) -DDATADIR="\"$(DATADIR)\"" `gtk-config --cflags` gfaim.c -o gfaim `gtk-config --libs`
|
||||
+CFLGS= ${CFLAGS} `${GTK_CONFIG} --cflags`
|
||||
+LIBS= `${GTK_CONFIG} --libs` ${LDFLAGS}
|
||||
+
|
||||
+all: gfaim.c
|
||||
+ $(CC) -DDATADIR="\"$(DATADIR)\"" ${CFLGS} gfaim.c -o gfaim ${LIBS}
|
||||
|
||||
clean:
|
||||
rm -f *.o gfaim
|
||||
|
||||
install:
|
||||
- install -g bin -m 755 gfaim /usr/bin
|
||||
- install -g bin -m 755 imprec /usr/bin
|
||||
- install -d $(DATADIR)
|
||||
- install *.dat *.idx -m 644 $(DATADIR)
|
||||
- install *.txt /usr/doc/gfaim
|
||||
-
|
||||
-
|
||||
-
|
||||
+ ${BSD_INSTALL_PROGRAM} gfaim $(PREFIX)/bin
|
||||
+ ${BSD_INSTALL_SCRIPT} imprec $(PREFIX)/bin
|
||||
+ install -d $(PREFIX)/lib/gfaim
|
||||
+ ${BSD_INSTALL_DATA} *.dat *.idx $(PREFIX)/lib/gfaim
|
||||
+.if !defined(NOPORTDOCS)
|
||||
+ install -d $(PREFIX)/share/doc/gfaim
|
||||
+ ${BSD_INSTALL_DATA} *.txt $(PREFIX)/share/doc/gfaim
|
||||
+.endif
|
@ -1,46 +0,0 @@
|
||||
--- gfaim.c.orig 2000-11-21 20:58:42.000000000 +0100
|
||||
+++ gfaim.c 2007-12-17 22:37:41.000000000 +0100
|
||||
@@ -1142,7 +1142,7 @@
|
||||
champs=g_strsplit(buf,":",0);
|
||||
|
||||
/*le numero de la recette*/
|
||||
- plist[i].numero=atoi(champs[0]);
|
||||
+ plist[i].numero= atoi(champs[0]);
|
||||
|
||||
/*le nom de la recette*/
|
||||
strcpy(buffer,champs[1]);
|
||||
@@ -1188,7 +1188,7 @@
|
||||
|
||||
/*recherche de rlibelle dans buf*/
|
||||
|
||||
- (int *) loc = strcasestr(buf,rlibelle);
|
||||
+ loc = strcasestr(buf,rlibelle);
|
||||
|
||||
/* si c'est zero je passe*/
|
||||
if (loc != NULL)
|
||||
@@ -1203,7 +1203,7 @@
|
||||
|
||||
gtk_clist_append( (GtkCList *) data,texte[0]);
|
||||
/*accroche numero au titre de la recette comme index*/
|
||||
- gtk_clist_set_row_data(GTK_CLIST(liste),ligne,(int *) plist[k].numero);
|
||||
+ gtk_clist_set_row_data(GTK_CLIST(liste),ligne, &plist[k].numero);
|
||||
ligne++;
|
||||
g_free(label);
|
||||
|
||||
@@ -1242,12 +1242,12 @@
|
||||
{
|
||||
gchar *text = NULL;
|
||||
|
||||
- int position;
|
||||
+ int *position;
|
||||
|
||||
/* renseigne les variables de la position de la recette */
|
||||
- (int *) position=gtk_clist_get_row_data(GTK_CLIST(liste),row);
|
||||
- vdebut=plist[position].rdebut;
|
||||
- vfin=plist[position].rfin;
|
||||
+ position=gtk_clist_get_row_data(GTK_CLIST(liste),row);
|
||||
+ vdebut=plist[*position].rdebut;
|
||||
+ vfin=plist[*position].rfin;
|
||||
|
||||
/*affiche la recette*/
|
||||
charge_recette(vdebut,vfin);
|
@ -1,6 +0,0 @@
|
||||
Gfaim est un logiciel de recherche de recettes de cuisine.
|
||||
Un grand merci à Alexandre PUKALL pour son autorisation d'utiliser
|
||||
sa base de recettes, il faut préciser que si Gfaim est sous licence GPL,
|
||||
la base de recettes est en freeware (lire legal.txt pour plus de details).
|
||||
|
||||
WWW: http://freeperso.free.fr/gfaim.html
|
Loading…
Reference in New Issue
Block a user