mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
230cf6828f
- Add USE_FPC_RUN to bsd.fpc.mk. It add fpc units like run dependencies. Otherwise fpc units only are added like build dependencies (less dependencies registered when they are installed with pkg). - Remove GTK1 obsolete dependencies - Bump all ports with dependencies of fpc-* units - Bump all ports with dependencies of lazarus ports - Clean up
26 lines
653 B
Makefile
26 lines
653 B
Makefile
# Created by: Christopher Key <cjk32@cam.ac.uk>
|
|
# $FreeBSD$
|
|
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio lang
|
|
PKGNAMESUFFIX= -oggvorbis
|
|
|
|
MAINTAINER= freebsd-fpc@FreeBSD.org
|
|
COMMENT= Free Pascal interface to ogg & vorbis libraries
|
|
|
|
USE_FPC= yes
|
|
|
|
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:${PORTSDIR}/audio/libogg
|
|
LIBVORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis
|
|
|
|
.include "${MASTERDIR}/Makefile"
|