f1e7eab840
packing-lists was changes in significant ways, and they do not have enough dependencies that pkg_add can detect they changed through their signature. Bump the pkgname, so that pkg_add -r will choose to update them. okay pvalchev@
31 lines
721 B
Makefile
31 lines
721 B
Makefile
# $OpenBSD: Makefile,v 1.26 2005/08/17 16:10:03 espie Exp $
|
|
|
|
COMMENT= "collection of C routines to decode MPEG movies"
|
|
|
|
DISTNAME= mpeg_lib-1.3.1
|
|
PKGNAME= ${DISTNAME:S/_/-/}p0
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.bic.mni.mcgill.ca/pub/mpeg/ \
|
|
http://starship.python.net/~gward/mpeglib/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV= OPTIMIZE="${CFLAGS}"
|
|
|
|
do-regress:
|
|
@cd ${WRKSRC} && env LD_LIBRARY_PATH=${WRKSRC} ./mpegtest -checksum test.mpg
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
.if defined(NO_SHARED_LIBS) && ${NO_SHARED_LIBS:L} == "yes"
|
|
MAKE_ENV+= NO_SHARED_LIBS=Yes
|
|
.endif
|