Commit graph

65 commits

Author SHA1 Message Date
wiz
fd78c59622 On Linux, libmikmod also dynamically loads esound support.
Update conditional. Tested by reed@.
2005-06-04 09:31:10 +00:00
wiz
3dd599d89b Convert away from using USE_ESOUND.
Also:
On NetBSD, libmikmod dynamically loads esound, so there is
no library dependency -- do not include esound bl3.mk in those
cases.

XXX: please check other OPSYS if they do the same, and add cases
2005-06-03 13:19:22 +00:00
rillig
f382a671ad Changed #defined to yes in GNU_CONFIGURE and USE_LIBTOOL. 2005-05-31 21:58:36 +00:00
wiz
7ac375dceb Convert to options framework. 2005-05-31 16:10:19 +00:00
jlam
585534220c Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:
USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison
2005-05-22 20:07:36 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
agc
71c8259803 Add RMD160 digests to the SHA1 ones. 2005-02-23 20:39:42 +00:00
minskim
b1946f84a6 Enable pkgviews installation. Patches provided by Joachim Kuebart on
tech-pkg@.
2005-02-23 03:28:49 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
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-10-03 00:12:51 +00:00
jlam
1a280185e1 Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-22 08:09:14 +00:00
wiz
94b7275b5f Update to 3.1.11.1:
Summary of changes between libmikmod 3.1.11 and libmikmod 3.1.11-a
========================================================================
libmikmod-3.1.11-a was released on 05/03/2004

Most of my work and attention goes on the 3.2.x series, but I still receive
occasional bug reports and patchs for the 3.1.11 version. There are not enough
changes to make a full release, but many people may find this patch useful.

BUGFIXES
- libmikmod playback now works correcly on amd64 (type size problem)
- fixed warning issued by automake >= 1.8
- config.sub and config.guess updated


Summary of changes between libmikmod 3.1.10 and libmikmod 3.1.11 (Thiers):
==========================================================================

libmikmod 3.1.11 was released on 01/21/2004.

This is a small maintenance release. I know there are not many changes,
but since it has been a very long time since the last one, and meanwhile
libmikmod changed maintaner, I think it is justified.

THANKS

- Ingo Saitz, the maintainer of the mikmod packages for debian, for
  bugfixes.
- Frank Loemker, for the lcc-win32 stuff and fixes for the direct sound
  driver.

BUGFIXES

- Playback problems in MODs of length >128. This fixes the file beatwave.mod. Thanks
  to Emmanuel Coirier for pointing this out.
- Applied debian patches:
  - Fix for broken volume fadeouts of IT instruments
  - Fixed configure test for pthread
  - devfs support for Linux OSS

- Makefile for lcc-win32. To compile libmikmod with lcc-win32 a rather new
    version is needed. I currently use version 3.7 compiled on Jan 20 2002.
    A version half a year old did not work.
    To compile
      - check that you have the lcc bin directory in the PATH
        (and no other compiler bin dirs),
      - change to libmikmod-3.1.11/win32,
      - check Makefile.lcc for any needed changes, and
      - use make -f Makefile.lcc.

  - Different fixes for the direct sound driver:
    - Pausing did only work for half of the buffer.
    - Restarting the player did not work as the output thread was removed
      in DS_PlayStop().
    - Removed busy waiting for end of thread.
    - Sound output is started immediately on the first call to DS_Update()
      to be consistent with other non threaded drivers.
    - Different small clean ups.

  - In MikMod_Reset() the raw output driver driver did not use the
    filename set via the cmdline.
2004-09-21 08:41:15 +00:00
snj
c8379bcb2f No longer used. 2004-04-12 22:39:35 +00:00
jlam
a4fbec96a6 Don't use PKGNAME when setting WRKSRC; use PKGNAME_NOREV instead. 2004-03-30 18:32:32 +00:00
jlam
326169077a USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined. 2004-03-23 04:40:59 +00:00
jlam
7db11b582a Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properly
by moving the inclusion of buildlink3.mk files outside of the protected
region.  This bug would be seen by users that have set PREFER_PKGSRC
or PREFER_NATIVE to non-default values.

