aboutsummaryrefslogtreecommitdiff
path: root/sysutils/xcpustate
Commit message (Collapse)AuthorAgeFilesLines
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb) Notes: svn path=/head/; revision=351411
* Support STAGEDIR.Vanilla I. Shu2013-11-171-3/+1
| | | | Notes: svn path=/head/; revision=334050
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | sysutils) Notes: svn path=/head/; revision=327772
* New USES imake to handle the dependency on imake.Baptiste Daroussin2013-06-281-9/+4
| | | | | | | | | | | | | | | | | | | | | | | | | This uses accept 'env' as an argument for ports that do use their own or a different do-configure target. Modify xmkmf so it accept IMAKECPPFLAGS as default flags for imake and pass it to the called imake. Modify xorg-cf-files (the FreeBSD.cf configuration file) to allow CppCmd to be overwritten. Pass CppCmd CcCmd and CplusplusCmd via command line to each call of imake via IMAKECPPFLAGS Pass IMAKE_DEFINE with the above arguments to MAKE_ARGS so that imake spawned from Makefile generated by a previous imake also inherit the defined CppCmd CcCmd and CplusplusCmd. Make imake use devel/tradcpp all the time, so that when buidling with clang we do not depend on gcc's cpp. Make imake respect CC and CXX Make imake respect USE_GCC (if set imake will use gcc's cpp). While here: - Remove a couple of indefinite articles from comments - Trim headers - Fix a couple of ports to build with clang or use: USE_GCC=any - Fix a now useless redefinition of the extraction chain - Fix a typo in japanese/Wnn7-lib bundled imake template definitions - Fix some XMKMF execution with no env specified - Use options helper in x11/xautolock to simplify the port Notes: svn path=/head/; revision=321957
* - Fix typos in COMMENTCarlo Strub2012-08-021-1/+1
| | | | | | | | - Enforce the now clarified rules from the Porter's Handbook (e.g. no dots, no A/An, etc.) Notes: svn path=/head/; revision=301858
* - Fix MASTER_SITESDennis Herrmann2011-03-233-13/+11
| | | | | | | | | | | - Add WWW in pkg-descr - Utilize PLIST_FILES PR: ports/155801 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=271536
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Deprecate unmaintained ports from sysutils where upstream disapear and/orBaptiste Daroussin2011-03-131-0/+3
| | | | | | |  where no distfiles can be found and are not used by maintained ports Notes: svn path=/head/; revision=270785
* For ports maintained by ports@FreeBSD.org, remove names and/orDoug Barton2009-12-211-2/+0
| | | | | | | | | | | e-mail addresses from the pkg-descr file that could reasonably be mistaken for maintainer contact information in order to avoid confusion on the part of users looking for support. As a pleasant side effect this also avoids confusion and/or frustration for people who are no longer maintaining those ports. Notes: svn path=/head/; revision=246327
* Convert most of remaining ports that depend on xorg-libraries toDmitry Marakasov2009-06-091-1/+2
| | | | | | | | | | | | | | | | modular xorg. - supply corresponding USE_XORG for all imake-using ports that need it - USE_IMAKE no longer implies USE_XLIB in absence of USE_XORG - retire USE_X_PREFIX which is not really used anywhere after the above change - a few minor nits like whitespace and SF macro Tested by: 2 tinderbox runs by pav Approved by: portmgr (pav) Notes: svn path=/head/; revision=235506
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - Update to 2.9Martin Wilke2006-07-302-4/+4
| | | | | | | | | PR: ports/100999 Submitted by: Soeren Straarup Approved by: krion (mentor) Notes: svn path=/head/; revision=169147
* - Add SHA256Pav Lucistnik2005-11-251-0/+1
| | | | Notes: svn path=/head/; revision=149455
* . Update to 2.8.Greg Lewis2004-11-282-3/+3
| | | | | | | | PR: 74433 Submitted by: Andrej Zverev <az@inec.ru> Notes: svn path=/head/; revision=122648
* - There seems to be a race condition in the extract that causes a file to be ↵Pav Lucistnik2004-03-061-0/+11
| | | | | | | | | | | | | | rebuilt or not. You can trigger the failure by doing 'make extract; touch work/rstat.x; make all' The failure is because rpcgen rstat.x calls cpp -E which replaces an "#ifdef __STDC__" with "#ifdef 1" in the output, which is a gcc 3 syntax error. Submitted by: Samy Al Bahra (maintainer) Analyzed by: kris Notes: svn path=/head/; revision=103112
* Remove the bouncing BROKEN tag again, since this port is now building onKris Kennaway2004-02-161-7/+1
| | | | | | | | all my test machines. I suppose something in the base system or a dependency had broken it for a time, and this is now no longer the case. Notes: svn path=/head/; revision=101103
* BROKEN on 5.x: does not compile (not just on sparc64)Kris Kennaway2004-02-071-1/+1
| | | | Notes: svn path=/head/; revision=100303
* - Mark BROKEN on sparc64Pav Lucistnik2004-02-071-1/+7
| | | | | | | Requested by: kris (bento) Notes: svn path=/head/; revision=100234
* SIZEify.Trevor Johnson2004-01-291-0/+1
| | | | Notes: svn path=/head/; revision=99421
* - Unmark broken, it builds fine for me, submitter and on bentoPav Lucistnik2003-11-201-7/+1
| | | | | | | | Submitted by: Samy Al Bahra Approved by: adamw (mentor) Notes: svn path=/head/; revision=94443
* BROKEN on 5.x: does not compileKris Kennaway2003-10-151-1/+7
| | | | Notes: svn path=/head/; revision=91368
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75971
* o Rollback PORTCOMMENT modifications while this feature's implementationMario Sergio Fujikawa Ferreira2002-11-102-2/+1
| | | | | | | | | | | is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence) Notes: svn path=/head/; revision=69808
* Use PORTCOMMENT in the Makefile, and whack the pkg-comment.Adam Weinberger2002-11-062-1/+2
| | | | | | | Approved by: pat Notes: svn path=/head/; revision=69612
* To ports@freebsd.org.David E. O'Brien2002-06-081-1/+1
| | | | Notes: svn path=/head/; revision=60872
* Add $FreeBSD$, which help me in problem reports.David E. O'Brien2000-11-221-0/+1
| | | | Notes: svn path=/head/; revision=35328
* Corrrect whitespace introduced during PORTNAME conversion and portlintMichael Haro2000-04-221-1/+1
| | | | Notes: svn path=/head/; revision=27887
* Update with the new PORTNAME/PORTVERSION variableChris Piazza2000-04-091-2/+2
| | | | Notes: svn path=/head/; revision=27427
* Restore useless version required comments.David E. O'Brien2000-03-221-0/+1
| | | | Notes: svn path=/head/; revision=26941
* cat -> ${CAT} (portlint)Michael Haro2000-03-201-1/+1
| | | | Notes: svn path=/head/; revision=26846
* Remove the "version required" line.David E. O'Brien2000-03-201-1/+0
| | | | Notes: svn path=/head/; revision=26835
* Style nits in the ports I maintain.David E. O'Brien2000-02-131-5/+5
| | | | Notes: svn path=/head/; revision=25734
* $Id$ -> $FreeBSD$Peter Wemm1999-08-311-1/+1
| | | | Notes: svn path=/head/; revision=21144
* #4/4 enforcing Caps, no periodTim Vanderhoek1999-06-261-1/+1
| | | | | | | | | | | | | | | [Has anyone figured-out what makes the number 393 so interesting to PW, now?] I wonder what was going through Jordan's head during his infamous $Id$-smashing commit. Before I forget.... Thanks to naddy@mips.rhein-neckar.de (Christian Weisgerber) for prompting this commit. See msg-id: 7geokh$tje$1@mips.rhein-neckar.de Notes: svn path=/head/; revision=19804
* Move manpages from pkg/PLIST to Makefile.Steve Price1998-10-212-2/+3
| | | | Notes: svn path=/head/; revision=14135
* Upgrade to version 2.5.David E. O'Brien1998-03-062-6/+7
| | | | | | | Notified by: John DiMarco <jdd@cs.toronto.edu> Notes: svn path=/head/; revision=10050
* Fix path on MASTER_SITE.Bill Fenner1998-02-011-2/+2
| | | | | | | Submitted by: distfile checker Notes: svn path=/head/; revision=9560
* Change my email address to @FreeBSDDavid E. O'Brien1997-10-101-2/+2
| | | | Notes: svn path=/head/; revision=8194
* Switch around the MASTER_SITES.David E. O'Brien1997-09-041-3/+1
| | | | | | | Submitted by: Bill Fenner <fenner@parc.xerox.com> Notes: svn path=/head/; revision=7771
* Fix a couple of master_site paths.Bill Fenner1997-05-281-3/+3
| | | | | | | Found by: distfile checker Notes: svn path=/head/; revision=6600
* Upgrade to 2.4. (no new features... just supports more systems).David E. O'Brien1997-03-272-4/+3
| | | | | | | Notified by: John DiMarco <jdd@cs.toronto.edu> Notes: svn path=/head/; revision=6028
* Remove empty line inside MASTER_SITES.Satoshi Asami1996-12-101-2/+1
| | | | Notes: svn path=/head/; revision=4912
* Upgrade xcpustate to 2.2betaDavid E. O'Brien1996-12-082-3/+7
| | | | Notes: svn path=/head/; revision=4889
* Use MASTER_SITE_XCONTRIB. Use MAN? macros. CATEGORIES+= -> CATEGORIES.Satoshi Asami1996-11-181-2/+3
| | | | Notes: svn path=/head/; revision=4570
* CATEGORIES+= -> CATEGORIES=David E. O'Brien1996-11-171-2/+2
| | | | | | | Converted to new MAN[1-9] Notes: svn path=/head/; revision=4538
* Graphically tell you a lot about the CPU.Satoshi Asami1996-02-295-0/+35
Submitted by: obrien@cs.ucdavis.edu (David E. O'Brien) Notes: svn path=/head/; revision=2754