blob: d957fed7aff749fdcd3c6b750b275ba14b012025 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# $FreeBSD$
PORTNAME= freetuxtv
PORTVERSION= 0.6.5
PORTREVISION= 2
CATEGORIES= multimedia
MASTER_SITES= GOOGLE_CODE
MAINTAINER= nemysis@gmx.ch
COMMENT= WebTV player based on GTK2+ and LibVLC
LICENSE= GPLv3
LIB_DEPENDS= vlc:${PORTSDIR}/multimedia/vlc \
dbus-glib:${PORTSDIR}/devel/dbus-glib \
sqlite3:${PORTSDIR}/databases/sqlite3 \
curl:${PORTSDIR}/ftp/curl \
notify:${PORTSDIR}/devel/libnotify \
pthread-stubs:${PORTSDIR}/devel/libpthread-stubs \
pcre:${PORTSDIR}/devel/pcre \
cairo:${PORTSDIR}/graphics/cairo \
png15:${PORTSDIR}/graphics/png \
freetype:${PORTSDIR}/print/freetype2 \
expat:${PORTSDIR}/textproc/expat2 \
fontconfig:${PORTSDIR}/x11-fonts/fontconfig \
xcb:${PORTSDIR}/x11/libxcb
USE_GNOME= glib20 gtk20
USE_XORG= pixman x11 xau xcomposite xcursor xdamage xdmcp xext xfixes \
xi xinerama xrandr xrender
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_PKGCONFIG= build
USE_ICONV= yes
INSTALLS_ICONS= yes
CONFIGURE_ARGS+=--with-gtk=2.0
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-install:
${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png ${PREFIX}/share/pixmaps/
.include <bsd.port.mk>
|