diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-07-26 11:59:37 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-07-26 11:59:37 +0000 |
commit | fb94e4c038ba9dcc4c5f87414c071b53e1fcbe7f (patch) | |
tree | cf50057dad6a77abdb0811990f7a6438033da0af /devel/elfio/Makefile | |
parent | e2b0fff291db43d4912d9ca1b29ee15ff5353379 (diff) | |
download | FreeBSD-ports-fb94e4c038ba9dcc4c5f87414c071b53e1fcbe7f.zip FreeBSD-ports-fb94e4c038ba9dcc4c5f87414c071b53e1fcbe7f.tar.gz |
add elfio
ELF (Executable and Linkable Format) reader and producer
Diffstat (limited to 'devel/elfio/Makefile')
-rw-r--r-- | devel/elfio/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/devel/elfio/Makefile b/devel/elfio/Makefile new file mode 100644 index 0000000..d32935a --- /dev/null +++ b/devel/elfio/Makefile @@ -0,0 +1,27 @@ +# ex:ts=8 +# New ports collection makefile for: elfio +# Date created: Jul 26, 2001 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= elfio +PORTVERSION= 0.2.7 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org + +WRKSRC= ${WRKDIR}/ELFIO/ELFIO +MAKEFILE= makefile +ALL_TARGET= # empty + +post-patch: + @${PERL} -pi -e "s,^CXXFLAGS,#CXXFLAGS,g" ${WRKSRC}/makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/libELFIO.a ${PREFIX}/lib + +.include <bsd.port.mk> |