summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devel/libdinstaller/DESCR2
-rw-r--r--devel/libdinstaller/Makefile23
-rw-r--r--devel/libdinstaller/PLIST13
-rw-r--r--devel/libdinstaller/buildlink3.mk21
-rw-r--r--devel/libdinstaller/distinfo5
-rw-r--r--devel/libdinstaller/patches/patch-aa34
6 files changed, 0 insertions, 98 deletions
diff --git a/devel/libdinstaller/DESCR b/devel/libdinstaller/DESCR
deleted file mode 100644
index 461bf93fc03..00000000000
--- a/devel/libdinstaller/DESCR
+++ /dev/null
@@ -1,2 +0,0 @@
-libinstaller is a library of support functions for the BSD Installer
-application, dfuibe_installer.
diff --git a/devel/libdinstaller/Makefile b/devel/libdinstaller/Makefile
deleted file mode 100644
index 6fbc125588d..00000000000
--- a/devel/libdinstaller/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# $NetBSD: Makefile,v 1.1.1.1 2005/02/09 05:42:43 xtraeme Exp $
-#
-
-DISTNAME= libinstaller-4.0
-CATEGORIES= devel
-MASTER_SITES= http://www.bsdinstaller.org/distfiles/
-
-MAINTAINER= xtraeme@NetBSD.org
-HOMEPAGE= http://www.bsdinstaller.org/
-COMMENT= Library of support functions for the BSD Installer application
-
-WRKSRC= ${WRKDIR}/libinstaller
-USE_BUILDLINK3= yes
-
-SUBST_CLASSES+= prefix
-SUBST_STAGE.prefix= post-patch
-SUBST_FILES.prefix= Makefile
-SUBST_SED.prefix= -e "s,/usr/local,${PREFIX},g"
-SUBST_MESSAGE.prefix= "Fixing hardcoded paths."
-
-.include "../../devel/libaura/buildlink3.mk"
-.include "../../devel/libdfui/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/devel/libdinstaller/PLIST b/devel/libdinstaller/PLIST
deleted file mode 100644
index 138fb106fa3..00000000000
--- a/devel/libdinstaller/PLIST
+++ /dev/null
@@ -1,13 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2005/02/09 05:42:43 xtraeme Exp $
-include/installer/commands.h
-include/installer/confed.h
-include/installer/diskutil.h
-include/installer/functions.h
-include/installer/package.h
-include/installer/uiutil.h
-lib/libinstaller.a
-lib/libinstaller.so
-lib/libinstaller.so.4
-lib/libinstaller.so.${PKGVERSION}
-lib/libinstaller_pic.a
-@dirrm include/installer
diff --git a/devel/libdinstaller/buildlink3.mk b/devel/libdinstaller/buildlink3.mk
deleted file mode 100644
index a5aa03deaf0..00000000000
--- a/devel/libdinstaller/buildlink3.mk
+++ /dev/null
@@ -1,21 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.1.1.1 2005/02/09 05:42:43 xtraeme Exp $
-
-BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
-LIBINSTALLER_BUILDLINK3_MK:= ${LIBINSTALLER_BUILDLINK3_MK}+
-
-.if !empty(BUILDLINK_DEPTH:M+)
-BUILDLINK_DEPENDS+= libinstaller
-.endif
-
-BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibinstaller}
-BUILDLINK_PACKAGES+= libinstaller
-
-.if !empty(LIBINSTALLER_BUILDLINK3_MK:M+)
-BUILDLINK_DEPENDS.libinstaller+= libinstaller>=4.0
-BUILDLINK_PKGSRCDIR.libinstaller?= ../../devel/libinstaller
-.endif # LIBINSTALLER_BUILDLINK3_MK
-
-.include "../../devel/libaura/buildlink3.mk"
-.include "../../devel/libdfui/buildlink3.mk"
-
-BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
diff --git a/devel/libdinstaller/distinfo b/devel/libdinstaller/distinfo
deleted file mode 100644
index 6375b881abb..00000000000
--- a/devel/libdinstaller/distinfo
+++ /dev/null
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.1.1.1 2005/02/09 05:42:43 xtraeme Exp $
-
-SHA1 (libinstaller-4.0.tar.gz) = caeadbd8c6d31266c78b3f2ce0669336cb2dd0ce
-Size (libinstaller-4.0.tar.gz) = 20889 bytes
-SHA1 (patch-aa) = 7d0117d988b04c6af288858b0130d86a2937a468
diff --git a/devel/libdinstaller/patches/patch-aa b/devel/libdinstaller/patches/patch-aa
deleted file mode 100644
index 66e796f37a1..00000000000
--- a/devel/libdinstaller/patches/patch-aa
+++ /dev/null
@@ -1,34 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2005/02/09 05:42:44 xtraeme Exp $
-
---- mount.c.orig 2005-02-09 04:51:24.000000000 +0100
-+++ mount.c 2005-02-09 04:52:38.000000000 +0100
-@@ -52,11 +52,18 @@
- #include "commands.h"
- #include "functions.h"
-
-+#if (__NetBSD_Version__ >= 200040000)
-+#define STATFS statvfs
-+#else
-+#define STATFS statfs
-+#endif
-+
-+
- void
- unmount_all_under_r(struct i_fn_args *a, struct commands *cmds,
-- char *mtpt, struct statfs *mt_array, int count)
-+ char *mtpt, struct STATFS *mt_array, int count)
- {
-- struct statfs *mt_ptr;
-+ struct STATFS *mt_ptr;
- int k = count;
- int unmount_me = 0;
-
-@@ -85,7 +92,7 @@
- void
- unmount_all_under(struct i_fn_args *a, struct commands *cmds, char *fmt, ...)
- {
-- struct statfs *mt_array;
-+ struct STATFS *mt_array;
- int count;
- char *mtpt;
- va_list args;