aboutsummaryrefslogtreecommitdiff
path: root/net/minisapserver/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Convert a bunch of USE_XZ to USES=tar:xz.Adam Weinberger2014-07-291-2/+1
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=363392
* Remove quotes that surrounded entire _DESC strings.Adam Weinberger2014-07-231-1/+1
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=362713
* Enable stageBaptiste Daroussin2013-10-201-16/+6
| | | | Notes: svn path=/head/; revision=331042
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | net) Notes: svn path=/head/; revision=327755
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising Notes: svn path=/head/; revision=316662
* convert to new options frameworkBaptiste Daroussin2012-05-301-5/+4
| | | | Notes: svn path=/head/; revision=297807
* - update to 0.3.8Baptiste Daroussin2012-04-101-1/+1
| | | | Notes: svn path=/head/; revision=294467
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-1/+1
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* - update to 0.3.7Baptiste Daroussin2011-07-121-12/+8
| | | | | | | | | - use xz distfile - add license - remove useless gmake dependency Notes: svn path=/head/; revision=277580
* - Mark BROKEN to 6.x, does not compile.Sylvio Cesar Teixeira2010-06-021-0/+4
| | | | Notes: svn path=/head/; revision=255564
* - Update to 0.3.6Sylvio Cesar Teixeira2010-05-301-2/+1
| | | | Notes: svn path=/head/; revision=255325
* Properly utilize USE_RC_SUBRDoug Barton2010-03-271-9/+7
| | | | | | | | | | | Make pkg-message dynamic PR: ports/143141 Submitted by: Sevan Janiyan <venture37@geeklan.co.uk> Approved by: maintainer timeout Notes: svn path=/head/; revision=251559
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptRong-En Fan2007-07-231-1/+0
| | | | | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run Notes: svn path=/head/; revision=196111
* Update to 0.3.4Michael Johnson2007-06-291-2/+2
| | | | Notes: svn path=/head/; revision=194471
* - Transfer to multimedia@Michael Johnson2006-06-101-1/+1
| | | | Notes: svn path=/head/; revision=165047
* Remove USE_REINPLACE from all categories starting with NEdwin Groothuis2006-05-111-1/+0
| | | | Notes: svn path=/head/; revision=162141
* Now that new style rc.d scripts are being run as part of theDoug Barton2006-01-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | base rcorder, hard coded variable values in these scripts are overriding the values in /etc/rc.conf[.local] (due to the way that variables from the latter are read at boot time). Therefore, change the boot scripts to set default values only if the variable is unset in /etc/rc.conf[.local]. This will allow the service to start at boot time if it's been enabled as the user would expect. This change will be a noop for users who have systems that have not yet been upgraded to the new rc.d code in the base. In many cases there are other variables in the scripts that should get similar treatment, however I did not change anything other than the _enable lines. I'll leave the rest up to the maintainers to do as they see fit. Bump PORTREVISION to make sure that users and packages pick up this change. Notes: svn path=/head/; revision=152963
* - Update to 0.3.2Michael Johnson2005-10-171-1/+1
| | | | | | | Reported by: edwin port version check Notes: svn path=/head/; revision=145696
* - Update to 0.3.1 [1]Michael Johnson2005-10-051-4/+8
| | | | | | | | | - Make OPTIONS really work Noticed by: ports version checker thing [1] Notes: svn path=/head/; revision=144253
* - Update to 0.3.0Michael Johnson2005-07-111-9/+7
| | | | Notes: svn path=/head/; revision=138884
* At Kris's request, back out the MACHINE_ARCH spelling correction untilDavid E. O'Brien2005-04-121-1/+1
| | | | | | | after 5.4-RELEASE. Notes: svn path=/head/; revision=133116
* Assist getting more ports working on AMD64 by obeying theDavid E. O'Brien2005-04-111-1/+1
| | | | | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'. Notes: svn path=/head/; revision=132992
* Change email to new FreeBSD.org addressMichael Johnson2004-10-291-1/+1
| | | | | | | Approved by:adamw (mentor) Notes: svn path=/head/; revision=120470
* Update to 0.2.4Kirill Ponomarev2004-07-281-2/+1
| | | | | | | | PR: ports/69684 Submitted by: maintainer Notes: svn path=/head/; revision=114913
* Add option for SLP via openslpVolker Stolz2004-07-131-0/+10
| | | | | | | | PR: ports/68935 Submitted by: Michael Johnson (maintainer) Notes: svn path=/head/; revision=113584
* - Use USE_RC_SUBRKirill Ponomarev2004-06-071-1/+1
| | | | | | | | PR: ports/67659 Submitted by: maintainer Notes: svn path=/head/; revision=110994
* Add minisapserver 0.2.3, SAP and SLP announcement for the VLC MediaKirill Ponomarev2004-05-251-0/+50
Player. PR: ports/67162 Submitted by: michael johnson <ahze@ahze.net> Notes: svn path=/head/; revision=109949