39 lines
767 B
Makefile
39 lines
767 B
Makefile
# $OpenBSD: Makefile,v 1.7 2016/09/23 09:16:58 sthen Exp $
|
|
|
|
COMMENT = open-source RSS/Atom feed reader for text terminals
|
|
DISTNAME = newsbeuter-2.7
|
|
REVISION = 1
|
|
CATEGORIES = www
|
|
|
|
HOMEPAGE = http://newsbeuter.org/
|
|
|
|
MAINTAINER = Kyle Isom <kyle@tyrfingr.is>
|
|
|
|
# mit
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c crypto curl json-c m ncursesw pthread sqlite3
|
|
WANTLIB += stdc++ stfl xml2
|
|
|
|
MASTER_SITES = http://newsbeuter.org/downloads/
|
|
|
|
MODULES = devel/gettext
|
|
|
|
LIB_DEPENDS = databases/sqlite3 \
|
|
devel/stfl \
|
|
devel/json-c \
|
|
textproc/libxml \
|
|
net/curl
|
|
|
|
MAKE_FLAGS = CXX="${CXX}"
|
|
FAKE_FLAGS = mandir=${PREFIX}/man
|
|
|
|
USE_GMAKE = Yes
|
|
CONFIGURE_STYLE = simple
|
|
CONFIGURE_SCRIPT = config.sh
|
|
|
|
post-extract:
|
|
rm $(WRKSRC)/src/google*.cpp
|
|
|
|
.include <bsd.port.mk>
|