View | Details | Raw Unified | Return to bug 201017
Collapse All | Expand All

(-)converters/gbsdconv/Makefile (-1 / +4 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	gbsdconv
4
PORTNAME=	gbsdconv
5
PORTVERSION=	11.1
5
PORTVERSION=	11.3
6
CATEGORIES=	converters python
6
CATEGORIES=	converters python
7
7
8
MAINTAINER=	buganini@gmail.com
8
MAINTAINER=	buganini@gmail.com
Lines 27-30 Link Here
27
		%%DATADIR%%/gbsdconv.xml \
27
		%%DATADIR%%/gbsdconv.xml \
28
		%%DATADIR%%/gbsdconv2.png
28
		%%DATADIR%%/gbsdconv2.png
29
29
30
post-install:
31
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gbsdconv_taglib.so
32
30
.include <bsd.port.mk>
33
.include <bsd.port.mk>
(-)converters/gbsdconv/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (buganini-gbsdconv-11.1_GH0.tar.gz) = 34f13dd5d242002fc1577508f067c6878466d4d20191cfb9dead513b9af36903
1
SHA256 (buganini-gbsdconv-11.3_GH0.tar.gz) = 4ab852cbcb3b6f9b16fccb7cb3dd0a9c6c2736a0b7e369afe26a55a08809cc6e
2
SIZE (buganini-gbsdconv-11.1_GH0.tar.gz) = 19728
2
SIZE (buganini-gbsdconv-11.3_GH0.tar.gz) = 19915
(-)converters/gbsdconv/files/patch-Makefile (-26 lines)
Lines 1-26 Link Here
1
--- Makefile.orig	2013-09-09 09:56:10.000000000 +0400
2
+++ Makefile	2014-01-28 04:02:41.281082541 +0400
3
@@ -1,17 +1,17 @@
4
 PREFIX?=/usr/local
5
 
6
-LIBS=-L${PREFIX}/lib -ltag
7
+LIBS=-L${LOCALBASE}/lib -ltag
8
 
9
 all: gbsdconv_taglib
10
 
11
 gbsdconv_taglib: taglib/tag_c.cpp
12
-	$(CXX) -I${PREFIX}/include/taglib -fPIC -shared -o gbsdconv_taglib.so taglib/tag_c.cpp ${LIBS}
13
+	$(CXX) -I${LOCALBASE}/include/taglib -fPIC -shared -o gbsdconv_taglib.so taglib/tag_c.cpp ${LIBS}
14
 
15
 install:
16
-	install -m 755 gbsdconv ${PREFIX}/bin
17
-	install -m 444 gbsdconv_taglib.so ${PREFIX}/lib
18
-	mkdir -p ${PREFIX}/share/gbsdconv
19
-	install -m 444 gbsdconv.png gbsdconv.xml gbsdconv2.png ${PREFIX}/share/gbsdconv
20
+	install -m 755 gbsdconv ${DESTDIR}${PREFIX}/bin
21
+	install -m 444 gbsdconv_taglib.so ${DESTDIR}${PREFIX}/lib
22
+	mkdir -p ${DESTDIR}${PREFIX}/share/gbsdconv
23
+	install -m 444 gbsdconv.png gbsdconv.xml gbsdconv2.png ${DESTDIR}${PREFIX}/share/gbsdconv
24
 
25
 clean:
26
 	rm -f gbsdconv_taglib.so

Return to bug 201017