c4daf688ed
Tiny Tiny RSS is a web-based news feed (RSS/Atom) aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible. - Supports RSS, RDF, Atom feeds using Magpie library - Supports OPML import/export - Supports keyboard shortcuts - Supports article scoring [etc,etc]
39 lines
901 B
Makefile
Executable File
39 lines
901 B
Makefile
Executable File
# $OpenBSD: Makefile,v 1.1.1.1 2009/04/01 18:22:49 jasper Exp $
|
|
|
|
COMMENT= webbased rss reader with standalone look and feel
|
|
|
|
DISTNAME= tt-rss-1.3.2
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://tt-rss.spb.ru/trac/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://tt-rss.org/download/
|
|
|
|
BUILD_DEPENDS= ::archivers/gtar
|
|
TAR= ${LOCALBASE}/bin/gtar
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
PKG_ARCH= *
|
|
|
|
PREFIX= /var/www
|
|
INSTDIR= ${PREFIX}/tt-rss/
|
|
SUBST_VARS= INSTDIR
|
|
|
|
PHP_VERSION= 5
|
|
RUN_DEPENDS= :php${PHP_VERSION}-mbstring-*:www/php${PHP_VERSION}/extensions,-mbstring \
|
|
:php${PHP_VERSION}-pgsql-*:www/php${PHP_VERSION}/extensions,-pgsql \
|
|
:php${PHP_VERSION}-xmlrpc-*:www/php${PHP_VERSION}/extensions,-xmlrpc
|
|
|
|
do-install:
|
|
@cp -Rp ${WRKDIST} ${INSTDIR}
|
|
@chown -R ${SHAREOWN}:${SHAREGRP} ${INSTDIR}
|
|
|
|
.include <bsd.port.mk>
|