diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2014-02-22 01:40:02 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2014-02-22 01:40:02 +0800 |
commit | c139847191e936afbeaf062cc66b612f40891acb (patch) | |
tree | 606289989582a683150163f1d0dc7cf6cce5da00 /irc | |
parent | 9f1ed0c80dfa9f1c634b95e6698de25c4c58ee37 (diff) | |
download | freebsd-ports-gnome-c139847191e936afbeaf062cc66b612f40891acb.tar.gz freebsd-ports-gnome-c139847191e936afbeaf062cc66b612f40891acb.tar.zst freebsd-ports-gnome-c139847191e936afbeaf062cc66b612f40891acb.zip |
- Fix build with clang; this is not building a static library, it is building
a shared.
- Add a mirror as upstream is long dead
Diffstat (limited to 'irc')
-rw-r--r-- | irc/irssi-fish/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/irc/irssi-fish/Makefile b/irc/irssi-fish/Makefile index 5a866cddf483..e80194efe586 100644 --- a/irc/irssi-fish/Makefile +++ b/irc/irssi-fish/Makefile @@ -4,7 +4,8 @@ PORTNAME= irssi-fish DISTVERSION= 1.00-RC5 CATEGORIES= irc security -MASTER_SITES= http://fish.secure.la/irssi/ +MASTER_SITES= http://fish.secure.la/irssi/ \ + http://mirror.shatow.net/freebsd/${PORTNAME}/ DISTNAME= FiSH-irssi.v${DISTVERSION}-source MAINTAINER= ashish@FreeBSD.org @@ -34,6 +35,7 @@ post-patch: @${REINPLACE_CMD} -E \ -e 's|gcc|${CC}|' \ -e 's|-O2|${CFLAGS}|' \ + -e 's|-static||' \ -e 's|-shared|-shared -fPIC -DPIC|' \ -e 's|[$$][(]HOME[)]/glib-1.2.10|${LOCALBASE}/include/glib-2.0|' \ -e 's|[$$][(]HOME[)]/irssi-0.8.9|${LOCALBASE}/include/irssi|' \ |