forked from ports/contrib
tagtool: dropped old port
This commit is contained in:
parent
17b78164aa
commit
a5790c0bba
@ -1,32 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/tagtool
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/applications/
|
||||
-rw-r--r-- root/root usr/share/applications/tagtool.desktop
|
||||
drwxr-xr-x root/root usr/share/icons/
|
||||
drwxr-xr-x root/root usr/share/icons/hicolor/
|
||||
drwxr-xr-x root/root usr/share/icons/hicolor/48x48/
|
||||
drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/
|
||||
-rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/TagTool.png
|
||||
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/
|
||||
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/
|
||||
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/TagTool.svg
|
||||
drwxr-xr-x root/root usr/share/tagtool/
|
||||
-rw-r--r-- root/root usr/share/tagtool/TagTool.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/edit.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/fail.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/file.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/folder.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/graydot.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/greendot.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/info.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/ok.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/preferences.dtd
|
||||
-rw-r--r-- root/root usr/share/tagtool/tab_clear.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/tab_edit.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/tab_playlist.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/tab_rename.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/tab_tag.png
|
||||
-rw-r--r-- root/root usr/share/tagtool/tagtool.glade
|
||||
-rw-r--r-- root/root usr/share/tagtool/warn.png
|
@ -1,6 +0,0 @@
|
||||
untrusted comment: verify with /etc/ports/contrib.pub
|
||||
RWSagIOpLGJF332Cb7hniVcWg6cYIyuss+rZ4Vs9TP4LjcPGdtWejUoi598sRez6lS+WHV03rW/zMdg780RIUmzJhtEni9dBJQM=
|
||||
SHA256 (Pkgfile) = b15eae052ddc1a9297d8f1bcae7693934ce07fb355bd8cb9433853a8ad72f28d
|
||||
SHA256 (.footprint) = 52ab7a801ed61b6994049cd8f5b9ee76999145591dd53dab99e25d3d2d454c25
|
||||
SHA256 (tagtool-0.12.3.tar.bz2) = 273f41031dd2ad80c09d1865fdc71d9052831a5ce9cd8c53705cc518a9d3d411
|
||||
SHA256 (tagtool-DSOLink.patch) = 46e1e7989614ff448052ec26fef020f5023539a28bab32038580e6aa7e826bf5
|
@ -1,25 +0,0 @@
|
||||
# Description: Tag Tool is a program to manage the information fields in MP3 and Ogg Vorbis files.
|
||||
# URL: http://tagtool.sourceforge.net/
|
||||
# Maintainer: Danny Rawlins, crux at romster dot me
|
||||
# Packager: Till Biedermann, tillbiedermann at yahoo dot de
|
||||
# Depends on: id3lib libglade libvorbis
|
||||
|
||||
name=tagtool
|
||||
version=0.12.3
|
||||
release=2
|
||||
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2
|
||||
tagtool-DSOLink.patch)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
|
||||
patch -p1 -i $SRC/tagtool-DSOLink.patch
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--disable-nls
|
||||
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
rm -r $PKG/usr/share/locale
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
diff -urp tagtool-0.12.3.OLD/src/Makefile.am tagtool-0.12.3/src/Makefile.am
|
||||
--- tagtool-0.12.3.OLD/src/Makefile.am 2006-12-17 13:01:22.000000000 -0500
|
||||
+++ tagtool-0.12.3/src/Makefile.am 2010-03-07 15:21:56.389276831 -0500
|
||||
@@ -38,7 +38,7 @@ endif
|
||||
tagtool_CFLAGS = -Wall -Wno-pointer-sign $(GTK_CFLAGS) ${mp3_cflags} \
|
||||
${vorbis_cflags} -DDATADIR='"$(datadir)/${PACKAGE_NAME}"'
|
||||
|
||||
-tagtool_LDFLAGS = -export-dynamic
|
||||
+tagtool_LDFLAGS = -lm -logg -export-dynamic
|
||||
tagtool_LDADD = $(GTK_LIBS)
|
||||
|
||||
tagtool_SOURCES = file_list.c file_list.h file_util.c file_util.h \
|
||||
diff -urp tagtool-0.12.3.OLD/src/Makefile.in tagtool-0.12.3/src/Makefile.in
|
||||
--- tagtool-0.12.3.OLD/src/Makefile.in 2007-02-27 15:34:13.000000000 -0500
|
||||
+++ tagtool-0.12.3/src/Makefile.in 2010-03-07 15:21:54.805278228 -0500
|
||||
@@ -193,7 +193,7 @@ tagtool_CFLAGS = -Wall -Wno-pointer-sign
|
||||
${vorbis_cflags} -DDATADIR='"$(datadir)/${PACKAGE_NAME}"'
|
||||
|
||||
|
||||
-tagtool_LDFLAGS = -export-dynamic
|
||||
+tagtool_LDFLAGS = -lm -logg -export-dynamic
|
||||
tagtool_LDADD = $(GTK_LIBS)
|
||||
|
||||
tagtool_SOURCES = file_list.c file_list.h file_util.c file_util.h \
|
Loading…
x
Reference in New Issue
Block a user