4779b33b84
- Take maintainership [2] as the next update may require partially reverting r369657 hacks in favor of upstream support - Disable devel/libinotify: * used only by transmission-daemon's watch-dir * maybe less stable than readdir() fallback * disabled by other ports e.g., devel/glib20 * completely different from devel/libnotify [3] - Belatedly bump PORTREVISION PR: 197065 [1] Differential Revision: https://reviews.freebsd.org/D1806 Suggested by: crees [2] Pointy hat: crees (r287179) [3] Approved by: crees (maintainer) [1][2] Approved by: bapt (mentor)
29 lines
551 B
Makefile
29 lines
551 B
Makefile
# $FreeBSD$
|
|
|
|
PORTREVISION= 2
|
|
PKGNAMESUFFIX= -daemon
|
|
|
|
MAINTAINER= crees@FreeBSD.org
|
|
COMMENT= Fast and lightweight daemon BitTorrent client
|
|
|
|
RUN_DEPENDS= ${GEN_RUN_DEPENDS}
|
|
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
MASTERDIR= ${.CURDIR}/../transmission-cli
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
SLAVEPORT= daemon
|
|
|
|
USE_RC_SUBR= transmission
|
|
USERS= transmission
|
|
GROUPS= transmission
|
|
|
|
EXTRA_CONF_ARGS=--disable-cli \
|
|
--enable-daemon \
|
|
--without-gtk \
|
|
--disable-mac \
|
|
--disable-nls
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${ETCDIR}/home
|
|
|
|
.include "${MASTERDIR}/Makefile"
|