aboutsummaryrefslogtreecommitdiff
path: root/ports-mgmt/bpm
diff options
context:
space:
mode:
Diffstat (limited to 'ports-mgmt/bpm')
-rw-r--r--ports-mgmt/bpm/Makefile39
-rw-r--r--ports-mgmt/bpm/distinfo3
-rw-r--r--ports-mgmt/bpm/files/bpm.desktop.in9
-rw-r--r--ports-mgmt/bpm/files/patch-src::refresh.c57
-rw-r--r--ports-mgmt/bpm/pkg-descr17
-rw-r--r--ports-mgmt/bpm/pkg-plist17
6 files changed, 0 insertions, 142 deletions
diff --git a/ports-mgmt/bpm/Makefile b/ports-mgmt/bpm/Makefile
deleted file mode 100644
index 461d08054bea..000000000000
--- a/ports-mgmt/bpm/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# New ports collection makefile for: bpm
-# Date created: 23 July 2004
-# Whom: sethk
-#
-# $FreeBSD$
-#
-
-PORTNAME= bpm
-PORTVERSION= 0.4.1b
-PORTREVISION= 9
-CATEGORIES= sysutils
-MASTER_SITES= http://www.meowfishies.com/code/bpm/
-EXTRACT_SUFX= .tgz
-
-MAINTAINER= sethk@meowfishies.com
-COMMENT= A graphical BSD ports collection manager
-
-RUN_DEPENDS= portupgrade:${PORTSDIR}/sysutils/portupgrade
-
-USE_X_PREFIX= yes
-USE_GNOME= gtk20 desktopfileutils
-USE_REINPLACE= yes
-
-MAKE_ENV+= OSTYPE="${OPSYS}"
-
-SUB_FILES= bpm.desktop
-
-post-patch:
- @${FIND} ${WRKSRC} -name Makefile | ${XARGS} \
- ${REINPLACE_CMD} -e "s|-lintl|-lintl -L${LOCALBASE}/lib|g"
-# GnomeVFS needs pthread; bpm may use GnomeVFS (via GtkFileChooser)
- @${REINPLACE_CMD} -e 's|^CFLAGS+=|& ${PTHREAD_CFLAGS}|; \
- s|^LDLIBS+=|& ${PTHREAD_LIBS}|' ${WRKSRC}/src/Makefile
-
-post-install:
- ${INSTALL_DATA} ${WRKDIR}/bpm.desktop ${PREFIX}/share/applications/bpm.desktop
- @-update-desktop-database
-
-.include <bsd.port.mk>
diff --git a/ports-mgmt/bpm/distinfo b/ports-mgmt/bpm/distinfo
deleted file mode 100644
index 14a3de79bfdb..000000000000
--- a/ports-mgmt/bpm/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (bpm-0.4.1b.tgz) = 2704ba7b6f6935a93b2973aa0e82028d
-SHA256 (bpm-0.4.1b.tgz) = 8ed675ad6f572fd2872e40ab5d037f9175ce23020cd0abab403665f3a6935fc1
-SIZE (bpm-0.4.1b.tgz) = 98457
diff --git a/ports-mgmt/bpm/files/bpm.desktop.in b/ports-mgmt/bpm/files/bpm.desktop.in
deleted file mode 100644
index ad773b9d6038..000000000000
--- a/ports-mgmt/bpm/files/bpm.desktop.in
+++ /dev/null
@@ -1,9 +0,0 @@
-[Desktop Entry]
-Comment=The BSD Ports Manipulator
-Name=BPM
-Exec=gnomesu %%PREFIX%%/bin/bpm
-Encoding=UTF-8
-Terminal=false
-Type=Application
-Icon=%%PREFIX%%/share/bpm/pixmaps/pkg_48.png
-Categories=Application;System;
diff --git a/ports-mgmt/bpm/files/patch-src::refresh.c b/ports-mgmt/bpm/files/patch-src::refresh.c
deleted file mode 100644
index 619e8f024972..000000000000
--- a/ports-mgmt/bpm/files/patch-src::refresh.c
+++ /dev/null
@@ -1,57 +0,0 @@
---- src/refresh.c.orig Mon Aug 23 19:40:08 2004
-+++ src/refresh.c Thu Nov 24 15:11:48 2005
-@@ -62,8 +62,14 @@
- __RCSID("$Id: refresh.c,v 1.32 2004/08/24 02:40:08 sethk Exp $");
-
- /* XXX use libinstall/lib.h */
-+#if __FreeBSD_version >= 600000
-+#define INDEX_FN PORTS_BASE "/INDEX-6"
-+#elif __FreeBSD_version >= 500036
-+#define INDEX_FN PORTS_BASE "/INDEX-5"
-+#else
- #define INDEX_FN PORTS_BASE "/INDEX"
--#define INDEX_MAXLN 4096
-+#endif
-+#define INDEX_MAXLN 8192
- #define DB_DIR "/var/db/pkg"
- #define ITER_BYTES (128 * 1024)
- #define ITER_ENTS 32
-@@ -183,10 +189,12 @@
- if (*sp == '|')
- ++i;
-
-- if (i != (PFIELD_NFIELD - 1))
-+ if (i < (PFIELD_NFIELD - 1))
- {
- #ifdef DEBUG
-- warnx("invalid number of fields");
-+ warnx("invalid number of fields (%d should be %d)",
-+ i + 1,
-+ PFIELD_NFIELD);
- #endif /* DEBUG */
- return FALSE;
- }
-@@ -195,12 +203,9 @@
-
- for (i = 0; i < PFIELD_NFIELD; ++i)
- {
-- if (i < PFIELD_NFIELD - 1)
-- {
-- if (!(sp = strchr(line, '|')))
-- break;
-- *sp++ = '\0';
-- }
-+ if (!(sp = strchr(line, '|')) && i < PFIELD_NFIELD - 1)
-+ break;
-+ *sp++ = '\0';
-
- switch (i)
- {
-@@ -320,7 +325,6 @@
-
- if (_refresh_index_parse(ln, portdp, rdp) != TRUE)
- {
-- _refresh_portfree(portdp);
- #ifdef DEBUG
- warnx("%s:%u: invalid format", INDEX_FN, rdp->rd_linec);
- #endif /* DEBUG */
diff --git a/ports-mgmt/bpm/pkg-descr b/ports-mgmt/bpm/pkg-descr
deleted file mode 100644
index 8400a536e1f0..000000000000
--- a/ports-mgmt/bpm/pkg-descr
+++ /dev/null
@@ -1,17 +0,0 @@
-BSD Ports Manipuator (BPM) is a graphical ports collection manager for
-FreeBSD. It has a GTK+ 2.0 interface and allows you to add, remove, or
-upgrade software packages on your system without requiring you to use a
-command-line. In addition, it can display details about available,
-installed, and out-of-date ports, as well as allowing you to search
-based on port descriptions.
-
-BPM uses the existing ports collection structure, allowing it to build
-ports from source and integrate seamlessly with other tools.
-
-This project started out as a clone of Ports Manager.app for
-DarwinPorts.
-
-WWW: http://www.meowfishies.com/bpm.rhtml
-
-- Seth
-sethk@meowfishies.com
diff --git a/ports-mgmt/bpm/pkg-plist b/ports-mgmt/bpm/pkg-plist
deleted file mode 100644
index e1f9ea3fb0a0..000000000000
--- a/ports-mgmt/bpm/pkg-plist
+++ /dev/null
@@ -1,17 +0,0 @@
-bin/bpm
-bin/gtk-su
-libexec/bpm/term
-libexec/bpm/fetch-wrapper
-%%DATADIR%%/pixmaps/term_16.png
-%%DATADIR%%/pixmaps/term_24.png
-%%DATADIR%%/pixmaps/pkg_16.png
-%%DATADIR%%/pixmaps/pkg_24.png
-%%DATADIR%%/pixmaps/pkg_48.png
-%%DATADIR%%/pixmaps/lock_48.png
-share/locale/en_CA/LC_MESSAGES/bpm.mo
-share/applications/bpm.desktop
-@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
-@dirrm libexec/bpm
-@dirrm %%DATADIR%%/pixmaps
-@dirrm %%DATADIR%%
-@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true