c2d1a14c7c
- Bump PORTREVISION for ftp/curl shlib change - Add TEST_DEPENDS - Convert to new options framework - Adjust options: - Add COOKIES - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1] - Add GSSAPI and SPNEGO [2] - Remove KERBEROS4 - Rename LIBIDN to IDN - Remove TRACKMEMORY [1] - Sort option handler - Add SLAVEDIRS: ftp/curl-hiphop - Cosmetic change - Cleanup Makefile header - While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile Changes: http://curl.haxx.se/changes.html PR: ports/172325 (-exp run), ports/177369 (based on) [1] Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2] Exp run by: miwi
73 lines
1.7 KiB
Makefile
73 lines
1.7 KiB
Makefile
# Created by: Sascha Klauder <sklauder@trimind.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gogglesmm
|
|
PORTVERSION= 0.12.7
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
COMMENT= Music collection manager and player
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= xine.2:${PORTSDIR}/multimedia/libxine \
|
|
tag.1:${PORTSDIR}/audio/taglib \
|
|
sqlite3.8:${PORTSDIR}/databases/sqlite3
|
|
|
|
OPTIONS_DEFINE= DBUS CURL NLS NEWREMOTE GCRYPT DOCS
|
|
OPTIONS_SINGLE= FOX
|
|
OPTIONS_SINGLE_FOX= FOX16 FOX17
|
|
OPTIONS_DEFAULT= DBUS CURL NEWREMOTE FOX16
|
|
|
|
FOX16_DESC= Use stable branch of FOX
|
|
FOX17_DESC= Use development branch of FOX
|
|
NEWREMOTE_DESC= Use new remote player
|
|
GCRYPT_DESC= Use libgcrypt for md5 calculation
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --mandir=${PREFIX}/man --prefix=${PREFIX}
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
USES= pkgconfig gmake
|
|
USE_XZ= yes
|
|
INSTALLS_ICONS= yes
|
|
MAN1= gogglesmm.1
|
|
|
|
PORTDOCS= README AUTHORS
|
|
|
|
FOX16_LIB_DEPENDS= FOX-1.6:${PORTSDIR}/x11-toolkits/fox16
|
|
FOX17_LIB_DEPENDS= FOX-1.7:${PORTSDIR}/x11-toolkits/fox17
|
|
|
|
GCRYPT_LIB_DEPENDS= gcrypt:${PORTSDIR}/security/libgcrypt
|
|
GCRYPT_CONFIGURE_ON= --with-md5=gcrypt
|
|
GCRYPT_CONFIGURE_OFF= --with-md5=internal
|
|
|
|
DBUS_LIB_DEPENDS= dbus-1:${PORTSDIR}/devel/dbus
|
|
DBUS_CONFIGURE_OFF= --with-dbus
|
|
|
|
CURL_LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl
|
|
CURL_CONFIGURE_OFF= --without-curl
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_OFF= --disable-nls
|
|
|
|
NEWREMOTE_CONFIGURE_OFF= --without-new-remote
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
pre-install:
|
|
@${MKDIR} ${PREFIX}/share/applications
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
. for FILE in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
|
. endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|