blob: 05aa2c74531d24b968f7df5cb403d275efb746e3 (
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
|
# New ports collection makefile for: clipgrab
# Date created: 2009-12-06
# Whom: Gvozdikov Veniamin <g.veniamin@googlemail.com>
#
# $FreeBSD$
#
PORTNAME= clipgrab
PORTVERSION= 3.0.5
CATEGORIES= multimedia
MASTER_SITES= http://clipgrab.de/download/
DISTNAME= ${PORTNAME}-${PORTVERSION}
MAINTAINER= g.veniamin@googlemail.com
COMMENT= Program to download videos from YouTube and etc
USE_BZIP2= yes
USE_QT_VER= 4
QT_COMPONENTS= gui xml qmake_build uic_build moc_build \
rcc_build network
WRKSRC= ${WRKDIR}/${PORTNAME}
PLIST_FILES= bin/${PORTNAME} \
%%DATADIR%%/icon.png \
%%DATADIR%%/logo.png \
%%DATADIR%%/splash.png
PLIST_DIRS= %%DATADIR%%
DESKTOP_ENTRIES="Clipgrab" "Download and convert videos from YouTube and etc" \
"${DATADIR}/icon.png" "${PORTNAME}" \
"AudioVideo;Audio;Video;" false
post-patch:
${REINPLACE_CMD} -e 's,img/,share/${PORTNAME}/,g' \
${WRKSRC}/*.cpp
do-configure:
cd ${WRKSRC} && ${QMAKE}
do-install:
${MKDIR} ${DATADIR}
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}
${INSTALL_DATA} ${WRKSRC}/*.png ${DATADIR}
.include <bsd.port.mk>
|