diff options
author | shattered <shattered@pkgsrc.org> | 2011-06-18 10:01:28 +0000 |
---|---|---|
committer | shattered <shattered@pkgsrc.org> | 2011-06-18 10:01:28 +0000 |
commit | 54f3d2f783da27b4af715519d48f49d333a5ef22 (patch) | |
tree | 2389984b64eb6ede91ce52c312ae66aa10764abe | |
parent | 31e67e6fce62d20eeeb898759fe425a36b3524ed (diff) | |
download | pkgsrc-54f3d2f783da27b4af715519d48f49d333a5ef22.tar.gz |
PR/38038 -- update to ifp-line 0.3. Changes:
0.3:
* autotooled
* Add iconv(3) support.
ifp-line can transfer file with non-ASCII filename.
* Add "version" command. Show ifp-line's version.
* ifp-1XX can download MP3/WMA/ASF to PC!
Firmware version 3.23 and later required.
0.2.4.7:
* Print "help" message before opening the iFP device
and add -h/-help/--help options.
0.2.4.6:
* Bug fix release.
* Beta version of N10 firmware update support (not tested).
* Fix bug with older versions of libusb.
* Fix "ifp get" behavioir with non-existant file.
0.2.4.5:
* Bug fix release.
* Fix behavior of "ifp download VOICE somedir" and "ifp get VOICE".
* Fix bug of "ifp put /path/to/music.mp3".
-rw-r--r-- | audio/ifp-line/Makefile | 8 | ||||
-rw-r--r-- | audio/ifp-line/PLIST | 6 | ||||
-rw-r--r-- | audio/ifp-line/distinfo | 9 | ||||
-rw-r--r-- | audio/ifp-line/patches/patch-aa | 15 |
4 files changed, 14 insertions, 24 deletions
diff --git a/audio/ifp-line/Makefile b/audio/ifp-line/Makefile index e8be8b39ec0..ef48e0dd66a 100644 --- a/audio/ifp-line/Makefile +++ b/audio/ifp-line/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2010/01/30 18:13:35 joerg Exp $ +# $NetBSD: Makefile,v 1.11 2011/06/18 10:01:28 shattered Exp $ -DISTNAME= ifp-line-0.2.4.4 -PKGREVISION= 1 +DISTNAME= ifp-line-0.3 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ifp-driver/} @@ -14,5 +13,8 @@ PKG_DESTDIR_SUPPORT= user-destdir INSTALL_MAKE_FLAGS+= PREFIX=${DESTDIR}${PREFIX} INSTALLATION_DIRS+= bin +GNU_CONFIGURE= yes + +.include "../../converters/libiconv/buildlink3.mk" .include "../../devel/libusb/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/audio/ifp-line/PLIST b/audio/ifp-line/PLIST index 317015c916e..50a580d585a 100644 --- a/audio/ifp-line/PLIST +++ b/audio/ifp-line/PLIST @@ -1,3 +1,7 @@ -@comment $NetBSD: PLIST,v 1.2 2005/09/22 04:08:31 minskim Exp $ +@comment $NetBSD: PLIST,v 1.3 2011/06/18 10:01:28 shattered Exp $ bin/ifp man/man1/ifp.1 +share/ifp-line/NEWS +share/ifp-line/README +share/ifp-line/TIPS +share/ifp-line/nonroot.sh diff --git a/audio/ifp-line/distinfo b/audio/ifp-line/distinfo index 7a419f5c4da..b9cc9f48782 100644 --- a/audio/ifp-line/distinfo +++ b/audio/ifp-line/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.7 2010/01/30 18:13:35 joerg Exp $ +$NetBSD: distinfo,v 1.8 2011/06/18 10:01:28 shattered Exp $ -SHA1 (ifp-line-0.2.4.4.tar.gz) = f801a7a8179ab5430631f1027c25b449998cbc84 -RMD160 (ifp-line-0.2.4.4.tar.gz) = d67b5683b075f7e121585de21d9ebb475fcc3bd6 -Size (ifp-line-0.2.4.4.tar.gz) = 23879 bytes -SHA1 (patch-aa) = 7b6a5f36ccd49518ea808763b3a12f26db64c91b +SHA1 (ifp-line-0.3.tar.gz) = e511157878a08fbea6a2c702e726e131dd20cb2f +RMD160 (ifp-line-0.3.tar.gz) = 71fee7e02daeb9b3dc2e7da53236057b9d5a9f63 +Size (ifp-line-0.3.tar.gz) = 138272 bytes diff --git a/audio/ifp-line/patches/patch-aa b/audio/ifp-line/patches/patch-aa deleted file mode 100644 index 10df712d6e4..00000000000 --- a/audio/ifp-line/patches/patch-aa +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-aa,v 1.7 2010/01/30 18:13:35 joerg Exp $ - ---- Makefile.orig 2004-07-13 20:28:31.000000000 +0900 -+++ Makefile 2004-07-13 20:29:06.000000000 +0900 -@@ -2,7 +2,6 @@ - --CFLAGS = `libusb-config --cflags` -Wall -g -+CFLAGS += `libusb-config --cflags` -Wall - LDFLAGS = `libusb-config --libs` --PREFIX ?= /usr/local --MANDIR ?= ${PREFIX}/man/man1 -+MANDIR ?= ${PREFIX}/${PKGMANDIR}/man1 --INSTALL ?= /usr/bin/install -+INSTALL ?= install - |