forked from Lainports/freebsd-ports
When appropriate:
- Try to use DISTVERSION{SUF,PRE}FIX
- Replace PORTNAME-PORTVERSION by DISTNAME
- Convert MASTER_SITES to use macros
- Other light cleanup
With hat: portmgr
Sponsored by: Absolight
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
# Created by: Anton Karpov <toxa@toxahost.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= graveman
|
|
DISTVERSION= 0.3.12-5
|
|
PORTREVISION= 11
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://graveman.tuxfamily.org/sources/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Another GTK2 frontend for cdrecord, mkisofs, readcd, and sox
|
|
|
|
LIB_DEPENDS= libmng.so:${PORTSDIR}/graphics/libmng
|
|
BUILD_DEPENDS= cdrecord:${PORTSDIR}/sysutils/cdrtools
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= pathfix pkgconfig gettext gmake tar:bzip2
|
|
USE_GNOME= libglade2 intlhack gnomeprefix
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= MP3 OGG DVD
|
|
DVD_DESC= DVD+RW support
|
|
MP3_LIB_DEPENDS= libmad.so:${PORTSDIR}/audio/libmad \
|
|
libid3tag.so:${PORTSDIR}/audio/libid3tag
|
|
MP3_RUN_DEPENDS= sox:${PORTSDIR}/audio/sox
|
|
MP3_CONFIGURE_OFF= --disable-mp3
|
|
OGG_LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg \
|
|
libvorbis.so:${PORTSDIR}/audio/libvorbis
|
|
OGG_CONFIGURE_OFF= --disable-ogg
|
|
DVD_RUN_DEPENDS= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools
|
|
|
|
.include <bsd.port.mk>
|