blob: 8febe212dc3bb182caf7223360a228cb6446b9ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# New ports collection makefile for: nautilus-cd-burner
# Date created: 13 April 2003
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/sysutils/nautilus-cd-burner/Makefile,v 1.82 2006/01/17 04:17:59 marcus Exp $
#
PORTNAME= nautilus-cd-burner
PORTVERSION= 2.13.90
CATEGORIES= sysutils gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.13
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= CD burner view for Nautilus
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_REINPLACE= yes
USE_GMAKE= yes
GNOME_DESKTOP_VERSION=2
USE_GNOME= gnomeprefix gnomehack intlhack nautilus2
USE_AUTOTOOLS= libtool:15
INSTALLS_SHLIB= yes
CONFIGURE_ARGS= --disable-hal
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
GCONF_SCHEMAS= ncb.schemas
OPTIONS= DVD "Enable DVD support" on \
CJK "Use cdrtools-cjk instead of cdrtools" off
.include <bsd.port.pre.mk>
.if defined(WITH_CJK)
RUN_DEPENDS+= cdrecord:${PORTSDIR}/sysutils/cdrtools-cjk
WITHOUT_DVD= yes
.else
RUN_DEPENDS+= cdrecord:${PORTSDIR}/sysutils/cdrtools
.endif
.if !defined(WITHOUT_DVD)
RUN_DEPENDS+= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|