diff options
author | Joseph Koshy <jkoshy@FreeBSD.org> | 1998-10-31 09:54:36 +0000 |
---|---|---|
committer | Joseph Koshy <jkoshy@FreeBSD.org> | 1998-10-31 09:54:36 +0000 |
commit | a357a53c5ea494c4c1fc7fecf7dd98712ae77e37 (patch) | |
tree | e84298214773f06931770dbd46c217a6a4d6e43b /www/ruboard | |
parent | 9843b67d53d634d952d9e17e9908ab50ab2a3bf3 (diff) | |
download | ports-a357a53c5ea494c4c1fc7fecf7dd98712ae77e37.tar.gz ports-a357a53c5ea494c4c1fc7fecf7dd98712ae77e37.zip |
Upgrade to v1.2.1.
Submitted by: Andrew Maltsev <am@amsoft.ru> (maintainer)
Notes
Notes:
svn path=/head/; revision=14274
Diffstat (limited to 'www/ruboard')
-rw-r--r-- | www/ruboard/Makefile | 4 | ||||
-rw-r--r-- | www/ruboard/distinfo | 2 | ||||
-rw-r--r-- | www/ruboard/files/patch-aa | 59 |
3 files changed, 55 insertions, 10 deletions
diff --git a/www/ruboard/Makefile b/www/ruboard/Makefile index 65bf5ad7a5cd..643118c0d576 100644 --- a/www/ruboard/Makefile +++ b/www/ruboard/Makefile @@ -3,10 +3,10 @@ # Date created: 5 October 1998 # Whom: Andrew Maltsev <am@amsoft.ru> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/10/30 03:17:43 jkoshy Exp $ # -DISTNAME= ruboard-1.2 +DISTNAME= ruboard-1.2.1 CATEGORIES= www russian MASTER_SITES= ftp://ftp.amsoft.ru/software/ruboard/ diff --git a/www/ruboard/distinfo b/www/ruboard/distinfo index 05d3622fb7cb..1e2d227c3a7a 100644 --- a/www/ruboard/distinfo +++ b/www/ruboard/distinfo @@ -1 +1 @@ -MD5 (ruboard-1.2.tar.gz) = 1a98052b83a1e341729b74ad2745a6ff +MD5 (ruboard-1.2.1.tar.gz) = 49d5d68f85421b2cbf16b685ab2bd7dd diff --git a/www/ruboard/files/patch-aa b/www/ruboard/files/patch-aa index 4f937c0a8cef..959eee478211 100644 --- a/www/ruboard/files/patch-aa +++ b/www/ruboard/files/patch-aa @@ -1,23 +1,68 @@ -*** Config.orig Thu Oct 29 03:29:02 1998 ---- Config Fri Oct 30 08:32:22 1998 +*** Config 1998/10/30 18:49:06 1.4 +--- Config 1998/10/30 19:18:38 1.4.2.1 *************** -*** 3,9 **** +*** 3,14 **** # # Where ruboard shold be installed (home dir) # ! HOMEDIR = /usr/local/lib/ruboard # + # Where binaries are instaled. The default is $(HOMEDIR), but feel free + # to set it to your prefered path. + # +! BINDIR = $(HOMEDIR) + # # Owner and group of boards. Defaults to your user id. Do not delete # `-o' and `-g'! ---- 3,13 ---- +--- 3,14 ---- # # Where ruboard shold be installed (home dir) # ! HOMEDIR = $(PREFIX)/etc/ruboard -! # -! # Where binaries are instaled -! # + # + # Where binaries are instaled. The default is $(HOMEDIR), but feel free + # to set it to your prefered path. + # ! BINDIR = $(PREFIX)/libexec/ruboard # # Owner and group of boards. Defaults to your user id. Do not delete # `-o' and `-g'! +*************** +*** 23,29 **** + # What is your make command name? Ruboard is only checked in BSD-make, + # so change to `pmake' in Linux. + # +! MAKE = make + # + # Where your pax is? Try `tar -cv -f -T -' if you have no pax (in + # Linux). If you do not know what it is - leave it as is, you will be +--- 23,29 ---- + # What is your make command name? Ruboard is only checked in BSD-make, + # so change to `pmake' in Linux. + # +! # MAKE = make + # + # Where your pax is? Try `tar -cv -f -T -' if you have no pax (in + # Linux). If you do not know what it is - leave it as is, you will be + +*** Makefile 1998/10/30 18:49:06 1.15 +--- Makefile 1998/10/30 19:18:38 1.15.2.1 +*************** +*** 16,23 **** + done + + install: all +! @[ -d $(HOMEDIR) ] || mkdir $(HOMEDIR) +! @[ -d $(BINDIR) ] || mkdir $(BINDIR) + @for i in $(SUBDIRS); do \ + echo "=="; echo "== Doing '$@' for '$$i'"; echo "=="; \ + cwd=`pwd`; cd $$i; $(MAKE) $(MAKEFLAGS) $@; cd $$cwd; \ +--- 16,23 ---- + done + + install: all +! @[ -d $(HOMEDIR) ] || mkdir -p -m 755 $(HOMEDIR) +! @[ -d $(BINDIR) ] || mkdir -p -m 755 $(BINDIR) + @for i in $(SUBDIRS); do \ + echo "=="; echo "== Doing '$@' for '$$i'"; echo "=="; \ + cwd=`pwd`; cd $$i; $(MAKE) $(MAKEFLAGS) $@; cd $$cwd; \ |