diff options
author | 2011-06-08 00:45:35 +0000 | |
---|---|---|
committer | 2011-06-08 00:45:35 +0000 | |
commit | 8a320f2a71cb51ffaa69077debfd05d4e9c8c533 (patch) | |
tree | 899665ebabac56a51361d44dea9df7208b358d7e /net-irc/atheme-services/files | |
parent | Version bumped. Fixed static-libs handling. Added lzo and gcrypt USE flags. (diff) | |
download | gentoo-2-8a320f2a71cb51ffaa69077debfd05d4e9c8c533.tar.gz gentoo-2-8a320f2a71cb51ffaa69077debfd05d4e9c8c533.tar.bz2 gentoo-2-8a320f2a71cb51ffaa69077debfd05d4e9c8c533.zip |
Rename net-irc/atheme to net-irc/atheme-services to follow upstream's package name change.
(Portage version: 2.2.0_alpha37-r1/cvs/Linux x86_64)
Diffstat (limited to 'net-irc/atheme-services/files')
4 files changed, 363 insertions, 0 deletions
diff --git a/net-irc/atheme-services/files/atheme-1.2.1-postgresl.patch b/net-irc/atheme-services/files/atheme-1.2.1-postgresl.patch new file mode 100644 index 000000000000..a5ffdcb3d249 --- /dev/null +++ b/net-irc/atheme-services/files/atheme-1.2.1-postgresl.patch @@ -0,0 +1,99 @@ +diff -Nur atheme-1.2.1.orig/configure.ac atheme-1.2.1/configure.ac +--- atheme-1.2.1.orig/configure.ac 2006-07-10 13:23:14.000000000 +0000 ++++ atheme-1.2.1/configure.ac 2006-10-22 11:52:40.281188612 +0000 +@@ -196,43 +196,61 @@ + + POSTGRESQL="yes" + +-AC_MSG_CHECKING(for PostgreSQL include directory) +-if test -d /usr/include/pgsql ; then +- pg_inc_dir="/usr/include/pgsql" +-elif test -f /usr/local/include/libpq-fe.h ; then +-# kludge for freebsd ports, found on liveharmony boxes. --nenolod +- pg_inc_dir="/usr/local/include" +- LDFLAGS="-L/usr/local/lib" +-elif test -d /usr/include/postgresql ; then +- pg_inc_dir="/usr/include/postgresql" +-elif test -d /usr/local/psql/include ; then +- pg_inc_dir="/usr/local/psql/include" +-elif test -d /usr/local/include/postgresql ; then +- pg_inc_dir="/usr/local/include/postgresql" +-elif test -d /usr/local/pgsql/include ; then +- pg_inc_dir="/usr/local/pgsql/include" +-elif test -d /usr/local/include/psql ; then +- pg_inc_dir="/usr/local/include/psql" +-elif test -d /opt/psql/include ; then +- pg_inc_dir="/opt/psql/include" +-else +- pg_inc_dir="no" +- PQLIB="" +- POSTGRESQL="no" +-fi ++AC_ARG_ENABLE(postgresql, ++AC_HELP_STRING([--enable-postgresql], [Enables PostgreSQL backend support.]), ++[ ++ case "$enableval" in ++ yes|no) ++ POSTGRESQL="$enableval" ++ ;; ++ *) ++ AC_MSG_ERROR([Invalid argument to --enable-postgresql (expecting either 'yes' or 'no')]) ++ ;; ++ esac ++]) ++ ++AC_MSG_CHECKING([whether to enable PostgreSQL backend support]) ++AC_MSG_RESULT($POSTGRESQL) ++ ++if test "x$POSTGRESQL" = xyes; then ++ AC_MSG_CHECKING(for PostgreSQL include directory) ++ if test -d /usr/include/pgsql ; then ++ pg_inc_dir="/usr/include/pgsql" ++ elif test -f /usr/local/include/libpq-fe.h ; then ++ # kludge for freebsd ports, found on liveharmony boxes. --nenolod ++ pg_inc_dir="/usr/local/include" ++ LDFLAGS="-L/usr/local/lib" ++ elif test -d /usr/include/postgresql ; then ++ pg_inc_dir="/usr/include/postgresql" ++ elif test -d /usr/local/psql/include ; then ++ pg_inc_dir="/usr/local/psql/include" ++ elif test -d /usr/local/include/postgresql ; then ++ pg_inc_dir="/usr/local/include/postgresql" ++ elif test -d /usr/local/pgsql/include ; then ++ pg_inc_dir="/usr/local/pgsql/include" ++ elif test -d /usr/local/include/psql ; then ++ pg_inc_dir="/usr/local/include/psql" ++ elif test -d /opt/psql/include ; then ++ pg_inc_dir="/opt/psql/include" ++ else ++ pg_inc_dir="no" ++ PQLIB="" ++ POSTGRESQL="no" ++ fi + +-POSTGRESQL_C="" ++ POSTGRESQL_C="" + +-AC_MSG_RESULT($pg_inc_dir) ++ AC_MSG_RESULT($pg_inc_dir) + +-if test "$pg_inc_dir" != "no"; then +- AC_CHECK_HEADER($pg_inc_dir/libpq-fe.h, [ +- PGINC="-I$pg_inc_dir" +- AC_CHECK_LIB(pq, PQconnectdb, [PQLIB="-lpq" +- POSTGRESQL_C="postgresql.c"]) +- ]) +-else +- POSTGRESQL="no" ++ if test "$pg_inc_dir" != "no"; then ++ AC_CHECK_HEADER($pg_inc_dir/libpq-fe.h, [ ++ PGINC="-I$pg_inc_dir" ++ AC_CHECK_LIB(pq, PQconnectdb, [PQLIB="-lpq" ++ POSTGRESQL_C="postgresql.c"]) ++ ]) ++ else ++ POSTGRESQL="no" ++ fi + fi + + AC_SUBST(POSTGRESQL_C) diff --git a/net-irc/atheme-services/files/atheme.initd b/net-irc/atheme-services/files/atheme.initd new file mode 100644 index 000000000000..8853da092267 --- /dev/null +++ b/net-irc/atheme-services/files/atheme.initd @@ -0,0 +1,20 @@ +#!/sbin/runscript +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/atheme-services/files/atheme.initd,v 1.1 2011/06/08 00:45:35 binki Exp $ + +depend() { + need net +} + +start() { + ebegin "Starting atheme" + start-stop-daemon --start --quiet --chuid atheme --exec /usr/bin/atheme &>/dev/null + eend $? "Failed to start atheme" +} + +stop() { + ebegin "Stopping atheme" + start-stop-daemon --stop --quiet --pidfile /var/lib/atheme/var/atheme.pid + eend $? "Failed to stop atheme" +} diff --git a/net-irc/atheme-services/files/make-postgresql-support-optional.patch b/net-irc/atheme-services/files/make-postgresql-support-optional.patch new file mode 100644 index 000000000000..edd0d2a9939b --- /dev/null +++ b/net-irc/atheme-services/files/make-postgresql-support-optional.patch @@ -0,0 +1,99 @@ +diff -Nup -r atheme-0.2.2/configure.ac atheme-0.2.2.patched/configure.ac +--- atheme-0.2.2/configure.ac 2005-09-03 21:17:30.000000000 +0000 ++++ atheme-0.2.2.patched/configure.ac 2005-09-04 02:16:20.000000000 +0000 +@@ -95,43 +95,61 @@ echo " " + + POSTGRESQL="yes" + +-AC_MSG_CHECKING(for PostgreSQL include directory) +-if test -d /usr/include/pgsql ; then +- pg_inc_dir="/usr/include/pgsql" +-elif test -f /usr/local/include/libpq-fe.h ; then +-# kludge for freebsd ports, found on liveharmony boxes. --nenolod +- pg_inc_dir="/usr/local/include" +- LDFLAGS="-L/usr/local/lib" +-elif test -d /usr/include/postgresql ; then +- pg_inc_dir="/usr/include/postgresql" +-elif test -d /usr/local/psql/include ; then +- pg_inc_dir="/usr/local/psql/include" +-elif test -d /usr/local/include/postgresql ; then +- pg_inc_dir="/usr/local/include/postgresql" +-elif test -d /usr/local/pgsql/include ; then +- pg_inc_dir="/usr/local/include/psql" +-elif test -d /usr/local/include/psql ; then +- pg_inc_dir="/usr/local/include/psql" +-elif test -d /opt/psql/include ; then +- pg_inc_dir="/opt/psql/include" +-else +- pg_inc_dir="no" +- PQLIB="" +- POSTGRESQL="no" +-fi ++AC_ARG_WITH(postgresql, ++AC_HELP_STRING([--with-postgresql],[ Enables PostgreSQL backend support.]), ++[ ++ case "$withval" in ++ yes|no) ++ POSTGRESQL="$withval" ++ ;; ++ *) ++ AC_MSG_ERROR([Invalid argument to --with-postgresql (expecting either 'yes' or 'no')]) ++ ;; ++ esac ++]) + +-POSTGRESQL_C="" ++AC_MSG_CHECKING([whether to enable PostgreSQL backend support]) ++AC_MSG_RESULT($POSTGRESQL) + +-AC_MSG_RESULT($pg_inc_dir) ++if test "x$POSTGRESQL" = xyes; then ++ AC_MSG_CHECKING(for PostgreSQL include directory) ++ if test -d /usr/include/pgsql ; then ++ pg_inc_dir="/usr/include/pgsql" ++ elif test -f /usr/local/include/libpq-fe.h ; then ++ # kludge for freebsd ports, found on liveharmony boxes. --nenolod ++ pg_inc_dir="/usr/local/include" ++ LDFLAGS="-L/usr/local/lib" ++ elif test -d /usr/include/postgresql ; then ++ pg_inc_dir="/usr/include/postgresql" ++ elif test -d /usr/local/psql/include ; then ++ pg_inc_dir="/usr/local/psql/include" ++ elif test -d /usr/local/include/postgresql ; then ++ pg_inc_dir="/usr/local/include/postgresql" ++ elif test -d /usr/local/pgsql/include ; then ++ pg_inc_dir="/usr/local/include/psql" ++ elif test -d /usr/local/include/psql ; then ++ pg_inc_dir="/usr/local/include/psql" ++ elif test -d /opt/psql/include ; then ++ pg_inc_dir="/opt/psql/include" ++ else ++ pg_inc_dir="no" ++ PQLIB="" ++ POSTGRESQL="no" ++ fi + +-if test "$pg_inc_dir" != "no"; then +- AC_CHECK_HEADER($pg_inc_dir/libpq-fe.h, [ +- PGINC="-I$pg_inc_dir" +- AC_CHECK_LIB(pq, PQconnectdb, PQLIB="-lpq") +- POSTGRESQL_C="postgresql.c" +- ]) +-else +- POSTGRESQL="no" ++ POSTGRESQL_C="" ++ ++ AC_MSG_RESULT($pg_inc_dir) ++ ++ if test "$pg_inc_dir" != "no"; then ++ AC_CHECK_HEADER($pg_inc_dir/libpq-fe.h, [ ++ PGINC="-I$pg_inc_dir" ++ AC_CHECK_LIB(pq, PQconnectdb, PQLIB="-lpq") ++ POSTGRESQL_C="postgresql.c" ++ ]) ++ else ++ POSTGRESQL="no" ++ fi + fi + + AC_SUBST(POSTGRESQL_C) diff --git a/net-irc/atheme-services/files/makefile-DESTDIR-support.patch b/net-irc/atheme-services/files/makefile-DESTDIR-support.patch new file mode 100644 index 000000000000..afd307912742 --- /dev/null +++ b/net-irc/atheme-services/files/makefile-DESTDIR-support.patch @@ -0,0 +1,145 @@ +diff -Nup -r atheme-0.2.2/backend/Makefile.in atheme-0.2.2.patched/backend/Makefile.in +--- atheme-0.2.2/backend/Makefile.in 2005-09-03 21:17:28.000000000 +0000 ++++ atheme-0.2.2.patched/backend/Makefile.in 2005-09-04 04:15:55.000000000 +0000 +@@ -6,6 +6,8 @@ + # $Id: makefile-DESTDIR-support.patch,v 1.1 2011/06/08 00:45:35 binki Exp $ + # + ++DESTDIR := ++ + CC = @CC@ + RM = @RM@ + MV = @MV@ +@@ -36,8 +38,8 @@ all: protocols + build: all + + install: build +- ${INSTALL} -d ${PREFIX}/backend +- ${INSTALL} -m 755 *.so ${PREFIX}/backend ++ ${INSTALL} -d $(DESTDIR)${PREFIX}/backend ++ ${INSTALL} -m 755 *.so $(DESTDIR)${PREFIX}/backend + + protocols: $(OBJS) + +diff -Nup -r atheme-0.2.2/contrib/Makefile.in atheme-0.2.2.patched/contrib/Makefile.in +--- atheme-0.2.2/contrib/Makefile.in 2005-09-03 21:17:29.000000000 +0000 ++++ atheme-0.2.2.patched/contrib/Makefile.in 2005-09-04 04:15:55.000000000 +0000 +@@ -6,6 +6,8 @@ + # $Id: makefile-DESTDIR-support.patch,v 1.1 2011/06/08 00:45:35 binki Exp $ + # + ++DESTDIR := ++ + CC = @CC@ + RM = @RM@ + MV = @MV@ +@@ -38,8 +40,8 @@ all: protocols + build: all + + install: build +- ${INSTALL} -d ${PREFIX}/contrib +- ${INSTALL} -m 755 *.so ${PREFIX}/contrib ++ ${INSTALL} -d $(DESTDIR)${PREFIX}/contrib ++ ${INSTALL} -m 755 *.so $(DESTDIR)${PREFIX}/contrib + + protocols: $(OBJS) + +diff -Nup -r atheme-0.2.2/modules/Makefile.in atheme-0.2.2.patched/modules/Makefile.in +--- atheme-0.2.2/modules/Makefile.in 2005-09-03 21:17:30.000000000 +0000 ++++ atheme-0.2.2.patched/modules/Makefile.in 2005-09-04 04:15:55.000000000 +0000 +@@ -6,6 +6,8 @@ + # $Id: makefile-DESTDIR-support.patch,v 1.1 2011/06/08 00:45:35 binki Exp $ + # + ++DESTDIR := ++ + CC = @CC@ + RM = @RM@ + MV = @MV@ +@@ -36,8 +38,8 @@ all: modules + build: all + + install: build +- ${INSTALL} -d ${PREFIX}/modules +- ${INSTALL} -m 755 *.so ${PREFIX}/modules ++ ${INSTALL} -d $(DESTDIR)${PREFIX}/modules ++ ${INSTALL} -m 755 *.so $(DESTDIR)${PREFIX}/modules + + modules: $(OBJS) + +diff -Nup -r atheme-0.2.2/protocol/Makefile.in atheme-0.2.2.patched/protocol/Makefile.in +--- atheme-0.2.2/protocol/Makefile.in 2005-09-03 21:17:29.000000000 +0000 ++++ atheme-0.2.2.patched/protocol/Makefile.in 2005-09-04 04:15:55.000000000 +0000 +@@ -6,6 +6,8 @@ + # $Id: makefile-DESTDIR-support.patch,v 1.1 2011/06/08 00:45:35 binki Exp $ + # + ++DESTDIR := ++ + CC = @CC@ + RM = @RM@ + MV = @MV@ +@@ -49,8 +51,8 @@ all: protocols + build: all + + install: build +- ${INSTALL} -d ${PREFIX}/protocol +- ${INSTALL} -m 755 *.so ${PREFIX}/protocol ++ ${INSTALL} -d $(DESTDIR)${PREFIX}/protocol ++ ${INSTALL} -m 755 *.so $(DESTDIR)${PREFIX}/protocol + + protocols: $(OBJS) + +diff -Nup -r atheme-0.2.2/src/Makefile.in atheme-0.2.2.patched/src/Makefile.in +--- atheme-0.2.2/src/Makefile.in 2005-09-03 21:17:29.000000000 +0000 ++++ atheme-0.2.2.patched/src/Makefile.in 2005-09-04 04:15:55.000000000 +0000 +@@ -6,6 +6,8 @@ + # $Id: makefile-DESTDIR-support.patch,v 1.1 2011/06/08 00:45:35 binki Exp $ + # + ++DESTDIR := ++ + CC = @CC@ + RM = @RM@ + MV = @MV@ +@@ -70,27 +72,27 @@ atheme: $(OBJS) + $(MV) version.c version.c.last + + install: build +- $(INSTALL) -m 755 -d $(PREFIX) +- $(INSTALL) -m 755 -d $(PREFIX)/bin +- $(INSTALL) -m 755 -d $(PREFIX)/etc +- $(INSTALL) -m 755 -d $(PREFIX)/var +- $(INSTALL) -m 755 -c $(BIN) $(PREFIX)/bin +- $(INSTALL) -m 640 -c ../dist/example.conf $(PREFIX)/etc +- $(INSTALL) -m 640 -c ../dist/example-traditional.conf $(PREFIX)/etc ++ $(INSTALL) -m 755 -d $(DESTDIR)$(PREFIX) ++ $(INSTALL) -m 755 -d $(DESTDIR)$(PREFIX)/bin ++ $(INSTALL) -m 755 -d $(DESTDIR)$(PREFIX)/etc ++ $(INSTALL) -m 755 -d $(DESTDIR)$(PREFIX)/var ++ $(INSTALL) -m 755 -c $(BIN) $(DESTDIR)$(PREFIX)/bin ++ $(INSTALL) -m 640 -c ../dist/example.conf $(DESTDIR)$(PREFIX)/etc ++ $(INSTALL) -m 640 -c ../dist/example-traditional.conf $(DESTDIR)$(PREFIX)/etc + if [ ! -r $(PREFIX)/etc/atheme.db ]; then \ +- $(INSTALL) -m 640 -c ../dist/atheme.db $(PREFIX)/etc ; \ ++ $(INSTALL) -m 640 -c ../dist/atheme.db $(DESTDIR)$(PREFIX)/etc ; \ + fi + if [ ! -r $(PREFIX)/etc/atheme.chk ]; then \ +- $(INSTALL) -m 640 -c ../dist/atheme.chk $(PREFIX)/etc ; \ ++ $(INSTALL) -m 640 -c ../dist/atheme.chk $(DESTDIR)$(PREFIX)/etc ; \ + fi + if [ -e $(PREFIX)/doc ]; then \ +- $(RM) -rf $(PREFIX)/doc ; \ ++ $(RM) -rf $(DESTDIR)$(PREFIX)/doc ; \ + fi + if [ -e $(PREFIX)/help ]; then \ +- $(RM) -rf $(PREFIX)/help ; \ ++ $(RM) -rf $(DESTDIR)$(PREFIX)/help ; \ + fi +- $(CP) -R ../doc $(PREFIX) +- $(CP) -R ../help $(PREFIX) ++ $(CP) -R ../doc $(DESTDIR)$(PREFIX) ++ $(CP) -R ../help $(DESTDIR)$(PREFIX) + + @echo "----------------------------------------------------------------" + @echo ">>> Remember to cd to ${PREFIX} and edit your config file."; |