diff options
author | will <will@FreeBSD.org> | 2001-12-19 09:10:49 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-12-19 09:10:49 +0800 |
commit | d8658e620dfcffd801c2db38536d5fb56a1898fb (patch) | |
tree | 655874b0b1d2eb4afb4a9fcad5ba5a7ebaa6d18d /irc/blackened/Makefile | |
parent | 111bbf3aa30fb8e1caa138ccfc875c7ea54c91e9 (diff) | |
download | freebsd-ports-gnome-d8658e620dfcffd801c2db38536d5fb56a1898fb.tar.gz freebsd-ports-gnome-d8658e620dfcffd801c2db38536d5fb56a1898fb.tar.zst freebsd-ports-gnome-d8658e620dfcffd801c2db38536d5fb56a1898fb.zip |
Upgrade to 1.8.0. Resolve conflict on -CURRENT by changing one of toast.c's
function names, long_to_time, to ch_to_time(). Tim will take care of it
later.
PR: 32992
Submitted by: Timothy Jensen <toast@blackened.com>
Diffstat (limited to 'irc/blackened/Makefile')
-rw-r--r-- | irc/blackened/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/irc/blackened/Makefile b/irc/blackened/Makefile index b67c3e223f99..450093f810de 100644 --- a/irc/blackened/Makefile +++ b/irc/blackened/Makefile @@ -6,7 +6,7 @@ # PORTNAME= blackened -PORTVERSION= 1.7.1 +PORTVERSION= 1.8.0 CATEGORIES= irc MASTER_SITES= ftp://ftp.blackened.com/pub/irc/blackened/ @@ -14,6 +14,10 @@ MAINTAINER= toast@blackened.com GNU_CONFIGURE= yes PLIST_SUB= VERSION=${PORTVERSION} -MAKE_ENV= prefix=${PREFIX} +CONFIGURE_ARGS= --prefix=${PREFIX} +INSTALL_TARGET= installeverything + +pre-configure: + ${PERL} -pi -e "s@long_to_time@ch_to_time@g" ${WRKSRC}/source/toast.c .include <bsd.port.mk> |