mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
16ccff16fa
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>
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# $MCom: ports/news/pan/Makefile,v 1.7 2008/01/19 22:45:42 mezz Exp $
|
|
|
|
PORTNAME= pan
|
|
PORTVERSION= 0.139
|
|
PORTREVISION= 2
|
|
CATEGORIES= news gnome
|
|
MASTER_SITES= http://pan.rebelbase.com/download/releases/${PORTVERSION}/source/
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Threaded GTK+ newsreader based on Agent for Windows
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre \
|
|
libgmime-2.6.so:${PORTSDIR}/mail/gmime26
|
|
|
|
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}
|
|
|
|
OPTIONS_DEFINE= GTKSPELL GTK3
|
|
OPTIONS_DEFAULT=GTKSPELL
|
|
GTKSPELL_DESC= Spell checking support (gtk+2 only)
|
|
GTK3_DESC= Use gtk+3 based UI instead of gtk+2
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MGTK3}
|
|
USE_GNOME+= gtk30
|
|
CONFIGURE_ARGS+=--with-gtk3
|
|
.else
|
|
USE_GNOME+= gtk20
|
|
CONFIGURE_ARGS+=--without-gtk3
|
|
.endif
|
|
|
|
.if !${PORT_OPTIONS:MGTKSPELL} || ${PORT_OPTIONS:MGTK3}
|
|
CONFIGURE_ARGS+= --without-gtkspell
|
|
.else
|
|
LIB_DEPENDS+= libgtkspell.so:${PORTSDIR}/textproc/gtkspell
|
|
CONFIGURE_ARGS+= --with-gtkspell
|
|
.endif
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name "Makefile.in"| ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|noinst_PROGRAMS = |noinst_PROGRAMS = #|g'
|
|
|
|
.include <bsd.port.mk>
|