aboutsummaryrefslogtreecommitdiff
path: root/net/iet
Commit message (Collapse)AuthorAgeFilesLines
* Conver to @sample keywordBaptiste Daroussin2016-04-101-12/+4
| | | | Notes: svn path=/head/; revision=412904
* 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
* Remove OSVERSION checks that do not make sense any more.Mathieu Arnold2015-04-031-7/+1
| | | | | | | | | | | | | For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true, as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107). Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when it is always needed, I renamed it, in one case, I merged two patches. Differential Revision: https://reviews.freebsd.org/D2209 Notes: svn path=/head/; revision=383107
* Add a new patch for iet(4) after sendfile refactor.Xin LI2015-02-132-1/+15
| | | | | | | This would fix build for -CURRENT. Notes: svn path=/head/; revision=378946
* Cleanup plistAntoine Brodin2014-11-221-3/+1
| | | | Notes: svn path=/head/; revision=373063
* s/soo_ioctl/fo_ioctl/. The former should not be called directly.Xin LI2014-10-302-1/+21
| | | | Notes: svn path=/head/; revision=371768
* Fix build on -CURRENT.Xin LI2014-07-242-1/+13
| | | | Notes: svn path=/head/; revision=362765
* Stageify.Xin LI2014-05-212-23/+14
| | | | Notes: svn path=/head/; revision=354716
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | net) Notes: svn path=/head/; revision=327755
* SSP support has been added to ports with WITH_SSP for i386 and amd64Bryan Drewery2013-09-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Unbreak on recent -CURRENT.Xin LI2013-06-192-6/+38
| | | | Notes: svn path=/head/; revision=321227
* Add a workaround for r231949 which fixes the problem of uio_resid beingXin LI2013-01-252-1/+223
| | | | | | | | truncated into int but introduced an KPI/KBI change. While I'm there, also add code to support the now MPSAFE VFS. Notes: svn path=/head/; revision=310988
* - re-order, include bsd.port.pre.mk so SRC_BASE is defined before referencedJason Helfman2012-05-221-2/+2
| | | | | | | | | PR: ports/165994 Submitted by: 4721@hushmail.com Approved by: maintainer, delphij Notes: svn path=/head/; revision=297154
* 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
* Unbreak after __FreeBSD_version 900041.Xin LI2011-09-091-0/+25
| | | | Notes: svn path=/head/; revision=281538
* Resolve conflict against b.p.m's CONF_* variables.Xin LI2011-05-181-5/+4
| | | | | | | | Submitted by: Chris Rees <utisoft gmail.com> PR: ports/157157 Notes: svn path=/head/; revision=274281
* Minor change to make the code match Linux's behavior.Xin LI2011-04-012-1/+12
| | | | | | | Submitted by: Shivaram Upadhyayula <shivaram.u quadstor.com> Notes: svn path=/head/; revision=272095
* Explicitly specify where to find the kernel module. /usr/local/modulesXin LI2011-03-012-2/+2
| | | | | | | | | is not a standard place where the kernel normally lookup for modules. Noticed by: dwhite Notes: svn path=/head/; revision=270089
* Add a patch to make this build on -CURRENT and mark it BROEKN on < 8.0-RELEASE.Xin LI2011-02-282-1/+52
| | | | Notes: svn path=/head/; revision=270017
* Correct the directory that we intend to remove. (%%KMODDIR%% expands toXin LI2011-02-282-2/+2
| | | | | | | | | a full path while plist expects a relative path). Reported by: exp-run (via linimon) Notes: svn path=/head/; revision=269956
* Fix several problems with the rc.d script based on dougb@'s comments:Xin LI2011-02-272-6/+13
| | | | | | | | | | | - Set a default value (NO) for _enable; - Use REQUIRE: LOGIN since this is not required to start that early; - Make the style more like the standard script. Submitted by: dougb Notes: svn path=/head/; revision=269870
* iSCSI Enterprise Target, based on a original port by QuadStor Systems [1].Xin LI2011-02-265-0/+106
iSCSI Enterprise Target is a simple open source iSCSI target with professional features, that works well in enterprise environments under real workloads, and is scalable and versatile enough to meet the challenge of future storage needs and developments. Part of additional work was sponsored by iXsystems, Inc. [1] http://www.quadstor.com/tech-articles/116-iscsi-enterprise-target-iet-on-freebsd.html Notes: svn path=/head/; revision=269743