diff options
author | kwm <kwm@FreeBSD.org> | 2014-04-11 21:51:28 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2014-04-11 21:51:28 +0800 |
commit | bd019af0d9adfe058a725a1fbe8f1c9d02fce25b (patch) | |
tree | 0e93cdc9a2585c97dd581848b7aeaf4d51570a51 /news/pan/Makefile | |
parent | 3dae06e28a0d28c96f8c858205da63a142a43fda (diff) | |
download | freebsd-ports-gnome-bd019af0d9adfe058a725a1fbe8f1c9d02fce25b.tar.gz freebsd-ports-gnome-bd019af0d9adfe058a725a1fbe8f1c9d02fce25b.tar.zst freebsd-ports-gnome-bd019af0d9adfe058a725a1fbe8f1c9d02fce25b.zip |
Stagify
USES=gmake tar:bzip2 and sort USES
Use new LIB_DEPENDS syntax.
Add USE_GCC=any to fix the build on 10.0+. [1]
PR: ports/182203 [1]
Submitted by: Walter Hurry <walterhurry@gmail.com>
Diffstat (limited to 'news/pan/Makefile')
-rw-r--r-- | news/pan/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/news/pan/Makefile b/news/pan/Makefile index e9b00b454f83..d740f17abf43 100644 --- a/news/pan/Makefile +++ b/news/pan/Makefile @@ -14,13 +14,12 @@ COMMENT= Threaded GTK+ newsreader based on Agent for Windows LICENSE= GPLv2 -LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre \ - gmime-2.6:${PORTSDIR}/mail/gmime26 +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre \ + libgmime-2.6.so:${PORTSDIR}/mail/gmime26 -USE_BZIP2= yes -USE_GMAKE= yes -USES= pathfix gettext iconv pkgconfig +USES= gmake gettext iconv pathfix pkgconfig tar:bzip2 USE_GNOME= intlhack +USE_GCC= any GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lgnuregex ${ICONV_LIB} @@ -30,7 +29,6 @@ OPTIONS_DEFAULT=GTKSPELL GTKSPELL_DESC= Spell checking support (gtk+2 only) GTK3_DESC= Use gtk+3 based UI instead of gtk+2 -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MGTK3} @@ -44,7 +42,7 @@ CONFIGURE_ARGS+=--without-gtk3 .if !${PORT_OPTIONS:MGTKSPELL} || ${PORT_OPTIONS:MGTK3} CONFIGURE_ARGS+= --without-gtkspell .else -LIB_DEPENDS+= gtkspell:${PORTSDIR}/textproc/gtkspell +LIB_DEPENDS+= libgtkspell.so:${PORTSDIR}/textproc/gtkspell CONFIGURE_ARGS+= --with-gtkspell .endif |