diff options
author | nox <nox@FreeBSD.org> | 2013-07-05 06:04:48 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2013-07-05 06:04:48 +0800 |
commit | 88ab6133344292697a2e4b6ce1a4f0f4ac21df2e (patch) | |
tree | 8ff650c24642c723871ed56f8bde9ec9ea94361d /sysutils | |
parent | e99b4a30bcd0e462d05a620f2776150f4bf500a7 (diff) | |
download | freebsd-ports-gnome-88ab6133344292697a2e4b6ce1a4f0f4ac21df2e.tar.gz freebsd-ports-gnome-88ab6133344292697a2e4b6ce1a4f0f4ac21df2e.tar.zst freebsd-ports-gnome-88ab6133344292697a2e4b6ce1a4f0f4ac21df2e.zip |
- Fix compiling without gcc. (remove hardcoded 'gcc')
- Change to new-type headers.
- Replace all dead MASTER_SITES and WWW with working ones.
PR: ports/179823
Submitted by: r4721@tormail.org
Approved by: samm@os2.kiev.ua (maintainer)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/ssync/Makefile | 12 | ||||
-rw-r--r-- | sysutils/ssync/pkg-descr | 2 |
2 files changed, 5 insertions, 9 deletions
diff --git a/sysutils/ssync/Makefile b/sysutils/ssync/Makefile index a9bc98dcd923..06bf65da9c36 100644 --- a/sysutils/ssync/Makefile +++ b/sysutils/ssync/Makefile @@ -1,16 +1,11 @@ -# New ports collection makefile for: ssync -# Date created: 23 March 2002 -# Whom: Andrew Shevtsov <nyxo@dnuc.polyn.kiae.su> -# +# Created by: Andrew Shevtsov <nyxo@dnuc.polyn.kiae.su> # $FreeBSD$ -# PORTNAME= ssync PORTVERSION= 2.3 PORTREVISION= 2 CATEGORIES= sysutils -MASTER_SITES= http://mnmconsulting.org/ssync/ \ - ftp://ftp.netsw.org/system/tools/fileutils/install/ssync/ +MASTER_SITES= http://linuxfocus.org/~guido/ MAINTAINER= samm@os2.kiev.ua COMMENT= A minimalistic tool for keeping filesystems in synchronization @@ -26,7 +21,8 @@ post-patch: @${REINPLACE_CMD} -e "s@/etc@${PREFIX}/etc@g;s@/usr/sbin@${PREFIX}/sbin@g;" \ ${WRKSRC}/ssyncd.init ${WRKSRC}/ssyncd.conf ${WRKSRC}/daemon.c \ ${WRKSRC}/ssync.man - @${REINPLACE_CMD} -e "s@FLAGS=@FLAGS+=@g" ${WRKSRC}/makefile + @${REINPLACE_CMD} -e "s@FLAGS=@FLAGS+=@g" -e "/CC=gcc/d" -e "/LD=gcc/d" \ + -e 's@$$(LD)@$$(CC)@' ${WRKSRC}/makefile do-install: @${INSTALL_PROGRAM} ${WRKSRC}/ssync ${PREFIX}/bin/ssync diff --git a/sysutils/ssync/pkg-descr b/sysutils/ssync/pkg-descr index 639bec9dd7a1..89ebf113a7d0 100644 --- a/sysutils/ssync/pkg-descr +++ b/sysutils/ssync/pkg-descr @@ -4,4 +4,4 @@ low-resource comsumption and portability. It features a number of options to control how things are synchronized and under what conditions, as well as useful dry-run and verbose modes. -WWW: http://alcatraz.labs.agilent.com/shaffer/ssync/ +WWW: http://linuxfocus.org/~guido/endangered_software.html#ssync |