summaryrefslogtreecommitdiffstats
path: root/security/gcipher/Makefile
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-09-30 14:49:29 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-09-30 14:49:29 +0800
commit35baed4ae5088062bddd6d6c340e69079805f524 (patch)
tree57b8bfcbb9e24edff48e14342b0e02efb99e414a /security/gcipher/Makefile
parent9f3cd649a3bd31ad15ad1b41c628317d967a5b79 (diff)
downloadmarcuscom-ports-35baed4ae5088062bddd6d6c340e69079805f524.tar
marcuscom-ports-35baed4ae5088062bddd6d6c340e69079805f524.tar.gz
marcuscom-ports-35baed4ae5088062bddd6d6c340e69079805f524.tar.bz2
marcuscom-ports-35baed4ae5088062bddd6d6c340e69079805f524.tar.lz
marcuscom-ports-35baed4ae5088062bddd6d6c340e69079805f524.tar.xz
marcuscom-ports-35baed4ae5088062bddd6d6c340e69079805f524.tar.zst
marcuscom-ports-35baed4ae5088062bddd6d6c340e69079805f524.zip
- Move to LOCALBASE
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7416 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'security/gcipher/Makefile')
-rw-r--r--security/gcipher/Makefile60
1 files changed, 60 insertions, 0 deletions
diff --git a/security/gcipher/Makefile b/security/gcipher/Makefile
new file mode 100644
index 000000000..0f962c91e
--- /dev/null
+++ b/security/gcipher/Makefile
@@ -0,0 +1,60 @@
+# New ports collection makefile for: gcipher
+# Date created: 25 June 2003
+# Whom: Shannon -jj Behrens <jjinux@yahoo.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gcipher
+PORTVERSION= 1.0
+PORTREVISION= 6
+CATEGORIES= security gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= ${PORTNAME}
+
+MAINTAINER= jjinux@yahoo.com
+COMMENT= A simple encryption tool
+
+RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gnome/__init__.py:${PORTSDIR}/x11-toolkits/py-gnome2
+
+USE_PYTHON= yes
+USE_XLIB= yes
+USE_GNOME= libgnomeui
+
+GCIPHER_PREFIX= ${PREFIX}/share/gnome/gcipher
+
+MAN1= gcipher.1
+
+do-build:
+ (cd ${WRKSRC}/src; \
+ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py .)
+
+do-install:
+ ${MKDIR} \
+ ${GCIPHER_PREFIX}/lib/cipher \
+ ${GCIPHER_PREFIX}/lib/ciphergui \
+ ${GCIPHER_PREFIX}/plugins/cipher \
+ ${GCIPHER_PREFIX}/plugins/ciphergui
+
+ (cd ${WRKSRC}; \
+ ${INSTALL_MAN} gcipher.1 ${PREFIX}/man/man1; \
+ ${INSTALL_DATA} CONTRIB LICENSE README "${GCIPHER_PREFIX}")
+
+ (cd ${WRKSRC}/src; \
+ ${INSTALL_SCRIPT} gcipher ${PREFIX}/bin/gcipher; \
+ ${INSTALL_DATA} gcipher.desktop ${PREFIX}/share/gnome/applications; \
+ for i in `${FIND} . -name '*.py' \
+ -o -name '*.pyc' \
+ -o -name '*.glade' \
+ -o -name '*.gladep'`; do \
+ ${INSTALL_DATA} "$$i" "${GCIPHER_PREFIX}/lib/$$i"; \
+ done)
+
+ (cd ${WRKSRC}/plugins; \
+ for i in `${FIND} . -name '*.py' \
+ -o -name '*.glade' \
+ -o -name '*.gladep'`; do \
+ ${INSTALL_DATA} "$$i" "${GCIPHER_PREFIX}/plugins/$$i"; \
+ done)
+
+.include <bsd.port.mk>