aboutsummaryrefslogtreecommitdiff
path: root/lang/siod
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Declare the printf-like function printflike and fix theMikhail Teterin2021-02-221-29/+63
| | | | | | | type mismatch warnings raised by compiler over it. Notes: svn path=/head/; revision=566340
* Though we were compiling cleanly with clang, using gcc8 pickedMikhail Teterin2021-02-224-126/+297
| | | | | | | | | | | | | | | | | | up several nits, which might bite this port, when building on the platforms, where we still use gcc. Also, when using port-installed gcc8, ${LOCALBASE}/include is implicitly used to search for headers BEFORE /usr/include. This may cause gdbm-provided ndbm.h to be picked up instead of the base version, and we're not ready for that. The already-built packages should be unaffected, hence, still no PORTREVISION bump... Sponsored By: United Marsupials Notes: svn path=/head/; revision=566318
* Enable the acct-module -- by porting it from the old utmp.hMikhail Teterin2021-02-194-10/+280
| | | | | | | | | | | | | functions (not present since FreeBSD-9) to utmpx.h. Change the recently-enabled statfs-module to only report fsid, if provided (which it is not for non-root users) -- and in the format reported by mount(8). Sponsored by: United Marsupials Notes: svn path=/head/; revision=566018
* Stop pretending, STATFS is an option -- it is always built and installed.Mikhail Teterin2021-02-181-2/+1
| | | | Notes: svn path=/head/; revision=565876
* Fix the just-updated patch file...Mikhail Teterin2021-02-181-2/+2
| | | | Notes: svn path=/head/; revision=565875
* Allow the argument given to lstatfs() to be a file -- in which case,Mikhail Teterin2021-02-182-11/+15
| | | | | | | | | | | | | | | | | | | we'll call fstatfs(2) instead of statfs(2). That is, for most people these too lines will print the same things: (print (statfs '/var)) (print (statfs (fopen '/var/log/messages))) Add siod.scm to the list of those with MS-DOS line-endings. There are no packages for 3.6.2, so not updating PORTREVISION yet... Sponsored by: United Marsupials Notes: svn path=/head/; revision=565873
* Add decoding of filesystem flags to the statfs-module.Mikhail Teterin2021-02-171-8/+65
| | | | | | | | | A BSD-only feature, currently. Sponsored by: United Marsupials Notes: svn path=/head/; revision=565806
* Add support for cpu_usage_limits function -- using {get,set}rlimit(),Mikhail Teterin2021-02-171-107/+131
| | | | | | | | | | which was, until now, believed to be only available on SunOS and OSF. Sponsored by: United Marsupials Notes: svn path=/head/; revision=565788
* Add space after "@comment" in manual PLIST_SUB setting.Mikhail Teterin2021-02-171-1/+1
| | | | Notes: svn path=/head/; revision=565529
* Fix handling of %%SQL_ORACLE%% on non-i386 platforms -- settingsMikhail Teterin2021-02-173-2/+107
| | | | | | | | | | | OPTIONS_SUB is not enough for arch-specific options (seems like a bug). Add statfs functionality -- BSD has all the necessary APIs. Sponsored by: United Marsupials Notes: svn path=/head/; revision=565528
* Add the (optional) support for the Oracle-module. Untested beyondMikhail Teterin2021-02-174-0/+307
| | | | | | | | | | | | | | "it loads", this is only available on i386 -- because the port of databases/oracle8-client is i386 only. Worse, because the oracle8-client only installs a static library -- hacked from Oracle Linux binary -- further (minor) hackery is required to link the shared sql_oracle.so with it... Sponsored by: United Marsupials Notes: svn path=/head/; revision=565518
* When correcting for non-default prefix, include man-pages too.Mikhail Teterin2021-02-171-1/+2
| | | | | | | Sponsored by: United Marsupials Notes: svn path=/head/; revision=565480
* Remove the stray -Werror. Whether or not to tolerate warningsMikhail Teterin2021-02-171-1/+0
| | | | | | | | | shall depend on the user's settings. Sponsored by: United Marsupials Notes: svn path=/head/; revision=565479
* List ${PREFIX}/lib in addition to ${PREFIX}/lib/siod for ldconfig.Mikhail Teterin2021-02-172-4/+11
| | | | | | | | | | Add the DOCS option -- and deal with the siod.html file depending on the selection. Sponsored by: United Marsupials Notes: svn path=/head/; revision=565478
* Upgrade from circa 2000 to circa 2014 code. Unfortunately, upstreamMikhail Teterin2021-02-1720-222/+4302
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | are somewhat sloppy about releases -- and do not publish versioned files. I'm calling this one 3.6.2, because that's the last version found in the change log. The new build uses bsd.lib.mk and bsd.prog.mk -- in order to: a) build shared libraries cleanly; b) stand a chance of working on the hardware platforms, where the author never tried it. The large patches provide for warning-free compiles with WARNS=7 -- tested on FreeBSD-11/amd64. We now take care to link with libgnuregex.so -- whether from base or provided by devel/libgnuregex instead of using the bundled (ancient) version of Henry Spencer's library. Similarly, the port links with the base -lmd instead of compiling its own MD5-implementation. Additional new feature is options, which currently include: . Socket support -- this used to be built unconditionally and is still on by default. However, someone concerned about the "network daemon" security warning may want to to turn this off. . Regex module -- also on by default. But, because it may, depending on the OS version, drag in a dependency, it can be turned off. . NDBM -- a never-before built (not on FreeBSD) module allowing work with NDBM databases. On by default now, because it has no dependencies. . GD -- the graphics library. Never built before by this port, it remains off by default because it depends on graphics/gd (or ukrainian/gd). . SQL_SYBASE -- for interactions with Sybase (and MS-SQL) database servers. Depends on databases/freetds and therefor off by default. There is also sql_oracle module, which is not enabled (for now), because databases/oracle8-client is, unfortunately, i386-only. The peculiarity of installing siod.html into ${PREFIX}/lib/siod remains for now -- suggestions welcome. Sponsored by: United Marsupials Notes: svn path=/head/; revision=565477
* Mark as BROKEN on riscv64 similar to on aarch64.Mark Linimon2020-12-221-0/+1
| | | | Notes: svn path=/head/; revision=558882
* Mark these ports broken on aarch64Mikael Urankar2020-11-151-0/+1
| | | | | | | | Reported by: linimon Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=555218
* Set LLD_UNSAFE=yes that the port will continue to link with ld.bfdKirill Ponomarev2017-12-301-0/+1
| | | | | | | | | | | if /usr/bin/ld is lld, until the issue can be addressed. PR: 214864 Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=457651
* For ports that are marked BROKEN on armv6, and also fail to build onMark Linimon2017-11-301-0/+1
| | | | | | | | | | | | | armv7, mark them so. This is part two of a multipart commit to bring armv7 ports to parity with armv6. Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com -exp run Notes: svn path=/head/; revision=455167
* Mark some ports failing on armv6, for errors classified as "linker_error".Mark Linimon2017-05-271-0/+3
| | | | | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=441881
* - Fix trailing whitespace in pkg-descrs, categories [g-n]*Dmitry Marakasov2016-05-191-3/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415499
* Typos, whitespace and capitalization fixes (G-P).Jimmy Olgeni2015-09-201-1/+1
| | | | Notes: svn path=/head/; revision=397461
* 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
* Cleanup plistBaptiste Daroussin2014-10-271-1/+0
| | | | Notes: svn path=/head/; revision=371587
* - Add staging support, strip binariesPawel Pekala2014-06-016-42/+94
| | | | | | | | - Remove leading article from COMMENT - Use canonical names for patches Notes: svn path=/head/; revision=356122
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | lang) Notes: svn path=/head/; revision=327741
* Style: tab -> space.Eitan Adler2013-03-281-1/+1
| | | | | | | Most contributors copy an existing port when writing their own so reduce the number of bad examples in the tree. Notes: svn path=/head/; revision=315487
* - remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276987
* - Mark MAKE_JOBS_UNSAFEPav Lucistnik2009-11-221-0/+1
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=244657
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-1/+1
| | | | | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav) Notes: svn path=/head/; revision=211584
* Reset maintainership.Joseph Koshy2008-04-101-1/+1
| | | | Notes: svn path=/head/; revision=210992
* Use a better, more upto-date WWW URL.Joseph Koshy2006-07-121-1/+1
| | | | Notes: svn path=/head/; revision=167580
* Update WWW URL.Joseph Koshy2006-07-121-1/+1
| | | | Notes: svn path=/head/; revision=167577
* Add SA256 checksums.Joseph Koshy2005-12-131-0/+1
| | | | Notes: svn path=/head/; revision=151108
* Add SIZE information.Joseph Koshy2004-03-221-0/+1
| | | | | | | Submitted by: trevor Notes: svn path=/head/; revision=104893
* Make this port build on the AMD64 platform.Joseph Koshy2003-12-151-1/+1
| | | | | | | Submitted by: Tilman Linneweh <arved@FreeBSD.org> Notes: svn path=/head/; revision=95871
* Use the virtual category "scheme" (part ii)Edwin Groothuis2003-08-281-1/+1
| | | | | | | | | | | | Add the virtual category "scheme" to the maintained ports (except sxm). I guess no maintainer would deny this trivial change. PR: ports/56052 Submitted by: Kimura Fuyuki <fuyuki@nigredo.org> Notes: svn path=/head/; revision=87818
* Clear moonlight beckons.Ade Lovett2003-03-072-1/+1
| | | | | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti. Notes: svn path=/head/; revision=77045
* The two primary MASTER_SITES no longer host this distfile, and theKris Kennaway2002-05-041-3/+1
| | | | | | | | | | project homepage has also disappeared; remove them and leave only the MASTER_SITE_LOCAL fallback. Noticed by: bento Notes: svn path=/head/; revision=58554
* Update MASTER_SITES.Joseph Koshy2001-09-031-2/+3
| | | | Notes: svn path=/head/; revision=47349
* Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in theSatoshi Asami2000-06-161-1/+1
| | | | | | | | | | | | previous commit message to bsd.port.mk, which said INSTALL_SHLIBS. Boo.) Line up the rhs of variable assignments nicely. Remove a couple of extra whitespaces while I'm here. Suggested by: sobomax Notes: svn path=/head/; revision=29651
* Fix MASSIVE typo INSTALL_SHLIBS --> INSTALLS_SHLIBS, which occured because IMaxim Sobolev2000-06-161-1/+1
| | | | | | | | | | just cun'n'pasted the name from Satoshi's commit message without checking it. Hall of shame entry: sobomax Notes: svn path=/head/; revision=29628
* Third round of INSTALL_SHLIBS=yes fixes.Maxim Sobolev2000-06-152-6/+3
| | | | Notes: svn path=/head/; revision=29615
* Author uses a non-versioned distfile. Catch up.Kris Kennaway2000-04-291-1/+1
| | | | | | | Noticed by: bento Notes: svn path=/head/; revision=28101
* Convert to the PORTNAME - PORTVERSION syntax.David E. O'Brien2000-04-121-3/+3
| | | | Notes: svn path=/head/; revision=27458
* Update breakage caused by new visibility in -current of lchown(2)Joseph Koshy2000-01-061-5/+40
| | | | | | | in <sys/stat.h>. Notes: svn path=/head/; revision=24472
* Add a backup MASTER_SITE.Joseph Koshy1999-09-081-1/+2
| | | | Notes: svn path=/head/; revision=21388
* FreeBSD.ORG -> FreeBSD.orgMichael Haro1999-08-311-1/+1
| | | | | | | | Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru Notes: svn path=/head/; revision=21157
* Change Id->FreeBSD.David E. O'Brien1999-08-251-1/+1
| | | | Notes: svn path=/head/; revision=20952