pefile is a Python module to read and work with PE files. Most of the

information in the PE Header is accessible, as well as all the sections,
section's information and data.

WWW: http://dkbza.org/pefile.html

PR:		ports/100393
Submitted by:	Antoine Brodin <antoine.brodin(at)laposte.net>
Approved by:	krion (mentor)
This commit is contained in:
Martin Wilke 2006-07-25 21:21:48 +00:00
parent 3548a49064
commit 361c3ea3f9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=168759
5 changed files with 40 additions and 0 deletions

View file

@ -1617,6 +1617,7 @@
SUBDIR += py-optik
SUBDIR += py-orbit
SUBDIR += py-parsing
SUBDIR += py-pefile
SUBDIR += py-period
SUBDIR += py-plex
SUBDIR += py-pmock

26
devel/py-pefile/Makefile Normal file
View file

@ -0,0 +1,26 @@
# New ports collection makefile for: pefile
# Date created: 16 July 2006
# Whom: antoine.brodin@laposte.net
#
# $FreeBSD$
#
PORTNAME= pefile
PORTVERSION= 1.1
CATEGORIES= devel python
MASTER_SITES= http://dkbza.org/pefile/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= antoine.brodin@laposte.net
COMMENT= A python module to read and work with PE files
USE_PYTHON= yes
USE_PYDISTUTILS=yes
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>

3
devel/py-pefile/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (pefile-1.1.tar.gz) = 6788c7555dfe4b6cd956bc8f03928e8f
SHA256 (pefile-1.1.tar.gz) = a51b87ade802e8b06352ca5b1154281dbda9340da848d1e071ea06c5d9371c9b
SIZE (pefile-1.1.tar.gz) = 19077

View file

@ -0,0 +1,5 @@
pefile is a Python module to read and work with PE files. Most of the
information in the PE Header is accessible, as well as all the sections,
section's information and data.
WWW: http://dkbza.org/pefile.html

View file

@ -0,0 +1,5 @@
%%PYTHON_SITELIBDIR%%/pefile.py
%%PYTHON_SITELIBDIR%%/pefile.pyc
%%PYTHON_SITELIBDIR%%/pefile.pyo
%%PORTDOCS%%%%DOCSDIR%%/README
%%PORTDOCS%%@dirrm %%DOCSDIR%%