ac656c92fd
- Add a recommended patch from upstream (r6250). - Add an option to specify device other than /dev/smb0. - Install manual page. - Update MAINTAINER to use FreeBSD address. - Remove the leading article from COMMENT. - Add LICENSE. - Convert to USES=tar:bzip2. PR: 191198 Approved by: avg (maintainer, timeout > 2 weeks)
27 lines
619 B
Makefile
27 lines
619 B
Makefile
# Created by: Andriy Gapon <avg@icyb.net.ua>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= i2c-tools
|
|
PORTVERSION= 3.1.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://dl.lm-sensors.org/i2c-tools/releases/
|
|
|
|
MAINTAINER= avg@FreeBSD.org
|
|
COMMENT= Heterogeneous set of I2C tools
|
|
|
|
LICENSE= GPLv2
|
|
|
|
NO_BUILD= yes
|
|
USES= perl5 shebangfix tar:bzip2
|
|
USE_PERL5= run
|
|
|
|
PLIST_FILES= man/man1/decode-dimms.1.gz sbin/decode-dimms
|
|
SHEBANG_FILES= eeprom/decode-dimms
|
|
|
|
do-install:
|
|
${INSTALL_MAN} ${WRKSRC}/eeprom/decode-dimms.1 \
|
|
${STAGEDIR}${PREFIX}/man/man1/
|
|
${INSTALL_SCRIPT} ${WRKSRC}/eeprom/decode-dimms \
|
|
${STAGEDIR}${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|