mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
1790cdebcb
Strip binaries Use options sub Add options definition
43 lines
916 B
Makefile
43 lines
916 B
Makefile
# Created by: Eric Turgeon <ericturgeon.bsd at gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lxmusic
|
|
PORTVERSION= 0.4.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/ghostbsdproject/package/LXMusic/
|
|
|
|
MAINTAINER= ericturgeon@ghostbsd.org
|
|
COMMENT= LXDE music player based on xmms2
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
|
|
LICENSE= MIT GPLv2
|
|
LICENSE_COMB= dual
|
|
|
|
LIB_DEPENDS= libxmmsclient.so:${PORTSDIR}/audio/xmms2 \
|
|
libnotify.so:${PORTSDIR}/devel/libnotify
|
|
|
|
USES= gmake desktop-file-utils pkgconfig
|
|
USE_GNOME= gtk20
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_ICONS= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
|
|
PORTDOCS= AUTHORS README
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE=nls
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|