blob: ad06294f0f57ee6fce784dd3514310de080f668f (
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
|
# Ports collection makefile for: gmencoder
# Date created: Wed Feb 25 03:20:50 EST 2004
# Whom: Michael Johnson <ahze@ahze.net>
#
# $FreeBSD$
#
PORTNAME= gmencoder
PORTVERSION= 0.1.0
PORTREVISION= 1
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
EXTRACT_SUFX= .tgz
MAINTAINER= ahze@ahze.net
COMMENT= Gmencoder is Gnome2 front-end to mplayer/mencoder
BUILD_DEPENDS= mencoder:${PORTSDIR}/multimedia/mplayer
RUN_DEPENDS= mencoder:${PORTSDIR}/multimedia/mplayer
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
USE_GMAKE= yes
USE_GNOME= gnomehack gnomeprefix libgnomeui
USE_REINPLACE= yes
post-patch:
@${REINPLACE_CMD} -e 's|-O4||; s|type -path|which|' \
${WRKSRC}/configure
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in README
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|