blob: db9a00ad94142ba677b46d3dc7efb3209a772e45 (
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
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= linsmith
PORTVERSION= 0.99.25
CATEGORIES= science hamradio
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= Smith charting program
LICENSE= GPLv2 # (or later)
USES= gettext
USE_GNOME= libgnomeui libxml2
GNU_CONFIGURE= yes
MAKE_JOBS_SAFE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
post-patch:
@${REINPLACE_CMD} -e \
'/^Icon/s|/usr/share|${PREFIX}/share|' \
${WRKSRC}/linsmith.desktop
post-install:
@${MKDIR} ${DESKTOPDIR}
(cd ${WRKSRC} \
&& ${INSTALL_DATA} linsmith.desktop ${DESKTOPDIR})
(cd ${WRKSRC} \
&& ${INSTALL_DATA} linsmith_icon.xpm ${PREFIX}/share/pixmaps)
.include <bsd.port.mk>
|