diff options
author | miwi <miwi@FreeBSD.org> | 2007-03-01 18:14:52 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-03-01 18:14:52 +0800 |
commit | 83b1c368d8bbf492fb49192e8e0f671309235b73 (patch) | |
tree | b17ce3f4d7263c195cda682780f226285aaad72e | |
parent | ae9347ec70e2efc68d562aebf43f0c9f183d6947 (diff) | |
download | freebsd-ports-gnome-83b1c368d8bbf492fb49192e8e0f671309235b73.tar.gz freebsd-ports-gnome-83b1c368d8bbf492fb49192e8e0f671309235b73.tar.zst freebsd-ports-gnome-83b1c368d8bbf492fb49192e8e0f671309235b73.zip |
- Update to 0.1.5
PR: 109672
Submitted by: Phil Oleson <oz@nixil.net> (maintainer)
-rw-r--r-- | multimedia/qdvdauthor/Makefile | 24 | ||||
-rw-r--r-- | multimedia/qdvdauthor/distinfo | 6 | ||||
-rw-r--r-- | multimedia/qdvdauthor/files/patch-configure | 22 |
3 files changed, 24 insertions, 28 deletions
diff --git a/multimedia/qdvdauthor/Makefile b/multimedia/qdvdauthor/Makefile index 723b2697cef8..2d68b326ce72 100644 --- a/multimedia/qdvdauthor/Makefile +++ b/multimedia/qdvdauthor/Makefile @@ -6,8 +6,7 @@ # PORTNAME= qdvdauthor -PORTVERSION= 0.1.4 -PORTREVISION= 1 +PORTVERSION= 0.1.5 CATEGORIES= multimedia MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -25,9 +24,16 @@ RUN_DEPENDS= dvdauthor:${PORTSDIR}/multimedia/dvdauthor \ dvd-slideshow:${PORTSDIR}/multimedia/dvd-slideshow \ bash:${PORTSDIR}/shells/bash +DATA_FILES= silence.mp2 html/en/audio_streams.html html/en/system_register.html \ + qdvdauthor_de.qm qdvdauthor_es.qm qdvdauthor_fr.qm qdvdauthor_pl.qm \ + qplayer_de.qm qplayer_es.qm qplayer_fr.qm qslideshow_de.qm \ + qslideshow_es.qm qslideshow_fr.qm + PLIST_FILES= bin/qdvdauthor \ bin/qslideshow \ - bin/qplayer + bin/qplayer \ + ${DATA_FILES:S,^,%%DATADIR%%/,} +PLIST_DIRS= %%DATADIR%%/html/en %%DATADIR%%/html %%DATADIR%% HAS_CONFIGURE= yes USE_X_PREFIX= yes @@ -109,4 +115,16 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/qslideshow ${PREFIX}/bin/qslideshow ${INSTALL_PROGRAM} ${WRKSRC}/bin/qplayer ${PREFIX}/bin/qplayer + ${MKDIR} ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/silence.mp2 ${DATADIR} + + ${MKDIR} ${DATADIR}/html/en + ${INSTALL_DATA} ${WRKSRC}/doc/html/en/audio_streams.html ${DATADIR}/html/en + ${INSTALL_DATA} ${WRKSRC}/doc/html/en/system_register.html ${DATADIR}/html/en +.for locale in de es fr + ${INSTALL_DATA} ${WRKSRC}/qdvdauthor/i18n/qdvdauthor_${locale}.qm ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/qdvdauthor/i18n/qplayer_${locale}.qm ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/qdvdauthor/i18n/qslideshow_${locale}.qm ${DATADIR} +.endfor + ${INSTALL_DATA} ${WRKSRC}/qdvdauthor/i18n/qdvdauthor_pl.qm ${DATADIR} .include <bsd.port.post.mk> diff --git a/multimedia/qdvdauthor/distinfo b/multimedia/qdvdauthor/distinfo index d1eefa27da7d..64338d9d3be5 100644 --- a/multimedia/qdvdauthor/distinfo +++ b/multimedia/qdvdauthor/distinfo @@ -1,3 +1,3 @@ -MD5 (qdvdauthor-0.1.4.tar.gz) = 7f81f2f915a1a5709a584b839a750110 -SHA256 (qdvdauthor-0.1.4.tar.gz) = 1ec3a9d2b609f5ee5da643b86beeb209bde43b2a03cb92fd7c6f660d941b4b54 -SIZE (qdvdauthor-0.1.4.tar.gz) = 3405853 +MD5 (qdvdauthor-0.1.5.tar.gz) = 27d34402f755833ad64719d29a9f7d49 +SHA256 (qdvdauthor-0.1.5.tar.gz) = 41fbf9532036e4a09fe5af32bbaecfc7b4f428beb57e68b0b3b5437e583ebcd9 +SIZE (qdvdauthor-0.1.5.tar.gz) = 3549649 diff --git a/multimedia/qdvdauthor/files/patch-configure b/multimedia/qdvdauthor/files/patch-configure deleted file mode 100644 index 87e6fcea5439..000000000000 --- a/multimedia/qdvdauthor/files/patch-configure +++ /dev/null @@ -1,22 +0,0 @@ ---- configure.orig Fri Dec 30 01:50:45 2005 -+++ configure Fri Dec 30 02:01:29 2005 -@@ -147,8 +147,8 @@ - - check_vlclibs() - { -- export xineVersion=`xine-config --version 2>&1 | awk -F. '{printf ("%.2d%.2d%.2d", $1, $2, $3);}'`; -- if [ $xineVersion -lt 010000 ]; -+ export vlcVersion=`vlc-config --version 2>&1 | awk -F. '{printf ("%.2d%.2d%.2d", $1, $2, $3);}'`; -+ if [ $vlcVersion -lt 000800 ]; - then - echo "************************************************" - echo "** Attention, vlc-lib version too low. **" -@@ -159,7 +159,7 @@ - echo "** http://www.videolan.org **" - echo "************************************************" - echo "Current VLC-lib version :" -- echo "`xine-config --version`" -+ echo "`vlc-config --version`" - exit; - fi; - } |