diff options
Diffstat (limited to 'sysutils/fixelfprot/Makefile')
-rw-r--r-- | sysutils/fixelfprot/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sysutils/fixelfprot/Makefile b/sysutils/fixelfprot/Makefile new file mode 100644 index 00000000000..d8b0e67e582 --- /dev/null +++ b/sysutils/fixelfprot/Makefile @@ -0,0 +1,32 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/07/15 09:28:15 agc Exp $ + +DISTNAME= fixelfprot-20040714 +CATEGORIES= sysutils +MASTER_SITES= # empty +DISTFILES= # empty + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://mail-index.netbsd.org/tech-kern/2004/07/11/0002.html +COMMENT= C program to fix ELF protection on .got table for PowerPC + +ONLY_FOR_PLATFORM= NetBSD-*-powerpc + +PKG_INSTALLATION_TYPES= overwrite pkgviews + +WRKSRC= ${WRKDIR} +NO_CHECKSUM= # defined - sources are part of pkgsrc entry +NO_BUILDLINK= # defined +NO_CONFIGURE= # defined + +INSTALLATION_DIRS= bin + +do-extract: + ${CP} ${FILESDIR}/fixelfprot.c ${WRKSRC} + +do-build: + cd ${WRKSRC} && ${CC} ${CFLAGS} fixelfprot.c -o fixelfprot + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/fixelfprot ${PREFIX}/sbin + +.include "../../mk/bsd.pkg.mk" |