diff options
author | edwin <edwin@FreeBSD.org> | 2003-01-17 21:51:26 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-01-17 21:51:26 +0800 |
commit | 82b30e8e7a8661eeba165de0c665eb94f49c5fa6 (patch) | |
tree | 82533d5b6e0567eba813b1c903c17c07c29c8925 /french/gfaim/files | |
parent | df9f41cda0a940ec75a98dd938b7beaf40437e18 (diff) | |
download | freebsd-ports-gnome-82b30e8e7a8661eeba165de0c665eb94f49c5fa6.tar.gz freebsd-ports-gnome-82b30e8e7a8661eeba165de0c665eb94f49c5fa6.tar.zst freebsd-ports-gnome-82b30e8e7a8661eeba165de0c665eb94f49c5fa6.zip |
New port misc/gfaim
Gfaim is a GTK front-end to a receipts database (in french only)
PR: ports/38638
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org>
Diffstat (limited to 'french/gfaim/files')
-rw-r--r-- | french/gfaim/files/patch-Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/french/gfaim/files/patch-Makefile b/french/gfaim/files/patch-Makefile new file mode 100644 index 000000000000..20d22cb4cfef --- /dev/null +++ b/french/gfaim/files/patch-Makefile @@ -0,0 +1,29 @@ +--- Makefile.orig Tue Nov 21 03:35:22 2000 ++++ Makefile Fri Jan 17 03:26:00 2003 +@@ -1,18 +1,15 @@ +-CC=gcc +-DATADIR=/usr/lib/gfaim + +-gfaim: gfaim.c +- $(CC) -DDATADIR="\"$(DATADIR)\"" `gtk-config --cflags` gfaim.c -o gfaim `gtk-config --libs` ++all: gfaim.c ++ $(CC) -DDATADIR="\"$(DATADIR)\"" `gtk12-config --cflags` gfaim.c -o gfaim `gtk12-config --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 +- +- ++ install -g bin -m 755 gfaim $(PREFIX)/bin ++ install -g bin -m 755 imprec $(PREFIX)/bin ++ install -d $(PREFIX)/lib/gfaim ++ install -m 644 *.dat *.idx $(PREFIX)/lib/gfaim ++ install -d $(PREFIX)/share/doc/gfaim ++ install *.txt $(PREFIX)/share/doc/gfaim + |