blob: 1c0e364247b154cc094666fc5cc32666df14ea34 (
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
|
# New ports collection makefile for: stalonetray
# Date created: Apr 6 2006
# Whom: 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
MAN1= stalonetray.1
PORTDOCS= AUTHORS ChangeLog NEWS README TODO stalonetray.html
PORTEXAMPLES= stalonetrayrc.sample
PLIST_FILES= bin/stalonetray
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
.for file in ${PORTEXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.mk>
|