Ticket #29417: Portfile.2

File Portfile.2, 1.7 KB (added by tael67@…, 13 years ago)

Removed aqua variant

Line 
1# $Id: Portfile 78512 2011-05-10 12:57:07Z ryandesign@macports.org $
2
3PortSystem      1.0
4
5name            transmission-x11
6version         2.22
7revision        2
8categories      net x11
9maintainers     gmail.com:tael67 openmaintainer
10description     Lightweight BitTorrent client
11long_description Transmission is a free, lightweight BitTorrent client. \
12                It features a simple, intuitive interface on top of an \
13                efficient, cross-platform back-end. Transmission is open \
14                source (MIT license) and runs on Mac OS X (Cocoa interface), \
15                Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface) and BeOS \
16                (native interface). This is the GTK+ version.
17license         GPL2 MIT
18homepage        http://www.transmissionbt.com/
19distname        transmission-${version}
20dist_subdir     transmission
21master_sites    http://download.m0k.org/transmission/files/
22checksums       sha1     ddd515bdcc201193b45f58b705f6e8fde9fcb5d1 \
23                                rmd160   e87b560f81fc8bc422dc7071a4b27bdcf2b2d6ac
24use_bzip2       yes
25platforms       darwin freebsd
26
27depends_lib     port:openssl \
28                port:curl
29depends_build   port:gsed \
30                port:intltool
31
32configure.args  --enable-daemon \
33                --enable-cli \
34                --disable-wx \
35                --disable-mac \
36                --disable-gtk \
37                --disable-libnotify
38
39variant gtk description {Build Gtk front-end} {
40  depends_lib-append  port:gtk2 \
41        port:dbus-glib
42  configure.args-delete --disable-gtk
43  configure.args-append --enable-gtk
44}
45
46
47
48livecheck.type  regex
49livecheck.url   ${master_sites}
50livecheck.regex "transmission-(\\d+(?:\\.\\d+)*)${extract.suffix}"