mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
1039b2ad7f
Add SHA256 PR: 89232 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
33 lines
734 B
Makefile
33 lines
734 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: elfio
|
|
# Date created: Jul 26, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ELFIO
|
|
PORTVERSION= 1.0.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME:L}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ library for reading and generating files in the ELF binary format
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in AUTHORS ChangeLog README
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.for f in elf11g.zip tutorial.docbook tutorial.pdf
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|