1a3aaf2add
+ Add LICENSE
* Fix MASTER_SITES and pkg-descr
* Use `make makepatch` to regenerate patches to ensure proper patch
format
Changelog:
- a few bugfixes:
- correctly recognize near field data in yet another nec2 version
(Debian's) (2011)
- show gain scale when --view option is used to choose a view along
one of the axes. (2014-02-27)
- calculation of absolute segment numbers when using GM cards wasi
incorrect (tnx Luigi Tarenga)
- updates for more modern library versions
- compatibility with libpng 1.6 instead of 1.2 (tnx Luigi Tarenga)
- PNG file was completely black with modern libgdk (tnx Luigi Tarenga)
- fixed a few compiler warnings (one of which was probably a very subtle
bug in the opaque drawing)
PR: 285510
Approved by: xride (maintainer, timeout > 3 weeks)
26 lines
664 B
Makefile
26 lines
664 B
Makefile
PORTNAME= xnecview
|
|
DISTVERSION= 1.37
|
|
CATEGORIES= comms hamradio
|
|
MASTER_SITES= https://wwwhome.cs.utwente.nl/%7Eptdeboer/ham/xnecview/
|
|
|
|
MAINTAINER= xride@FreeBSD.org
|
|
COMMENT= X11 viewer of NEC2 input and output data
|
|
WWW= https://wwwhome.cs.utwente.nl/%7Eptdeboer/ham/xnecview/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png
|
|
|
|
USES= gmake gnome pkgconfig tar:tgz
|
|
USE_GNOME= gtk20
|
|
|
|
PLIST_FILES= bin/xnecview share/man/man1/xnecview.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xnecview ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xnecview.man \
|
|
${STAGEDIR}${PREFIX}/share/man/man1/xnecview.1
|
|
|
|
.include <bsd.port.mk>
|