ffa2af40b3
are "some small, but glaring, bug fixes". Also add a HOMEPAGE to the package. Most of the changes to the files in the patches directory are just fuzz- or offset-related. Change the name of the installed library from libmpeg to libmpeg_lib to avoid conflicting with audio/kdemultimedia2 (pkg/13589 by Matthias Scheler <tron@colwyn.zhadum.de>).
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# $NetBSD: buildlink.mk,v 1.5 2001/08/02 13:28:44 jlam Exp $
|
|
#
|
|
# This Makefile fragment is included by packages that use mpeg.
|
|
#
|
|
# To use this Makefile fragment, simply:
|
|
#
|
|
# (1) Optionally define BUILDLINK_DEPENDS.mpeg-lib to the dependency pattern
|
|
# for the version of mpeg desired.
|
|
# (2) Include this Makefile fragment in the package Makefile,
|
|
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
|
|
# search path, and
|
|
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
|
|
# path.
|
|
|
|
.if !defined(MPEG_BUILDLINK_MK)
|
|
MPEG_BUILDLINK_MK= # defined
|
|
|
|
.include "../../mk/bsd.buildlink.mk"
|
|
|
|
BUILDLINK_DEPENDS.mpeg?= mpeg>=1.3.1
|
|
DEPENDS+= ${BUILDLINK_DEPENDS.mpeg}:../../graphics/mpeg-lib
|
|
|
|
EVAL_PREFIX+= BUILDLINK_PREFIX.mpeg=mpeg
|
|
BUILDLINK_PREFIX.mpeg_DEFAULT= ${LOCALBASE}
|
|
BUILDLINK_FILES.mpeg= include/mpeg.h
|
|
BUILDLINK_FILES.mpeg+= lib/libmpeg_lib.*
|
|
|
|
BUILDLINK_TARGETS.mpeg= mpeg-buildlink
|
|
BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.mpeg}
|
|
|
|
pre-configure: ${BUILDLINK_TARGETS.mpeg}
|
|
mpeg-buildlink: _BUILDLINK_USE
|
|
|
|
.endif # MPEG_BUILDLINK_MK
|