diff options
author | marino <marino@FreeBSD.org> | 2016-08-28 15:32:40 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-08-28 15:32:40 +0800 |
commit | ca8e245aac50f681998a2ba32559a6ea09b655b2 (patch) | |
tree | 3df75f45f3e4ff3199ccfac4848645feb1115cca | |
parent | 4257465a9f888ef8c0f13e0dc9295fb973ac775a (diff) | |
download | freebsd-ports-gnome-ca8e245aac50f681998a2ba32559a6ea09b655b2.tar.gz freebsd-ports-gnome-ca8e245aac50f681998a2ba32559a6ea09b655b2.tar.zst freebsd-ports-gnome-ca8e245aac50f681998a2ba32559a6ea09b655b2.zip |
textproc/soothsayer: sed correct Makefile.in for curses => ncurses
-rw-r--r-- | textproc/soothsayer/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/textproc/soothsayer/Makefile b/textproc/soothsayer/Makefile index e81d602d938e..ec1c9e880933 100644 --- a/textproc/soothsayer/Makefile +++ b/textproc/soothsayer/Makefile @@ -3,7 +3,7 @@ PORTNAME= soothsayer PORTVERSION= 0.6.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF/presage/${PORTNAME}/${PORTVERSION} @@ -31,8 +31,9 @@ post-patch: @${REINPLACE_CMD} -e 's|\$$\^|$${.ALLSRC}| ; \ s|lib/soothsayer|soothsayer|g' ${WRKSRC}/resources/Makefile.in @${REINPLACE_CMD} -e 's|lib/soothsayer|soothsayer|' \ - -e 's@lcurses@lncurses@g' \ ${WRKSRC}/resources/profiles/Makefile.in + @${REINPLACE_CMD} -e 's@lcurses@lncurses@g' \ + ${WRKSRC}/src/tools/Makefile.in @${REINPLACE_CMD} -E -e "s|(LIBS=.*)-lsqlite3(.*)|\1\`pkg-config --static --libs sqlite3\`\2|" \ -e "s|(.*SQLITE_LIBS=.*)-lsqlite3(.*)|\1\`pkg-config --static --libs sqlite3\`\2|" \ -e 's@lcurses@lncurses@g' \ |