From owner-svn-ports-all@freebsd.org Sat Jun 6 14:24:23 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id F157633537C; Sat, 6 Jun 2020 14:24:23 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49fMGH6CYKz42tW; Sat, 6 Jun 2020 14:24:23 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D046A23906; Sat, 6 Jun 2020 14:24:23 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 056EONZL036293; Sat, 6 Jun 2020 14:24:23 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 056EONKJ036289; Sat, 6 Jun 2020 14:24:23 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <202006061424.056EONKJ036289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Sat, 6 Jun 2020 14:24:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r538095 - in head/comms: . opencbm-plugin-xa1541 X-SVN-Group: ports-head X-SVN-Commit-Author: dinoex X-SVN-Commit-Paths: in head/comms: . opencbm-plugin-xa1541 X-SVN-Commit-Revision: 538095 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Jun 2020 14:24:24 -0000 Author: dinoex Date: Sat Jun 6 14:24:22 2020 New Revision: 538095 URL: https://svnweb.freebsd.org/changeset/ports/538095 Log: OpenCBM plugin for parallel-port cables The OpenCBM package contains user space support programs and development libraries to control and use CBM serial IEC/IEEE-488 bus devices as used by most Commodore (CBM) 8-bit machines. This port contains the xa1541 plugin for parallel-port cables. WWW: http://opencbm.sourceforge.net/ PR: 246784 Submitted by: Felix Palmen Added: head/comms/opencbm-plugin-xa1541/ head/comms/opencbm-plugin-xa1541/Makefile (contents, props changed) head/comms/opencbm-plugin-xa1541/pkg-descr (contents, props changed) head/comms/opencbm-plugin-xa1541/pkg-plist (contents, props changed) Modified: head/comms/Makefile Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Sat Jun 6 14:21:38 2020 (r538094) +++ head/comms/Makefile Sat Jun 6 14:24:22 2020 (r538095) @@ -109,6 +109,7 @@ SUBDIR += obexapp SUBDIR += opencbm SUBDIR += opencbm-kmod + SUBDIR += opencbm-plugin-xa1541 SUBDIR += openobex SUBDIR += openzwave SUBDIR += openzwave-devel Added: head/comms/opencbm-plugin-xa1541/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/opencbm-plugin-xa1541/Makefile Sat Jun 6 14:24:22 2020 (r538095) @@ -0,0 +1,36 @@ +# Created by: Felix Palmen +# $FreeBSD$ + +PORTNAME= opencbm-plugin-xa1541 +PORTVERSION= ${OCBM_VERSION} +CATEGORIES= comms archivers + +PATCHFILES= 12ef17d4cf78903c9c52d7a348a816424d549b89.diff \ + ca4c06e7430caf3b2296d4e1e00051fff015fc53.diff + +MAINTAINER= felix@palmen-it.de +COMMENT= OpenCBM plugin for parallel-port cables + +LICENSE= GPLv2 + +BUILD_DEPENDS= cc65:devel/cc65 +RUN_DEPENDS= opencbm=${PORTVERSION}:comms/opencbm \ + opencbm-kmod=${PORTVERSION}:comms/opencbm-kmod + +USES= gmake +USE_LDCONFIG= yes + +MAKE_ARGS= CC=cc SUBDIRS_PLUGIN_XA1541=opencbm/lib/plugin/xa1541 +MAKEFILE= LINUX/Makefile +MAKE_JOBS_UNSAFE= yes +ALL_TARGET= plugin-xa1541 +INSTALL_TARGET= install-plugin-xa1541 + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PLUGINBASENAME}xa1541.so.${OCBM_LIBVERSION} + @${RM} ${STAGEDIR}${PREFIX}/etc/opencbm.conf.d/00opencbm.conf + @${RM} ${STAGEDIR}${PREFIX}/etc/opencbm.conf + +.include "../opencbm/Makefile.inc" + +.include Added: head/comms/opencbm-plugin-xa1541/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/opencbm-plugin-xa1541/pkg-descr Sat Jun 6 14:24:22 2020 (r538095) @@ -0,0 +1,9 @@ +OpenCBM plugin for parallel-port cables + +The OpenCBM package contains user space support programs and development +libraries to control and use CBM serial IEC/IEEE-488 bus devices as used by +most Commodore (CBM) 8-bit machines. + +This port contains the xa1541 plugin for parallel-port cables. + +WWW: http://opencbm.sourceforge.net/ Added: head/comms/opencbm-plugin-xa1541/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/opencbm-plugin-xa1541/pkg-plist Sat Jun 6 14:24:22 2020 (r538095) @@ -0,0 +1,5 @@ +etc/opencbm.conf.d/10xa1541.conf +lib/opencbm/plugin/libopencbm-xa1541.a +lib/opencbm/plugin/libopencbm-xa1541.so +lib/opencbm/plugin/libopencbm-xa1541.so.0 +lib/opencbm/plugin/libopencbm-xa1541.so.0.4.99.99