aboutsummaryrefslogtreecommitdiff
path: root/misc/dahdi-kmod
Commit message (Collapse)AuthorAgeFilesLines
* misc/dahdi-kmod: mark BROKEN (does not compile)Dmitry Marakasov2021-05-161-0/+2
| | | | Approved by: portmgr blanket
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-3/+1
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* misc/dahdi-kmod: enable on powerpc64Piotr Kubaj2021-01-131-1/+1
| | | | | | | MFH: 2021Q1 Notes: svn path=/head/; revision=561413
* Sort ARCHS. While here, pet portlint.Mark Linimon2017-06-271-2/+3
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=444437
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Unbreak on -CURRENT (taskqueue_enqueue_fast(9) removed).Max Khon2016-03-111-4/+15
| | | | Notes: svn path=/head/; revision=410808
* When building with FAST_DEPEND, don't use -MP as the port has a 'version.h::'Bryan Drewery2015-12-011-1/+1
| | | | | | | dependency which conflicts with the 'version.h:' dependency that -MP generates. Notes: svn path=/head/; revision=402718
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Give kernel module a few seconds to initialize hardware beforeMax Khon2015-03-212-1/+2
| | | | | | | | | | calling dahdi_cfg. PR: 188780 Submitted by: Dan Lukes Notes: svn path=/head/; revision=381820
* Fix build with clang 3.6.Max Khon2015-03-213-5/+49
| | | | Notes: svn path=/head/; revision=381815
* Unbreak on -CURRENT (ignore unused command line arguments for clang).Max Khon2015-01-281-0/+18
| | | | Notes: svn path=/head/; revision=378028
* Allow staging as a regular userAntoine Brodin2014-09-281-1/+1
| | | | Notes: svn path=/head/; revision=369451
* SYSCTL_ROOT_NODE exists only on FreeBSD >= 1100024Max Khon2014-09-131-4/+7
| | | | Notes: svn path=/head/; revision=368086
* Unbreak on -CURRENT.Max Khon2014-08-311-0/+11
| | | | Notes: svn path=/head/; revision=366805
* Unbreak on FreeBSD 11.Max Khon2014-06-251-0/+17
| | | | Notes: svn path=/head/; revision=359216
* Convert all :U to :tu and :L to :tlBaptiste Daroussin2014-05-051-1/+1
| | | | | | | | | | | | | | | | | Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr Notes: svn path=/head/; revision=352986
* Unbreak on -CURRENT:Max Khon2014-02-091-0/+49
| | | | | | | | - M_DONTWAIT -> M_NOWAIT - Don't rely on namespace pollution and #include <sys/mbuf.h> explicitly Notes: svn path=/head/; revision=343432
* - Stage supportRene Ladan2014-01-262-8/+9
| | | | | | | | | | | - Remove obsolete NO_PACKAGE - Remove IGNORE check for obsolete versions of FreeBSD - Fix typo introduced in converting this port to USES=kmod Approved by: portmgr (infrastructure blanket) Notes: svn path=/head/; revision=341256
* Unbreak FreeBSD 10 (no D_PSEUDO) and clang build.Max Khon2013-11-183-0/+82
| | | | Notes: svn path=/head/; revision=334174
* Convert to USES=kmod, which removes duplicated code and ensures that allRene Ladan2013-11-092-15/+6
| | | | | | | | | | | | | | | | required steps are followed. There are no user-visible changes. The exception is multimedia/ptx-kmod, which now installs the kernel module into /boot/modules instead of ${PREFIX}/libexec/${PORTNAME}, this was something USES=kmod cannot handle. PR: ports/183625 Submitted by: myself Approved by: portmgr (bdrewery) Exp-run by: bdrewery Notes: svn path=/head/; revision=333329
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | misc) Notes: svn path=/head/; revision=327745
* SSP support has been added to ports with WITH_SSP for i386 and amd64Bryan Drewery2013-09-201-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on FreeBSD 10, and amd64 on earlier versions. SSP_UNSAFE is added to disable in a port if it fails to build, but this should only be used in rare circumstances such as kernel modules. Otherwise, the port may just be failing due to lack of respecting LDFLAGS. On FreeBSD 10, this uses an ldscript in /usr/lib/libc.so to pull in libssp_nonshared.a to address issues linking on i386 [1]. On earlier FreeBSD versions the WITH_SSP knob will add -lssp_nonshared to LDFLAGS on i386. This is not needed on amd64. However, several hundred ports do not currently respect LDFLAGS, so this support is disabled currently as it causes build failures if a dependency is looking for the stack_chk symbols. Many thanks to jlh@ for this as he had many years of patience in getting all of the necessary pieces [1][2] in. [1] http://svnweb.freebsd.org/base/head/lib/libc/libc.ldscript?revision=251668&view=markup PR: ports/138228 [2] Submitted by: jlh (bsd.ssp.mk based on) Reviewed by: bapt With hat: portmgr exp-runs done: 37 over a month on 91i386,91amd64,10i386,10amd64 Notes: svn path=/head/; revision=327697
* Fix CONFLICTS definition.Max Khon2012-08-291-3/+1
| | | | Notes: svn path=/head/; revision=303324
* This port conflicts with dahdi-kmod26-*.Max Khon2012-08-291-0/+2
| | | | Notes: svn path=/head/; revision=303323
* Fix portlint error: use a tab (not space) after a variable nameMax Khon2012-08-291-1/+1
| | | | Notes: svn path=/head/; revision=303322
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Fix wcte12xp unloading (implement flush_workqueue)Max Khon2012-05-303-2/+95
| | | | | | | | | - Fix nethdlc -> bchan/dchan reconfiguration (unlock chan mtx before destroying iface) - Bump PORTREVISION Notes: svn path=/head/; revision=297750
* - Fix build on FreeBSD 9 and later where "bool" is defined in <sys/types.h>Max Khon2012-02-232-1/+21
| | | | | | | - Bump PORTREVISION Notes: svn path=/head/; revision=292102
* - Fix latency reconfiguration on 5th gen wct4xxp cards:Max Khon2012-01-302-1/+27
| | | | | | | | | FILTER_SCHEDULE_THREAD does not work on FreeBSD as described -- it is not actually a bit flag, so should not be used with FILTER_HANDLED - Bump port version to 2.4.0rc5_3 Notes: svn path=/head/; revision=290121
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. Notes: svn path=/head/; revision=289156
* - increase the number of buffers for nethdlc because receiver is now runMax Khon2011-11-072-48/+69
| | | | | | | | in a taskqueue - return ENOBUFS when there are not enough output buffers on nethdlc send Notes: svn path=/head/; revision=285258
* Implement nethdlc with Cisco HDLC encapsulation: when a span is configuredMax Khon2011-11-072-1/+917
| | | | | | | in nethdlc mode ngX network interface is created. Notes: svn path=/head/; revision=285244
* Use the canonical way to test for the presence of FreeBSD src files.Mark Linimon2011-08-021-7/+4
| | | | | | | Approved by: maintainer Notes: svn path=/head/; revision=278792
* Remove painful examples of foo="", with particular prejudice againstDoug Barton2011-05-151-1/+0
| | | | | | | | | | | | | | | | | | constructions that parse out to [ -z "$foo" ] && foo="" These are bad examples that get copied and pasted into new code, so the hope is that with less bad examples there will be less need for me to bring this up in review. In a few of these files all that were changed were comments so that next time I search for these patterns I won't trip on the file for no reason. In a few places, add $FreeBSD$ No functional changes, so no PORTREVISION bumps Notes: svn path=/head/; revision=274133
* Split dahdi port into two parts:Max Khon2011-04-184-72/+25
| | | | | | | | | | | - dahdi - userland libraries and utilities - dahdi-kmod - kernel modules dahdi port can be packaged and this allows asterisk package (that depends on dahdi) to be built as well. Notes: svn path=/head/; revision=272887
* - Get Rid MD5 supportMartin Wilke2011-03-191-8/+0
| | | | Notes: svn path=/head/; revision=271305
* Set group ownership of dahdi device nodes to "dahdi" group.Max Khon2010-11-072-1/+8
| | | | Notes: svn path=/head/; revision=264200
* Add patch to define __BIG_ENDIAN and __LITTLE_ENDIAN properly.Max Khon2010-10-052-1/+15
| | | | | | | May fix wctdm on sparc64. Notes: svn path=/head/; revision=262448
* Update to 2.4.0-rc5.Max Khon2010-09-046-92/+169
| | | | | | | | | | | | | Major changes are: - it is no longer possible to unload drivers in use [1] - wctdm params patch is now in upstream - NO_FETCH patch and ADDITIONAL_DRIVERS patches are no longer required PR: 150175 [1] Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=260533
* Fix wctdm driver parameters declaration.Max Khon2010-09-012-1/+37
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=260371
* Do not fetch during port build: fetch firmware binaries during port fetch stage.Max Khon2010-09-013-3/+58
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=260334
* Fix the breakage introduced with the latest commit: USE_GMAKE can not be ↵Max Khon2010-09-011-1/+1
| | | | | | | | | used with this port. Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=260322
* Fix portlint warnings.Max Khon2010-08-311-2/+2
| | | | Notes: svn path=/head/; revision=260304
* Update to 2.4.0-rc4. Most notable changes are:Max Khon2010-08-317-4/+813
| | | | | | | | | | - OSLEC echo canceller - experimental wcb1xxp (zaphfc) port for CCD HFC-S single-port PCI ISDN cards Sponsored by: The FreeBSD Foundation (this and all previous commits to this port) Notes: svn path=/head/; revision=260303
* - Update to 2.4.0rc3Max Khon2010-08-313-5/+9
| | | | | | | | - Run "fxotune -s" during startup if fxotune.conf is present in the default location ($PREFIX/etc/fxotune.conf). Notes: svn path=/head/; revision=260251
* Update to 2.4.0-rc2.Max Khon2010-08-265-20/+190
| | | | | | | | | | | | | Most notable changes are: - wctdm, wcte11xp, wcte12xp drivers are no longer experimental - outgoing FXO calls now work properly - experimental wctc4xxp support - experimental sparc64 support Add a bchan patch for zaphfc driver. Notes: svn path=/head/; revision=259992
* Add OS version check.Max Khon2010-06-141-0/+4
| | | | Notes: svn path=/head/; revision=256532
* Update to 2.3.0-rc2.Max Khon2010-06-016-71/+38
| | | | | | | | | | | | | | | | | | Major changes are: - wcfxo driver (X100P single-port FXO) - hx8 firmware driver (hybrid 8-port FXO/FXS/BRI) - all driver parameters are now exported as sysctl's - experimental drivers (source-code ported but not tested on real HW yet): - wctdm (Digium TDM400P: 4-port FXO/FXS) - wcte11xp (Digium TE110P: PCI single-port T1/E1/J1) - wcte12xp (Digium TE120P/TE121/TE122: PCI/PCI-E single-port T1/E1/J1) - vpmadt032 (HW echo canceler) Experimental drivers are available as a port option and are not enabled by default. Notes: svn path=/head/; revision=255455
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605