BUILDLINK_PACKAGES should be ordered so that for any package in the
list, that package doesn't depend on any packages to the left of it
in the list.  This ordering property is used to check for builtin
packages in the correct order.  The problem was that including a
buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed
from BUILDLINK_PACKAGES and appended to the end.  However, since the
inclusion of any other buildlink3.mk files within that buildlink3.mk
was in a region that was protected against multiple inclusion, those
dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-18 09:12:08 +00:00
jlam
9ff0e10340 Reorder location and setting of BUILDLINK_PACKAGES to match template
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-03-05 19:25:06 +00:00
jlam
8840bcd45e Clean up this buildlink3.mk file and check for USE_ESOUND before including
the esound/buildlink3.mk file.  Fixes PR 24485.
2004-02-19 06:41:21 +00:00
jlam
ec993afa1a LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globs
relative to ${WRKSRC}.  Remove redundant LIBTOOL_OVERRIDE settings that
are automatically handled by the default setting in bsd.pkg.mk.
2004-02-14 17:21:32 +00:00
xtraeme
aa7f90d1a8 bl3ify and replace obsolete LTCONFIG_OVERRIDE with LIBTOOL_OVERRIDE. 2004-02-11 08:36:17 +00:00
grant
ed16993a08 replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-22 07:14:59 +00:00
agc
dc52048e01 Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:07:06 +00:00
kristerw
9c94ebaa05 Update to a more official home page and master site, and adjust for
the distfile having a different name there.
2004-01-17 19:59:07 +00:00
kristerw
2ae63ec793 www.mikmod.org has been taken over by "Girls In Underwear Pics".
Update MASTER_SITE and HOMEPAGE.
From Michal Pasternak in PR pkg/23824.
2004-01-17 19:32:38 +00:00
seb
ab624bc4d4 Remove info files from PLIST. 2004-01-02 18:06:56 +00:00
jmmv
5e9a1d4886 Make esound support optional, through USE_ESOUND. 2003-09-14 18:00:30 +00:00
seb
0d7159e7bd USE_NEW_TEXINFO is unnecessary now. 2003-08-09 10:27:40 +00:00
seb
29972175c2 Convert to USE_NEW_TEXINFO. 2003-06-26 13:34:05 +00:00
salo
7079622fc8 Define Solaris specific AUDIO_ENCODING_SLINEAR and AUDIO_ENCODING_ULINEAR.
A patch from Jonathan Perkin via PR 18791
2002-11-19 13:04:38 +00:00
jlam
5884c3888d Make this package OSS-aware. 2002-10-16 23:43:06 +00:00
wiz
31ebdc5366 Not needed any longer. 2002-08-31 13:34:39 +00:00
wiz
6042e62954 Remove inclusion of bsd.buildlink.mk. 2002-08-31 03:51:17 +00:00
wiz
c0236b68ab Convert to buildlink2. 2002-08-31 03:47:53 +00:00
jlam
efb93b17bd Merge changes in packages from the buildlink2 branch that have
buildlink2.mk files back into the main trunk.
2002-08-25 19:21:43 +00:00
mycroft
f0118c5957 Update to libmikmod 3.1.10. Numerous bug fixes across the board; output is
noticably better.
Tested with all the pkgs that use it: mikmod, xmms, xpuyopuyo, xscorch.
2002-07-13 01:03:35 +00:00
seb
66111c6d15 Introduce new framework for handling info files generation and installation.
Summary of changes:
- removal of USE_GTEXINFO
- addition of mk/texinfo.mk
- inclusion of this file in package Makefiles requiring it
- `install-info' substituted by `${INSTALL_INFO}' in PLISTs
- tuning of mk/bsd.pkg.mk:
    removal of USE_GTEXINFO
    INSTALL_INFO added to PLIST_SUBST
    `${INSTALL_INFO}' replace `install-info' in target rules
    print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info'
