blob: 82ef021a0cb1c684ffa7695a15d42fd9af3d1f75 (
plain)
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
|
# Created by: Diane Bruce <db@db.net>
# $FreeBSD$
PORTNAME= xwota
PORTVERSION= 0.4
PORTREVISION= 7
CATEGORIES= comms hamradio
MASTER_SITES= http://people.fabaris.it/iz0ete/xwota/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= db
MAINTAINER= hamradio@FreeBSD.org
COMMENT= X version of who is on the air
LICENSE= GPLv2
USES= gmake pkgconfig libtool
USE_GNOME= gtk20
GNU_CONFIGURE= yes
OPTIONS_DEFINE= DOCS
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for d in ${WRKSRC}/README \
${WRKSRC}/COPYING \
${WRKSRC}/AUTHORS \
${WRKSRC}/ChangeLog \
${WRKSRC}/INSTALL \
${WRKSRC}/NEWS \
${WRKSRC}/TODO
@${INSTALL_DATA} ${WRKSRC}/${d} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>
|