Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

7
sysutils/extipl/DESCR Normal file
View File

@@ -0,0 +1,7 @@
ExtIPL is a boot selector compatible with IBM-IPL. ExtIPL has
many extended features such as
- boot an OS in a nonactive partition
- boot an OS in an extended partition
- boot an OS in the second or later hard disks
- support LBA access

21
sysutils/extipl/Makefile Normal file
View File

@@ -0,0 +1,21 @@
# $NetBSD: Makefile,v 1.12 2012/10/23 19:51:00 asau Exp $
#
DISTNAME= extipl-5.04
PKGREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP:=extipl/2166/}
MAINTAINER= hiramatu@boreas.dti.ne.jp
HOMEPAGE= http://sourceforge.jp/projects/extipl/
COMMENT= IPL compatible OS boot selector
INSTALL_MAKE_FLAGS+= PREFIX=${DESTDIR}${PREFIX} \
MANDIR=${DESTDIR}${PREFIX}/${PKGMANDIR}
BUILD_DEPENDS+= nasm-[0-9]*:../../devel/nasm
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}/src
USE_TOOLS+= gmake
.include "../../mk/bsd.pkg.mk"

9
sysutils/extipl/PLIST Normal file
View File

@@ -0,0 +1,9 @@
@comment $NetBSD: PLIST,v 1.2 2009/06/14 18:16:04 joerg Exp $
man/man8/extipl.8
sbin/extipl
share/doc/extipl/English/extipl.txt
share/doc/extipl/English/techical.txt
share/doc/extipl/English/scorpius.txt
share/doc/extipl/Japanese/extipl.txt
share/doc/extipl/Japanese/techical.txt
share/doc/extipl/Japanese/scorpius.txt

6
sysutils/extipl/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.4 2010/02/20 00:02:33 joerg Exp $
SHA1 (extipl-5.04.tar.gz) = 41b42bc4ba0bfad86e6abdc2b02620c9934c2cd9
RMD160 (extipl-5.04.tar.gz) = a7c037f92609463d61b3c7d52276e3849aa44055
Size (extipl-5.04.tar.gz) = 85382 bytes
SHA1 (patch-aa) = 242733050ade3ba74169d5090fc2eaabb88f4a41

View File

@@ -0,0 +1,24 @@
$NetBSD: patch-aa,v 1.2 2010/02/20 00:02:33 joerg Exp $
--- Makefile.orig 2002-03-25 13:48:52.000000000 +0000
+++ Makefile
@@ -79,14 +79,14 @@ bin2src : bin2src.c extipl.h
install:
@test -d $(BINDIR) || (set -x; mkdir -p -m 0755 $(BINDIR))
- install -c -s -o root -m 700 extipl $(BINDIR)
- sed -e 's#!!DOCDIR!!#$(DOCDIR)#g' extipl.8.in | gzip > extipl.8.gz
+ ${BSD_INSTALL_PROGRAM} extipl $(BINDIR)
+ sed -e 's#!!DOCDIR!!#$(DOCDIR)#g' extipl.8.in > extipl.8
@test -d $(MAN8) || (set -x; mkdir -p -m 0755 $(MAN8))
- install -o root -m 644 extipl.8.gz $(MAN8)
+ ${BSD_INSTALL_MAN} extipl.8 $(MAN8)
@test -d $(ENGDIR) || (set -x; mkdir -p -m 0755 $(ENGDIR))
- install -c -o root -m 644 ../doc/English/*.txt $(ENGDIR)
+ ${BSD_INSTALL_DATA} ../doc/English/*.txt $(ENGDIR)
@test -d $(JPNDIR) || (set -x; mkdir -p -m 0755 $(JPNDIR))
- install -c -o root -m 644 ../doc/Japanese/*.txt $(JPNDIR)
+ ${BSD_INSTALL_DATA} ../doc/Japanese/*.txt $(JPNDIR)
install-jman:
sed -e 's#!!DOCDIR!!#$(DOCDIR)#g' extipl.8j.in | gzip > extipl.8j.gz