blob: 11abdb754572744ea9bfd54c40eb927d2e5d6c20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# New ports collection makefile for: transmission-daemon
# Date created: 08 February 2008
# Whom: Mezz <mezz@FreeBSD.org>
#
# $FreeBSD$
#
PORTREVISION= 2
PKGNAMESUFFIX= -daemon
MAINTAINER= mezz@FreeBSD.org
COMMENT= A fast and lightweight daemon BitTorrent client
DESCR= ${.CURDIR}/pkg-descr
MASTERDIR= ${.CURDIR}/../transmission-cli
PLIST= ${.CURDIR}/pkg-plist
PKGINSTALL= ${.CURDIR}/pkg-install
SLAVEPORT= daemon
USE_RC_SUBR= transmission
EXTRA_CONF_ARGS=--disable-cli \
--enable-daemon \
--disable-gtk \
--disable-libnotify \
--disable-mac \
--disable-nls
MAN1= transmission-daemon.1 transmission-remote.1
post-install: general-install
.if !defined(PACKAGE_BUILDING)
@${SETENV} PKG_PREFIX=${PREFIX} \
${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.endif
.include "${MASTERDIR}/Makefile"
|