summaryrefslogtreecommitdiff
path: root/sysutils/xcdroast/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2007-08-15the -L and -P options to mkisofs are deprecated and have been removed,plunky1-2/+2
add patch-ae to use the new names. bump the PKG_REVISION the previous version of cdrtools supported the new option names so no change in dependency is needed. update distinfo
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-04-13BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace withjlam1-4/+2
USE_TOOLS+=msgfmt.
2006-03-14Modify the pkginstall framework so that it manages all aspects ofjlam1-3/+1
INSTALL/DEINSTALL script creation within pkgsrc. If an INSTALL or DEINSTALL script is found in the package directory, it is automatically used as a template for the pkginstall-generated scripts. If instead, they should be used simply as the full scripts, then the package Makefile should set INSTALL_SRC or DEINSTALL_SRC explicitly, e.g.: INSTALL_SRC= ${PKGDIR}/INSTALL DEINSTALL_SRC= # emtpy As part of the restructuring of the pkginstall framework internals, we now *always* generate temporary INSTALL or DEINSTALL scripts. By comparing these temporary scripts with minimal INSTALL/DEINSTALL scripts formed from only the base templates, we determine whether or not the INSTALL/DEINSTALL scripts are actually needed by the package (see the generate-install-scripts target in bsd.pkginstall.mk). In addition, more variables in the framework have been made private. The *_EXTRA_TMPL variables have been renamed to *_TEMPLATE, which are more sensible names given the very few exported variables in this framework. The only public variables relating to the templates are: INSTALL_SRC INSTALL_TEMPLATE DEINSTALL_SRC DEINSTALL_TEMPLATE HEADER_TEMPLATE The packages in pkgsrc have been modified to reflect the changes in the pkginstall framework.
2006-03-09Replace references to ossaudio.buildlink3.mk with oss.buildlink3.mk.jlam1-2/+2
Remove deprecated ossaudio.buildlink3.mk.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz1-2/+2
of the shlib major bump. PKGREVISION++ for the dependencies.
2006-01-11There's no need to depend on cdrecord-xcdroast... this pkg is notxtraeme1-5/+7
really necessary nowadays. Bump PKGREVISION.
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-08-19Merge CONF_FILES/SUPPORT_FILES and CONF_FILES_PERMS/SUPPORT_FILES_PERMSjlam1-2/+2
as the INSTALL and DEINSTALL scripts no longer distinguish between the two types of files. Drop SUPPORT_FILES{,_PERMS} and modify the packages in pkgsrc accordingly.
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam1-3/+2
file's sole purpose was to provide a dependency on pkg-config and set some environment variables. Instead, turn pkg-config into a "tool" in the tools framework, where the pkg-config wrapper automatically adds PKG_CONFIG_LIBDIR to the environment before invoking the real pkg-config. For all package Makefiles that included pkg-config/buildlink3.mk, remove that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz1-2/+2
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-07-19depends should be ../../<category>/<pkg>grant1-2/+2
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-23The configure.in/aclocal.m4/configure shipped with xcdroast sourcereed1-3/+2
accidently included a check for PCRE. xcdroast build and installed software does not use pcre. This patch-ab removes the configure check for pcre. And the dependency for pcre is removed and package revision is bumped. This patch is same as if patched using new configure found via http://www.xcdroast.org/xcdr098/patches/ (and that webpage has five other patches to consider). This was okayed by maintainer, Thorsten F.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-03-15bl3ifyxtraeme1-7/+7
2004-01-29Simplify previous.xtraeme1-5/+2
2004-01-29Don't link to libossaudio on !NetBSD platforms.xtraeme1-1/+3
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-03Bump package revisions for tiff update.reed1-1/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-12-29Correct path to devel/pkgconfig/buildlink2.mk.kristerw1-2/+2
2003-12-28Explicitly include pkg-config's buidlink2.mk file.jmmv1-1/+2
2003-12-28Update to 0.98alpha15:jmmv1-11/+14
* GTK2 support. * updated lot of translations, added romanian, latvian and albanian. * numerous bug fixes. * included a contrib-directory with the sources with some useful stuff sent to me by X-CD-Roast users.
2003-08-30Add definitions for DEINSTALL_EXTRA_TMPL and INSTALL_EXTRA_TMPL ifjlam1-1/+3
USE_PKGINSTALL is "YES". bsd.pkg.install.mk will no longer automatically pick up a INSTALL/DEINSTALL script in the package directory and assume that you want it for the corresponding *_EXTRA_TMPL variable.
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-05update to 0.98a14drochner1-7/+13
changes: full drag&drop support (rearrange tracks or add files to master from KDE/Gnome). completely new non-root-mode which does not require any group or a change of modes on the cdrtools. complete rewrite of internal device handling. Up to 64 devices can be independently configured and used. Devices are no longer scanned at each startup, support for remote-scsi (networked devices), Linux kernel-2.5.x devices and any other cdrecord supports. improved Mac OS X support with automatic autodiskmount daemon handling. support copy of audio-CDs on-the-fly. save window positions and sizes. display progress of reading/writing in window title. even more integration of cdrecord-ProDVD. Full support of DVD-R/RW and DVD+R/RW with newest ProDVD-versions. added greek and ukrainian translations, updated most others. a helpful HTML-manual in doc/manual (online: http://www.xcdroast.org/manual) numerous usage improvements and bug fixes.
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz1-1/+2
dependency bumps.
2003-01-28Instead of including bsd.pkg.install.mk directly in a package Makefile,jlam1-3/+4
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set to "YES". This enforces the requirement that bsd.pkg.install.mk be included at the end of a package Makefile. Idea suggested by Julio M. Merino Vidal <jmmv at menta.net>.
2003-01-23change naming scheme for cdrecord-xcdroast to avoid explicite CONFLICTsdrochner1-2/+2
in the future, as proposed by Matthias Scheler in PM
2003-01-10update to 0.98alpha13drochner1-4/+4
changes: -proxy support for CDDB lookups -bugfixes -use cdrtools-2.0
2003-01-10USE_PKGLOCALEDIR=yescjep1-5/+6
2002-12-03put automatic ossaudio detection into operationdrochner1-11/+9
2002-12-02update to 0.98alpha11.drochner1-22/+18
There is a major restructuring of the sources, more than to be expected from the subminor version change. Still needs some finetuning... Most notable change: multisession support.
2002-09-26* Use buildlink2.jlam1-6/+35
* Install some documentation. * Honor PKG_SYSCONFDIR (and warn user that the config file directory may have changed). * Allow for compiling with OSS support on NetBSD, though it is currently commented out.
2002-03-17Fix typo.fredb1-2/+2
2002-03-13Give all packages which depend on "png" a version bump, and updatefredb1-2/+3
all dependencies on packages depending on "png" which contain shared libraries, all for the (imminent) update to the "png" package. [List courtesy of John Darrow, courtesy of "bulk-build".]
2001-09-27Mechanical changes to 375 files to change dependency patterns of the formjlam1-2/+2
foo-* to foo-[0-9]*. This is to cause the dependencies to match only the packages whose base package name is "foo", and not those named "foo-bar". A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also change dependency examples in Packages.txt to reflect this.
2001-08-07update to 0.98 alpha 9drochner1-4/+4
Changes: 17.07.01: * update the writeable flag in HD setup * final touches to non-root wrapper 16.07.01: * add CDRTOOLS_PREFIX in Makefile for more flexible installation * show image-list in verify tracks menu even when no CD is loaded * check if image directories are writeable 15.07.01: * set permissions of /etc/xcdroast.conf to 644 after first start when old version found * remove -r commandline option for security reasons * make wrapper checking allowed users and hosts * make process windows wider to avoid cut-off labels * make "minimaly blank" mode default * allow verifying of self-mastered or external iso tracks 14.07.01: * first version of non-root wrapper useable * set correct filemodes on saved text-outputs * create the configuration directory at startup * fix bug in non-root-mode when you can cancel out of setup without setting image directories * check for common "cannot open new session" errors in cdrecord output and advise user to switch to TAO * handle dos format textfile format 13.07.01: * first tests with the non-root wrapper * add -n switch to commandline help 12.07.01: * dont set tooltip color manually - it screws up multibyte fonts 11.07.01: * added japanese translation 10.07.01: * added option in setup to save a default write mode setting 08.07.01: * added galician translation * added new dialog in master-menu which does the redirection stuff when adding directories automatically 28.06.01: * fix problem when copying an unpadded CD-R. (last sectors got lost) 27.06.01: * manual scanbus override should work now. I am interested in feedback. 26.06.01: * new commandline option to give a list of devices, instead of using -scanbus. Very useful on AIX and OpenBSD systems. 24.06.01: * dont expand ~/ in logfile setting (broke in non-root-mode) * add startup-message in logfile * workaround for crash caused by eazel-gtk-theme (mandrake 8.0) * fix a lot of cursor leaks * fix crash when writing a toc file on solaris * use sectors on mkisofs tsize option 23.06.01: * integrate joliet charsets into the master-menu (Also thanks to Georgy Salnikov for the idea) * dont crash on unknown group-ids 22.06.01: * query joliet charsets from mkisofs 21.06.01: * reworked verifying code. (Thanks to Georgy Salnikov <sge@nmr.nioch.nsc.ru>) * verifying of padded CDs works now fine. 20.06.01: * make cdrtools-1.10 default 19.06.01: * had other stuff to do. Got back to work at X-CD-Roast * update translations for brasilian portuguese, estonian, slovak and french * added translations for finnish, bulgarian and czech. * allow image-directories with space in their name * sort the image-list display alphabetically * merged AIX and HP-UX audio patches from Stefan Benke <benke@iam.rwth-aachen.de> * fixed possible crash when a CD-Extra is inserted * corrected tons of typos in the documentation 25.12.00: * fix wav-file detection code (Thanks to Mark Bratcher <mbratch@coollink.net>) 01.12.00: * fix some compiler warnings 29.11.00: * fix cdrecord scanbus parser crash on HP-UX
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz1-1/+2
2001-02-11Use "${MASTER_SITE_SOURCEFORGE}" in master site list.tron1-2/+2
2001-02-10Add xcdroast-0.98a8, a gtk+ based GUI for the cdrecord tools.frueauf1-0/+21
Although this package is considered an alpha testversion by the author, it works remarkable well for me. Note that this needs cdrecord-1.9nb1, which was patched to make 'cdrecord -scanbus work'. xcdroast relies on this feature. Also note that I was not able to make wavplay work with our audio subsystem. Someone with more audio knowledge might want to tweak it.