aboutsummaryrefslogtreecommitdiffstats
path: root/audio/xwave
Commit message (Collapse)AuthorAgeFilesLines
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-201-0/+1
| | | | audio)
* New USES imake to handle the dependency on imake.bapt2013-06-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | 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
* audio/xwave: Fix typocrees2013-05-041-1/+1
| | | | | | PR: ports/175986 Submitted by: Christoph Mallon <christoph.mallon@gmx.de> Approved by: maintainer
* - Strip header at request of original creatortabthorpe2013-01-271-5/+1
| | | | | Submitted by: trevor With hat: portmgr
* Move distfile from trevors to my public_distfiles.arved2011-08-092-3/+5
| | | | | | | Update maintainer emailadress and pkg-descr PR: 155356 Submitted by: maintainer
* - Get Rid MD5 supportmiwi2011-03-191-1/+0
|
* - Mark MAKE_JOBS_UNSAFEpav2009-11-231-0/+1
| | | | Reported by: pointyhat
* - Update X.org ports to 7.4+ (few ports are more recent than the katamari).flz2009-01-241-1/+1
| | | | | | | | - Bump PORTREVISION for all ports depending on libglut since the shlib version number went from 4 to 3. - Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't installed anymore. - Couple of ports fixes (mostly missing xorg components added to USE_XORG).
* Fix USE_XORG for the upcoming bsd.port.mk changes (ports/122340).flz2008-07-231-1/+1
| | | | Approved by: portmgr (self)
* - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-201-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)
* - Welcome X.org 7.2 \o/.flz2007-05-201-0/+1
| | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
* SHA256ifyedwin2006-01-221-0/+1
| | | | Approved by: krion@
* SIZEify (maintainer timeout)trevor2004-03-311-0/+1
|
* Remove my e-mail address from comment blocks of portstrevor2003-11-131-1/+1
| | | | I have contributed, in hopes of attracting less spam.
* Cosmetic fix: use %%DOCSDIR%% macro.osa2003-10-211-5/+5
| | | | | | | No functionally changes. Submitted by: Oleg Karachevtsev <ok@etrust.ru> A part of PR: 57992
* De-pkg-comment.knu2003-02-212-1/+1
|
* Fix build on -current (machine/soundcard.h -> sys/soundcard.h)kris2002-09-081-4/+6
|
* Use MASTER_SITE_LOCAL.trevor2002-06-092-4/+2
| | | | | PR: 39056 Submitted by: Martin Kraft (maintainer)
* PORTDOCS policedwcjr2001-07-081-5/+5
| | | | | PR: 28600 Submitted by: Patrick Li <pat@databits.net>
* fixes for two libfwf-related compilation problems (see comments intrevor2001-03-062-7/+68
| | | | | | | | patches) Submitted by: maintainer PR: 20705 reported by: Vivek Khera <khera@kciLink.com>
* (1) Add new variable, XFREE86_VERSION, to specify which version ofasami2000-08-031-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | XFree86 (3 or 4) to depend to when USE_XLIB is set. XFREE86_VERSION defaults to 3 for now, but adventurous users can override it in /etc/make.conf. When XFREE86_VERSION=3, USE_XLIB will add a dependency to x11/XFree86; when it is set to 4, the dependency will be to x11/XFree86-4-libraries. When XFREE86_VERSION=4, the PKG_IGNORE_DEPENDS and ALWAYS_BUILD_DEPENDS hacks to avoid messing with XFree86 are turned off. Since XFree86 version 4 includes some software that used to be separate ports, when XFREE86_VERSION=3 the following variables are provided: USE_DGS LIB_DEPENDS on x11/dgs USE_FREETYPE LIB_DEPENDS on print/freetype USE_MESA LIB_DEPENDS on graphics/Mesa3 USE_XPM LIB_DEPENDS on graphics/xpm When XFREE86_VERSION=4, these variables have no effect. The LIB_DEPENDS in the tree for the above four ports have all been converted to the USE_* counterparts. For your information, this is the count of the number of ports: USE_DGS 0 USE_FREETYPE 16 USE_MESA 36 USE_XPM 236 There is a new variable, XAWVER, which is set to 6 when XFREE86_VERSION=3 and 7 when XFREE86_VERSION=4. This is also passed to PLIST_SUB so ports that build Xaw based shared libraries can use this variable to substitute the shlib version number. There is also a provision of using a separate mtree file for XFREE86_VERSION=4, but that part is not enabled yet. Reviewed by: the ports list Tested by: make index (XFREE86_VERSION=3 only) (2) Add hebrew to list of valid categories. Submitted by: nbm
* - Update to version 2v2sobomax2000-07-1319-95/+272
| | | | | PR: 19759 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
* Change MAINTAINER.sobomax2000-06-301-2/+2
| | | | | PR: 19595 Submitted by: MAINTAINER
* New port xwave - a wave record/play/edit utility.sobomax2000-06-2910-0/+303
PR: 19200 Submitted by: Trevor Johnson <trevor@jpj.net> Obtained from: NetBSD