aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2006-01-15 05:16:35 +0800
committerPav Lucistnik <pav@FreeBSD.org>2006-01-15 05:16:35 +0800
commit7dc0abbf5419130e2cdbed5ee27d89612f830e35 (patch)
tree44261f8efd5a45201d45576fce6918470533bc6d /misc
parent43e448da34bd27802a32f6fde00ac824bca0d353 (diff)
downloadfreebsd-ports-gnome-7dc0abbf5419130e2cdbed5ee27d89612f830e35.tar.gz
freebsd-ports-gnome-7dc0abbf5419130e2cdbed5ee27d89612f830e35.tar.zst
freebsd-ports-gnome-7dc0abbf5419130e2cdbed5ee27d89612f830e35.zip
- Remove expired ports
Diffstat (limited to 'misc')
-rw-r--r--misc/Makefile1
-rw-r--r--misc/wmproxyper/Makefile33
-rw-r--r--misc/wmproxyper/distinfo3
-rw-r--r--misc/wmproxyper/pkg-descr5
4 files changed, 0 insertions, 42 deletions
diff --git a/misc/Makefile b/misc/Makefile
index 787262bcee1a..3790415b4881 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -444,7 +444,6 @@
SUBDIR += wminfo
SUBDIR += wmjulia
SUBDIR += wmpal
- SUBDIR += wmproxyper
SUBDIR += wmtunlo
SUBDIR += wmweather
SUBDIR += wmweather+
diff --git a/misc/wmproxyper/Makefile b/misc/wmproxyper/Makefile
deleted file mode 100644
index 835506aec132..000000000000
--- a/misc/wmproxyper/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-# New ports collection makefile for: wmproxyper
-# Date created: 22 June 2002
-# Whom: Alexey Dokuchaev <danfe@regency.nsu.ru>
-#
-# $FreeBSD$
-#
-
-PORTNAME= wmproxyper
-PORTVERSION= 0.9.1
-PORTREVISION= 2
-CATEGORIES= misc windowmaker afterstep
-MASTER_SITES= http://home.student.utwente.nl/w.k.havinga/wmproxyper/
-DISTNAME= WMProxyPer-${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Displays Distributed.net Personal Proxy current status and progress
-
-DEPRECATED= "mastersite disappeared, no longer maintained by author"
-EXPIRATION_DATE= 2005-12-31
-
-LIB_DEPENDS= dockapp.2:${PORTSDIR}/x11-wm/libdockapp
-
-PLIST_FILES= bin/wmproxyper
-USE_GMAKE= yes
-USE_XPM= yes
-USE_X_PREFIX= yes
-MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" INC=-I${X11BASE}/include \
- LIBS="-lXext -lX11 -lm -L${LOCALBASE}/lib -L${X11BASE}/lib -lXpm -ldockapp"
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
-
-.include <bsd.port.mk>
diff --git a/misc/wmproxyper/distinfo b/misc/wmproxyper/distinfo
deleted file mode 100644
index 8a35d9d5ee99..000000000000
--- a/misc/wmproxyper/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (WMProxyPer-0.9.1.tar.gz) = b9967bfa9aa9e2730665355164da039b
-SHA256 (WMProxyPer-0.9.1.tar.gz) = 107293d0141ffbfaa1e59e0e2d7e394794125ec7e3096ed757b1c97ee2e5a158
-SIZE (WMProxyPer-0.9.1.tar.gz) = 13786
diff --git a/misc/wmproxyper/pkg-descr b/misc/wmproxyper/pkg-descr
deleted file mode 100644
index 1de0f7e2db3b..000000000000
--- a/misc/wmproxyper/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-WMProxyPer is a Window Maker dockapp that follows the logfile from
-proxyper, the Distributed.net Personal Keyproxy, and displays it's
-current status.
-
-WWW: http://home.student.utwente.nl/w.k.havinga/wmproxyper/
d by: portmgr blanket Convert Python ports to FLAVORS. 2017-11-30T15:50:30+00:00 Mathieu Arnold mat@FreeBSD.org 2017-11-30T15:50:30+00:00 551be3c7231225ed9c26479af2b8914fb2ef0ea8 Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464
  Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g. 2016-04-01T14:00:51+00:00 Mathieu Arnold mat@FreeBSD.org 2016-04-01T14:00:51+00:00 4e1b79a0a61f4973df8b4b0864d22086c769e219 With hat: portmgr Sponsored by: Absolight
With hat:	portmgr
Sponsored by:	Absolight
- Convert ports of devel/ to USES=python 2014-10-20T16:04:12+00:00 Marcus von Appen mva@FreeBSD.org 2014-10-20T16:04:12+00:00 89e07f4a18111a1fde92e57751221f851705f6b8 Approved by: portmgr (implicit)
Approved by:	portmgr (implicit)