mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
5ab881a5d9
- Convert all fpc-based ports to USES=fpc PR: 227210 Reviewed by: portmgr Approved by: portmgr Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D14617
24 lines
575 B
Makefile
24 lines
575 B
Makefile
# Created by: Christopher Key <cjk32@cam.ac.uk>
|
|
# $FreeBSD$
|
|
|
|
CATEGORIES= audio lang
|
|
PKGNAMESUFFIX= -oggvorbis
|
|
|
|
COMMENT= Free Pascal interface to ogg & vorbis libraries
|
|
|
|
USES= fpc
|
|
|
|
MASTERDIR= ${.CURDIR}/../../lang/fpc
|
|
WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//}
|
|
EXTRACTUNITDIR= ${WRKUNITDIR}
|
|
|
|
OPTIONS_DEFINE= LIBOGG LIBVORBIS
|
|
LIBOGG_DESC= Install ogg library
|
|
LIBVORBIS_DESC= Install vorbis library
|
|
OPTIONS_DEFAULT= LIBOGG LIBVORBIS
|
|
|
|
LIBOGG_LIB_DEPENDS= libogg.so:audio/libogg
|
|
LIBVORBIS_LIB_DEPENDS= libvorbis.so:audio/libvorbis
|
|
|
|
.include "${MASTERDIR}/Makefile"
|