mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
83156ad651
PR: ports/185305 Submitted by: Zsolt Udvari <udvzsolt@gmail.com> Approved by: maintainer timeout (18 days)
39 lines
906 B
Makefile
39 lines
906 B
Makefile
# Created by: Stepan Zastupov [RedChrom] <redchrom@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= stalonetray
|
|
PORTVERSION= 0.8.1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= graudeejs@gmail.com
|
|
COMMENT= STAnd-aLONE system tray
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_BZIP2= yes
|
|
USE_XORG= xpm
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-native-kde \
|
|
--disable-debug
|
|
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README TODO stalonetray.html
|
|
PORTEXAMPLES= stalonetrayrc.sample
|
|
PLIST_FILES= bin/stalonetray man/man1/stalonetray.1.gz
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for file in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
.for file in ${PORTEXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${EXAMPLESDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|