blob: 7245ab39c04e4ef7dd77cb60300c2843ed46a435 (
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
|
# $FreeBSD$
PORTNAME= linnya
PORTVERSION= 2.3.0
PORTREVISION= 2
CATEGORIES= audio
MAINTAINER= ports@FreeBSD.org
COMMENT= Linnya Audio Player
LICENSE= GPLv3
DEPRECATED= Deprecated upstream
EXPIRATION_DATE= 2014-07-07
LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl
USE_GITHUB= yes
NO_STAGE= yes
GH_ACCOUNT= herenvarno
GH_COMMIT= 90cf6b8
USES= gmake pkgconfig
USE_AUTOTOOLS= libtoolize libtool
GNU_CONFIGURE= yes
USE_GNOME= gtk30
USE_SQLITE= 3
USE_GSTREAMER= good mp3
USE_LDCONFIG= yes
INSTALLS_ICONS= yes
LIBTOOLIZE_ARGS=--copy --force
OPTIONS_DEFINE= NLS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-patch:
${REINPLACE_CMD} -e '/^$${CXXFLAGS/d' ${WRKSRC}/configure
.include <bsd.port.mk>
|