- a couple of new patch files added for a handful of packages
- setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it
- devel/cssc marked requiring texinfo 4.0
- a couple of packages Makefiles were tuned with respect of INFO_FILES and
  makeinfo command usage

See -newly added by this commit- section 10.24 of Packages.txt for
further information.
2002-02-18 15:14:00 +00:00
zuntum
0ca28723fb Move pkg/ files into package's toplevel directory 2001-11-01 00:11:36 +00:00
mycroft
951aac51c7 Update HOMEPAGE and MASTER_SITES. 2001-10-22 03:47:28 +00:00
jlam
f25f9d2824 bsd.buildlink.mk will automatically handle the REPLACE_BUILDLINK stuff, so
we can remove REPLACE_BUILDLINK settings containing *-config, *Conf.sh, and
*.pc.
2001-10-03 22:36:37 +00:00
jlam
f0a4fcd3e4 Substitute the real config script for the config wrapper script in
installed files.  We don't want buildlink references to escape into the
install directory.
2001-10-03 20:56:40 +00:00
jlam
7bba3453dc If USE_CONFIG_WRAPPER is defined (implied by USE_BUILDLINK_ONLY), then
set FOO_CONFIG=${BUILDLINK_CONFIG_WRAPPER.foo} in both CONFIGURE_ENV and
MAKE_ENV.  We remove the check for GNU_CONFIGURE because if a package
Makefile includes the buildlink.mk file, then it most likely wants to use
the config script wrappers as well.  Change suggested by Hubert Feyrer
(hubertf) and Tomasz Luchowski (zuntum).
2001-08-17 21:14:00 +00:00
jlam
d2eb68d2a6 Add dir_DEFAULT setting used by EVAL_PREFIX logic to set the default
installation directory in case the package isn't installed.
2001-07-27 13:33:18 +00:00
jlam
7b1d3cb465 Mechanical changes to buildlink.mk files to use EVAL_PREFIX to set
BUILDLINK_PREFIX.<pkgname>.  This allows buildlink to find X11BASE packages
regardless of whether they were installed before or after xpkgwedge was
installed.  Idea by Alistair Crooks <agc@pkgsrc.org>.
2001-07-20 01:54:31 +00:00
jlam
9943bc93db Allow overriding of *_CONFIG variables in a package Makefile when using
USE_BUILDLINK_ONLY.
2001-07-02 05:33:56 +00:00
jlam
cb76bd5efc Move inclusion of bsd.buildlink.mk to start of file. 2001-07-01 22:59:08 +00:00
jlam
3b65bde2f7 USE_CONFIG_WRAPPER is automatically set if USE_BUILDLINK_ONLY is defined,
so remove it from package Makefiles.  Also move the inclusion of the
buildlink.mk files to the end of the Makefile to just before bsd.pkg.mk
to ensure that any Makefile settings occur before the buildlink.mk files.
2001-06-29 04:54:49 +00:00
jlam
31d1b3af60 Use REPLACE_BUILDLINK instead of repeating the post-build same code over
and over again in the pkgsrc tree.
2001-06-26 16:30:55 +00:00
jlam
34d11d8a0f Generalize how the dependency pattern may be specified. Instead of just
FOO_REQD=1.0 being converted to foo>=1.0, one can now directly specify
the dependency pattern as FOO_DEPENDS=foo>=1.0.  This allows things like
JPEG_DEPENDS=jpeg-6b, or fancier expressions like for postgresql-lib.
Change existing FOO_REQD definitions in Makefiles to FOO_DEPENDS.
2001-06-23 19:26:48 +00:00
jlam
72270071f4 Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY. Refer to
esd-config as $ESD_CONFIG in configure script.
2001-06-19 16:00:05 +00:00
jlam
42945c7c53 Add a buildlink.mk file for use by other package Makefiles. 2001-06-19 15:59:27 +00:00
agc
952fa0ef9f Move to sha1 digests, and add distfile sizes. 2001-04-18 12:14:28 +00:00