diff options
author | olgeni <olgeni@FreeBSD.org> | 2008-06-08 19:06:03 +0800 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2008-06-08 19:06:03 +0800 |
commit | a7c054ac2f04ed33cbcb83cfc9c11d6e1ce2ac23 (patch) | |
tree | 9caa65e64caa9c8019a16987787cb12b52fd67d9 /audio | |
parent | c76d224ec26c8e26dc14a1a96e70e46b81db79d7 (diff) | |
download | freebsd-ports-gnome-a7c054ac2f04ed33cbcb83cfc9c11d6e1ce2ac23.tar.gz freebsd-ports-gnome-a7c054ac2f04ed33cbcb83cfc9c11d6e1ce2ac23.tar.zst freebsd-ports-gnome-a7c054ac2f04ed33cbcb83cfc9c11d6e1ce2ac23.zip |
According to pkg_add -v, pkg-plist executes the following commands:
ln -sf bin/toast /usr/local/bin/tcat
ln -sf bin/toast /usr/local/bin/untoast
which create these incorrect links:
/usr/local/bin/tcat -> bin/toast
/usr/local/bin/untoast -> bin/toast
Replacing %F with %f in pkg-plist removes the extra bin/.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gsm/Makefile | 1 | ||||
-rw-r--r-- | audio/gsm/pkg-plist | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/audio/gsm/Makefile b/audio/gsm/Makefile index 1a3d0785c12c..dc3174f50461 100644 --- a/audio/gsm/Makefile +++ b/audio/gsm/Makefile @@ -7,6 +7,7 @@ PORTNAME= gsm PORTVERSION= 1.0.12 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://kbs.cs.tu-berlin.de/~jutta/gsm/ \ ftp://ftp.dvo.ru/pub/Gentoo/distfiles/ \ diff --git a/audio/gsm/pkg-plist b/audio/gsm/pkg-plist index 72301b74183e..7373700346c2 100644 --- a/audio/gsm/pkg-plist +++ b/audio/gsm/pkg-plist @@ -1,6 +1,6 @@ bin/toast -@exec ln -sf %F %B/tcat -@exec ln -sf %F %B/untoast +@exec ln -sf %f %B/tcat +@exec ln -sf %f %B/untoast @rmtry bin/tcat @rmtry bin/untoast include/gsm.h |