diff options
author | taoka <taoka@FreeBSD.org> | 2000-12-20 00:44:08 +0000 |
---|---|---|
committer | taoka <taoka@FreeBSD.org> | 2000-12-20 00:44:08 +0000 |
commit | aa693276cd501d3c51335e03504a1bb879b242ec (patch) | |
tree | f14e6edf29ed5b905d3396f8d1f294dc962cd6cc /audio/id3el/Makefile | |
parent | 4f394688c4ae8314554d25e36afadfd43ad2b913 (diff) | |
download | FreeBSD-ports-aa693276cd501d3c51335e03504a1bb879b242ec.zip FreeBSD-ports-aa693276cd501d3c51335e03504a1bb879b242ec.tar.gz |
An add-on to edit an id3 tag for mpg123-mode (mpg123.el) on Emacsen
Diffstat (limited to 'audio/id3el/Makefile')
-rw-r--r-- | audio/id3el/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/audio/id3el/Makefile b/audio/id3el/Makefile new file mode 100644 index 0000000..4968397 --- /dev/null +++ b/audio/id3el/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: id3el +# Date created: Sep 26, 2000 +# Whom: Satoshi Taoka <taoka@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= id3el +PORTVERSION= 0.05 +CATEGORIES= audio elisp +MASTER_SITES= http://www.gentei.org/~yuuji/software/mpg123el/ +DISTNAME= id3el-${PORTVERSION} + +MAINTAINER= taoka@FreeBSD.org + +RUN_DEPENDS= ${LOCALBASE}/lib/xemacs/site-lisp/mpg123.el:${PORTSDIR}/audio/mpg123.el + +ALL_TARGET= id3put + +ELISPDIR= ${PREFIX}/share/emacs/site-lisp +XELISPDIR= ${PREFIX}/lib/xemacs/site-lisp + +do-install: + ${MKDIR} ${ELISPDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} ${ELISPDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/id3put ${PREFIX}/bin +# For XEmacs + ${MKDIR} ${XELISPDIR} + ${LN} -sf ${ELISPDIR}/${PORTNAME} ${XELISPDIR} + +.include <bsd.port.mk> |