aboutsummaryrefslogtreecommitdiff
path: root/emulators/vmw
Commit message (Collapse)AuthorAgeFilesLines
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* - use binutils from portsDirk Meyer2020-05-221-1/+3
| | | | | | | Reported by: Ed Maste Notes: svn path=/head/; revision=536186
* Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.Tijl Coosemans2015-10-102-2/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were FreeBSD specific aliases for libiconv(), libiconv_open() and libiconv_close() that are now also provided by libc which complicates writing configure tests that work correctly when both libc iconv and libiconv are available. Also, because the libiconv iconv.h header redefines iconv* to libiconv* correct use of the header implies that the aliases aren't used. The following ports needed fixes because there was something wrong with the way they tried to detect or use iconv: audio/deadbeef: Remove LIBICONV_PLUG from a source file. It's a compile-time option and should not be set in source code. comms/hidapi: Use standard AM_ICONV configure macro to look for iconv. deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG. deskutils/ljclive: Override configure test for iconv. deskutils/owncloudclient: Add USES=iconv and patch test for iconv. devel/aegis: Bump PORTREVISION because it no longer uses libiconv. devel/libexplain: Add USES=iconv and override test for iconv. devel/sdl20: Override configure test for iconv. emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include <iconv.h> instead of <sys/iconv.h>. irc/scrollz: Override configure test for iconv. japanese/chasen-base: Override configure test for iconv and patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. japanses/eb: Patch configure test for iconv. japanses/eblook: Override configure test for iconv. java/jikes: Override configure test for iconv. multimedia/transcode: Bump PORTREVISION because only one plugin links with libiconv now. net/c3270: Override configure test for iconv. net/samba4*: Bump PORTREVISION because it no longer uses libiconv. The configure script will always add -liconv to the linker flags when it happens to be installed which would be wrong but later on binaries are linked with -Wl,--as-needed and the linker discards -liconv because it finds iconv*() functions in libc now and no longer in libiconv. net-mgmt/icinga-*: Remove dependency on iconv. net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net/asterisk11: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net-p2p/transmission-*: Override configure test for iconv. www/htmlcxx: Override configure test for iconv. www/httrack: Override configure test for iconv. www/xapian-omega: Override configure test for iconv. x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv. x11/x3270: Override configure test for iconv. x11-wm/jwm: Override configure test for iconv. PR: 202838 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=398996
* - fix iconv on FreeBSD-10Dirk Meyer2014-08-032-8/+41
| | | | | | | | - fix build when CFLAGS is set in /etc/make.conf - support build on amd64 when lib32 is present Notes: svn path=/head/; revision=363926
* - restore verboseDirk Meyer2014-08-031-1/+1
| | | | Notes: svn path=/head/; revision=363917
* Remove empty post-patch.Adam Weinberger2014-07-301-3/+0
| | | | Notes: svn path=/head/; revision=363425
* Fix build without gcc.Adam Weinberger2014-07-302-8/+25
| | | | Notes: svn path=/head/; revision=363423
* Remove trailing whitespaces from category emulatorsEmanuel Haupt2014-02-211-1/+1
| | | | Notes: svn path=/head/; revision=345407
* According to the Porter's Handbook (5.12.2.3.) default options must be added toEmanuel Haupt2014-02-101-0/+2
| | | | | | | | | | | | | | OPTIONS_DEFINE. This policy has been implemented only recently that's why we have many ports violating this policy. This patch adds the default options specified in the Porter's Handbook to OPTIONS_DEFINE where they are being used. Ports maintained by gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded. Approved by: portmgr (bapt) Notes: svn path=/head/; revision=343634
* - use STAGEDIRDirk Meyer2013-10-271-6/+7
| | | | | | | - use OPTIONS_DEFINE Notes: svn path=/head/; revision=331810
* - fix misplaced NO_STAGE in slaveports and ifdefsDirk Meyer2013-09-211-1/+2
| | | | Notes: svn path=/head/; revision=327804
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | emulators) Notes: svn path=/head/; revision=327721
* - 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: bapt, kwm Notes: svn path=/head/; revision=316654
* - cleanup commentsDirk Meyer2012-10-131-5/+0
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=305832
* - update MASTER_SITES and WWWDirk Meyer2011-08-062-2/+2
| | | | Notes: svn path=/head/; revision=278989
* = Drop MD5 supportMartin Wilke2011-07-021-1/+0
| | | | Notes: svn path=/head/; revision=276915
* - add LICENSE:Dirk Meyer2009-02-151-0/+2
| | | | Notes: svn path=/head/; revision=228419
* - cleanup FreeBSD 5.xDirk Meyer2008-06-011-7/+1
| | | | Notes: svn path=/head/; revision=214138
* - mark IGNORE on FreeBSD < 6.0Dirk Meyer2007-01-141-3/+9
| | | | Notes: svn path=/head/; revision=182350
* - set ONLY_FOR_ARCHSDirk Meyer2006-12-011-0/+1
| | | | Notes: svn path=/head/; revision=178458
* VMware Command Line ToolsDirk Meyer2006-11-213-0/+61
On this page, you'll find command line programs which can replace and/or supplement the VMware's official VMwareTools. These programs use VMware's undocumented and therefore not officially supported feature to communicate with VMware (see VMware Backdoor I/O Port). Information on these functions have come entirely from my personal research and quite a few contributions by fellow VMware users. These programs are intended partly as illustrative examples of how to use the VMware backdoor function and I have cut many corners writing them. * vmw: generic backdoor access program * vmshrink: virtual disk shrink program * vmftp: host-guest file transfer program WWW: http://chitchat.at.infoseek.co.jp/vmware/vmtools.html Notes: svn path=/head/; revision=177727