Update to 0.3.12. Changes:
"Some of FISG's behavior has changed slightly after version 0.3.8. Few commandline options have been renamed and there is NO default input format anymore, you will always have to specify one."
This commit is contained in:
parent
3c49d74157
commit
a22c56ada1
4 changed files with 31 additions and 25 deletions
|
@ -1,7 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.9 2012/10/03 00:02:36 asau Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2013/07/21 11:34:51 shattered Exp $
|
||||
|
||||
DISTNAME= fisg-0.2.0
|
||||
PKGREVISION= 1
|
||||
DISTNAME= fisg-0.3.12
|
||||
CATEGORIES= chat textproc
|
||||
MASTER_SITES= http://www.tnsp.org/files/
|
||||
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2009/06/14 17:37:44 joerg Exp $
|
||||
@comment $NetBSD: PLIST,v 1.3 2013/07/21 11:34:51 shattered Exp $
|
||||
bin/fisg
|
||||
share/examples/fisg/example.cfg
|
||||
share/examples/fisg/users.cfg
|
||||
share/fisg/blue-h.png
|
||||
share/fisg/blue-v.png
|
||||
share/fisg/c64.css
|
||||
share/fisg/grayblue.css
|
||||
share/fisg/green-h.png
|
||||
share/fisg/green-v.png
|
||||
share/fisg/happy1.gif
|
||||
|
@ -12,9 +14,9 @@ share/fisg/happy3.gif
|
|||
share/fisg/happy4.gif
|
||||
share/fisg/happy5.gif
|
||||
share/fisg/happy6.gif
|
||||
share/fisg/pisg.css
|
||||
share/fisg/red-h.png
|
||||
share/fisg/red-v.png
|
||||
share/fisg/style-c64.css
|
||||
share/fisg/style-pisg.css
|
||||
share/fisg/simple.css
|
||||
share/fisg/yellow-h.png
|
||||
share/fisg/yellow-v.png
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.3 2009/02/16 22:14:43 snj Exp $
|
||||
$NetBSD: distinfo,v 1.4 2013/07/21 11:34:51 shattered Exp $
|
||||
|
||||
SHA1 (fisg-0.2.0.tar.gz) = e145f05a7d1485ef9ac2c3cf77d3ed8ec92aaf59
|
||||
RMD160 (fisg-0.2.0.tar.gz) = 75eba29d8bc87bd6c6b02ac9d8ad2b43db9c9908
|
||||
Size (fisg-0.2.0.tar.gz) = 76700 bytes
|
||||
SHA1 (patch-aa) = 0730fa6ee5256f8dcc234311fef9955c0442f05d
|
||||
SHA1 (fisg-0.3.12.tar.gz) = 7d70d4cad3103c8040e6703e452473584b3bb3a5
|
||||
RMD160 (fisg-0.3.12.tar.gz) = d79052ecfa184afb23ae26a28fed8cde0434a07d
|
||||
Size (fisg-0.3.12.tar.gz) = 157216 bytes
|
||||
SHA1 (patch-aa) = d3bd6f902c5d303e2f355e2ff0c8c148b3449e42
|
||||
|
|
|
@ -1,26 +1,31 @@
|
|||
$NetBSD: patch-aa,v 1.2 2009/02/16 22:14:43 snj Exp $
|
||||
--- Makefile.orig 2003-02-18 02:59:18.000000000 -0800
|
||||
+++ Makefile 2003-09-28 18:41:07.000000000 -0700
|
||||
@@ -1,11 +1,19 @@
|
||||
$NetBSD: patch-aa,v 1.3 2013/07/21 11:34:51 shattered Exp $
|
||||
|
||||
--- Makefile.orig 2004-09-28 04:51:55.000000000 +0000
|
||||
+++ Makefile
|
||||
@@ -1,18 +1,13 @@
|
||||
#
|
||||
# Makefile for UNIX
|
||||
#
|
||||
-RM=rm
|
||||
-# Installation prefix
|
||||
-PREFIX=/usr/local
|
||||
-
|
||||
-# C-compiler, flags and linker flags
|
||||
-CC=gcc
|
||||
-CFLAGS= -g -O2 -Wall
|
||||
+#RM=rm
|
||||
+#CC=gcc
|
||||
+#CFLAGS= -g -O2 -Wall
|
||||
|
||||
FISGEXE=fisg
|
||||
TARGETS=$(FISGEXE) strmatch
|
||||
-CFLAGS=-g -W -Wall
|
||||
-LDFLAGS=
|
||||
-
|
||||
-# Miscellaneous
|
||||
-RM=rm
|
||||
-INSTALL=install -c -m 755
|
||||
-BINPATH=
|
||||
-EXEEXT=
|
||||
|
||||
include Makefile.gen
|
||||
+
|
||||
+install: $(FISGEXE)
|
||||
+ $(BSD_INSTALL_PROGRAM) $(FISGEXE) $(DESTDIR)$(PREFIX)/bin
|
||||
+ $(BSD_INSTALL_PROGRAM) $(FISGBIN) $(DESTDIR)$(PREFIX)/bin
|
||||
+ $(BSD_INSTALL_DATA_DIR) $(DESTDIR)$(PREFIX)/share/examples/fisg
|
||||
+ $(BSD_INSTALL_DATA) ../example.cfg $(DESTDIR)$(PREFIX)/share/examples/fisg
|
||||
+ $(BSD_INSTALL_DATA) ../users.cfg $(DESTDIR)$(PREFIX)/share/examples/fisg
|
||||
+ $(BSD_INSTALL_DATA_DIR) $(DESTDIR)$(PREFIX)/share/fisg
|
||||
+ $(BSD_INSTALL_DATA) ../data/* $(DESTDIR)$(PREFIX)/share/fisg
|
||||
+ $(BSD_INSTALL_DATA) ../data/*.* $(DESTDIR)$(PREFIX)/share/fisg
|
||||
|
|
Loading…
Reference in a new issue